/* MR Coach — Test landing pages styles */

.test-intro-section {
  padding-block-start: clamp(26px, 3vw, 38px) !important;
  padding-block-end: clamp(48px, 6vw, 96px) !important;
}

.test-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(32px, 5vw, 64px);
}

.test-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.test-intro-content .eyebrow {
  color: var(--teal);
}

.test-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--teal-deep);
  margin: 0;
}

.test-title em {
  font-style: italic;
  color: var(--teal);
}

.test-desc {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
}

.test-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.test-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--teal-deep);
}

.test-benefits li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 3px;
  transition: transform 0.3s ease;
}

.test-benefits li:hover svg {
  transform: scale(1.15);
}

.test-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.test-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.test-meta {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Coluna da direita - Visuais */
.test-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* Card Visual Container */
.test-visual-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.test-visual-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 20px 48px rgba(27, 47, 38, 0.12);
}

/* Decoração Abstrata com SVGs */
.test-visual-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.test-visual-shapes circle {
  transition: r 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.test-visual-card:hover .test-visual-shapes circle {
  r: 120;
}

/* --- RODA DA VIDA VISUAL --- */
.wheel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  max-width: 260px;
  transform: rotate(-90deg);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-container:hover .wheel-svg {
  transform: rotate(-60deg);
}

.wheel-segment {
  fill: none;
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.wheel-segment-1 { stroke: var(--teal); opacity: 0.95; }
.wheel-segment-2 { stroke: var(--gold); opacity: 0.9; }
.wheel-segment-3 { stroke: var(--brown); opacity: 0.85; }
.wheel-segment-4 { stroke: var(--beige-warm); opacity: 0.95; }

.wheel-center {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--teal-deep);
  font-weight: 500;
  transition: transform 0.5s ease;
}

.wheel-container:hover .wheel-center {
  transform: scale(1.08);
}


/* --- PROCRASTINAÇÃO VISUAL (Cronômetro Pulsante) --- */
.clock-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.clock-face {
  width: 220px;
  height: 220px;
  border: 4px solid var(--teal-deep);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-warm);
  box-shadow: inset 0 6px 12px rgba(2, 0, 3, 0.03);
  transition: border-color 0.4s ease;
}

.clock-container:hover .clock-face {
  border-color: var(--gold);
}

.clock-hand-hour,
.clock-hand-minute {
  position: absolute;
  background: var(--teal-deep);
  border-radius: 4px;
  transform-origin: bottom center;
  bottom: 50%;
  left: 50%;
}

.clock-hand-hour {
  width: 6px;
  height: 55px;
  margin-left: -3px;
  transform: rotate(30deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clock-hand-minute {
  width: 4px;
  height: 80px;
  margin-left: -2px;
  background: var(--gold);
  transform: rotate(115deg);
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clock-container:hover .clock-hand-hour {
  transform: rotate(75deg);
}

.clock-container:hover .clock-hand-minute {
  transform: rotate(240deg);
}

.clock-center-dot {
  width: 14px;
  height: 14px;
  background: var(--teal-deep);
  border-radius: 50%;
  z-index: 2;
  border: 2px solid #ffffff;
}

.clock-pulse {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
}

.clock-container:hover .clock-pulse {
  animation: clockPulse 1.8s infinite;
}

@keyframes clockPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}


/* --- DISC VISUAL (4 Quadrantes) --- */
.disc-grid-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  height: 100%;
  max-width: 240px;
  max-height: 240px;
  z-index: 1;
}

.disc-quad {
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(2, 0, 3, 0.05);
}

.disc-quad span {
  font-size: 11px;
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.85;
  margin-top: -2px;
}

/* Cores harmônicas inspiradas no design */
.quad-d { background: #ab443c; } /* Dominância - Vermelho Terra */
.quad-i { background: var(--gold); color: #2a1f00; } /* Influência - Dourado */
.quad-s { background: var(--teal); } /* Estabilidade - Teal */
.quad-c { background: #3c54ab; } /* Conformidade - Azul Aço */

.disc-grid-visual:hover .disc-quad {
  opacity: 0.85;
}

.disc-quad:hover {
  transform: scale(1.08) translateY(-4px);
  opacity: 1 !important;
  box-shadow: var(--shadow-md);
  z-index: 2;
}


/* --- INTELIGÊNCIA EMOCIONAL VISUAL (Cérebro Conectado) --- */
.brain-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.brain-svg {
  width: 100%;
  height: 100%;
  max-width: 250px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brain-container:hover .brain-svg {
  transform: scale(1.06) rotate(-1.5deg);
}

/* Animação pulsar nos nós brilhantes do cérebro */
.brain-node-teal {
  fill: var(--teal);
  transition: r 0.4s ease;
}

.brain-node-gold {
  fill: var(--gold);
  transition: r 0.4s ease;
}

.brain-container:hover .brain-node-teal {
  animation: brainNodePulseTeal 1.6s infinite alternate;
}

.brain-container:hover .brain-node-gold {
  animation: brainNodePulseGold 1.6s infinite alternate 0.4s;
}

@keyframes brainNodePulseTeal {
  0% {
    r: 3.5px;
    opacity: 0.85;
  }
  100% {
    r: 5.5px;
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--teal));
  }
}

@keyframes brainNodePulseGold {
  0% {
    r: 4px;
    opacity: 0.85;
  }
  100% {
    r: 6.5px;
    opacity: 1;
    filter: drop-shadow(0 0 6px var(--gold));
  }
}


/* --- CRIADOR DE OBJETIVOS VISUAL (Alvo de Precisão) --- */
.target-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.target-svg {
  width: 100%;
  height: 100%;
  max-width: 250px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-container:hover .target-svg {
  transform: scale(1.05) rotate(5deg);
}

/* Animação pulsar no ponto do centro do alvo */
.target-center-dot {
  fill: var(--gold);
  transition: r 0.4s ease;
}

.target-container:hover .target-center-dot {
  animation: targetPulse 1.6s infinite alternate;
}

@keyframes targetPulse {
  0% {
    r: 5px;
    opacity: 0.85;
  }
  100% {
    r: 9px;
    opacity: 1;
    filter: drop-shadow(0 0 6px var(--gold));
  }
}


/* --- MAPA DA AUTOCONFIANÇA VISUAL (Montanha de Superação) --- */
.mountain-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: all;
}

.mountain-svg {
  width: 100%;
  height: 100%;
  max-width: 250px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mountain-container:hover .mountain-svg {
  transform: scale(1.05) translateY(-4px);
}

/* Animação pulsar na estrela brilhante no topo */
.mountain-star {
  fill: var(--gold);
  transition: r 0.4s ease;
}

.mountain-container:hover .mountain-star {
  animation: starPulse 1.6s infinite alternate;
}

@keyframes starPulse {
  0% {
    opacity: 0.85;
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--gold));
  }
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 820px) {
  .test-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-block: 16px 32px;
  }

  .test-intro-content {
    align-items: center;
  }

  .test-desc {
    margin-inline: auto;
  }

  .test-benefits {
    align-items: flex-start;
    text-align: left;
    max-width: 480px;
    margin-inline: auto;
  }

  .test-actions-wrapper {
    width: 100%;
    align-items: center;
  }

  .test-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .test-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .test-intro-visual {
    order: -1; /* Exibe a arte visual no topo no mobile */
  }
}
