/* 
   ============================================
   HERO SECTION - INDEPENDÊNCIA EMOCIONAL
   ============================================
    */

:root {
  --petrol-blue: #22434e;
  --golden-yellow: #e5b74b;
  --aqua-teal: #4db1a8;
  --dark-teal: #1a3540;
  --white: #ffffff;
  --neutral-light: #f5f7f9;

  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --font-size-h1: 38px;
  --font-size-h2: 28px;
  --font-size-h3: 24px;
  --font-subheadline: 18px;
  --font-size-body: 18px;
  --font-size-small: 16px;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;

  --border-radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 
   HERO SECTION
    */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

/* Background Animado */
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--petrol-blue) 0%,
    var(--dark-teal) 50%,
    var(--petrol-blue) 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 
   HERO CONTAINER
    */

.hero__container {
  max-width: 900px;
  width: 100%;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

/* 
   LOGO
    */

.hero__logo-wrapper {
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
  animation: fadeInDown 0.6s ease-out 0.1s both;
}

.hero__logo {
  max-width: 200px;
  height: auto;
  display: block;
}

/* 
   HEADLINE
    */

.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 var(--spacing-md) 0;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  letter-spacing: -1px;
}

.hero__highlight {
  color: var(--golden-yellow);
  display: block;
  text-shadow: 0 4px 12px rgba(229, 183, 75, 0.3);
}

/* 
   SUBHEADLINE
    */

.hero__subheadline {
  font-family: var(--font-heading);
  font-size: var(--font-subheadline);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* 
   DESCRIÇÃO
    */

.hero__description {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0 0 var(--spacing-md) 0;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__description--emphasis {
  font-size: 18px;
  font-weight: 500;
  color: var(--golden-yellow);
  margin-bottom: var(--spacing-lg);
}

.hero__description strong {
  color: var(--golden-yellow);
  font-weight: 700;
}

/* 
   VIDEO CONTAINER
    */

.hero__video-wrapper {
  margin: var(--spacing-xl) 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.hero__video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.hero__video-container:hover .hero__video-placeholder {
  background: rgba(0, 0, 0, 0.8);
}

.hero__video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.hero__video-play-button {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-play-button:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(229, 183, 75, 0.4));
}

.hero__video-play-button:active svg {
  transform: scale(0.95);
}

/* 
   CTA TEXT
    */

.hero__cta-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-align: center;
  margin: var(--spacing-xl) 0 var(--spacing-lg) 0;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__cta-text strong {
  color: var(--golden-yellow);
  font-weight: 700;
}

/* 
   CTA BUTTON
    */

.hero__cta-button {
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 18px 48px;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--golden-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(229, 183, 75, 0.3);
  margin: 0 auto var(--spacing-xl);
  display: block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta-button:hover {
  background: var(--white);
  color: var(--petrol-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 183, 75, 0.4);
}

.hero__cta-button:active {
  transform: translateY(-1px);
}

.hero__cta-arrow {
  transition: transform 0.3s ease;
}

.hero__cta-button:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* 
   BENEFITS GRID
    */

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

@media (min-width: 1025px) {
  .hero__benefits {
    width: 120%;
    margin-left: -10%;
  }
}

.hero__benefit-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(77, 177, 168, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 280px;
}

.hero__benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(77, 177, 168, 0.4);
  transform: translateY(-4px);
}

.hero__benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 177, 168, 0.2);
  border-radius: 12px;
  color: var(--aqua-teal);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero__benefit-item:hover .hero__benefit-icon {
  background: rgba(229, 183, 75, 0.2);
  color: var(--golden-yellow);
  transform: scale(1.1);
}

.hero__benefit-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--spacing-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.hero__benefit-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   RESPONSIVIDADE - TABLET
    */

@media (max-width: 1024px) {
  .hero {
    padding: var(--spacing-lg) var(--spacing-md);
    min-height: auto;
  }

  .hero__headline {
    font-size: 36px;
  }

  .hero__subheadline {
    font-size: 18px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
  }
}

/* 
   RESPONSIVIDADE - MOBILE
    */

@media (max-width: 768px) {
  .hero {
    padding: var(--spacing-lg) var(--spacing-sm);
    min-height: auto;
  }

  .hero__logo-wrapper {
    margin-bottom: var(--spacing-md);
  }

  .hero__logo {
    max-width: 150px;
  }

  .hero__headline {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
  }

  .hero__highlight {
    font-size: 28px;
  }

  .hero__subheadline {
    font-size: 16px;
    margin-bottom: var(--spacing-md);
  }

  .hero__description {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
  }

  .hero__description--emphasis {
    font-size: 16px;
  }

  .hero__video-wrapper {
    margin: var(--spacing-lg) 0;
  }

  .hero__cta-text {
    font-size: 16px;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
  }

  .hero__cta-button {
    padding: 16px 40px;
    font-size: 16px;
    margin-bottom: var(--spacing-lg);
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }

  .hero__benefit-item {
    padding: var(--spacing-md);
  }

  .hero__benefit-title {
    font-size: 16px;
  }

  .hero__benefit-text {
    font-size: 16px;
  }
}

/* 
   RESPONSIVIDADE - MOBILE PEQUENO
    */

@media (max-width: 480px) {
  .hero {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .hero__logo {
    max-width: 120px;
  }

  .hero__headline {
    font-size: 24px;
  }

  .hero__highlight {
    font-size: 24px;
  }

  .hero__subheadline {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero__description {
    font-size: 14px;
  }

  .hero__cta-button {
    padding: 14px 32px;
    font-size: 14px;
  }

  .hero__benefit-icon {
    width: 48px;
    height: 48px;
  }

  .hero__benefit-title {
    font-size: 16px;
  }

  .hero__benefit-text {
    font-size: 16px;
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .hero__background,
  .hero__container,
  .hero__logo-wrapper,
  .hero__headline,
  .hero__subheadline,
  .hero__description,
  .hero__video-wrapper,
  .hero__cta-text,
  .hero__cta-button,
  .hero__benefits {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__cta-button:hover,
  .hero__benefit-item:hover,
  .hero__video-play-button:hover {
    transform: none;
  }
}

/* 
   DARK MODE (Se aplicável)
    */

@media (prefers-color-scheme: dark) {
  .hero__benefit-item {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero__benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* 
   ============================================
   SEÇÃO 1: FRASE EM DESTAQUE
   ============================================
    */

.highlight-quote {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: var(--neutral-light);
}

.highlight-quote__container {
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-quote__card {
  background: linear-gradient(
    135deg,
    var(--petrol-blue) 0%,
    var(--dark-teal) 100%
  );
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 12px 48px rgba(34, 67, 78, 0.15);
  display: flex;
  align-items: center; /* ← Alinha verticalmente ao centro */
  gap: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out;
}

.highlight-quote__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center; /* ← Centraliza ícone verticalmente */
  justify-content: center; /* ← Centraliza ícone horizontalmente */
  background: rgba(229, 183, 75, 0.2);
  border-radius: 12px;
  color: var(--golden-yellow);
  animation: fadeInDown 0.8s ease-out 0.1s both;
  flex-shrink: 0; /* ← Garante que não encolha */
}

.highlight-quote__icon svg {
  margin-top: 8px;
  margin-left: 7px;
}

.highlight-quote__text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight-quote__text strong {
  color: var(--golden-yellow);
}

@media (max-width: 768px) {
  .highlight-quote {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .highlight-quote__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .highlight-quote__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md); /* ← Espaço no mobile */
  }

  .highlight-quote__text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .highlight-quote {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .highlight-quote__card {
    padding: var(--spacing-md);
  }

  .highlight-quote__text {
    font-size: 18px;
  }
}

/* 
   ============================================
   SEÇÃO 2: PROVA SOCIAL
   ============================================
    */

.social-proof {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-sm);
  background: var(--white);
}

.social-proof__container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  animation: fadeInDown 0.8s ease-out;
}

.social-proof__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.3;
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.5px;
}

.social-proof__subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0;
  opacity: 0.85;
}

/* ========== DESKTOP: Imagem Única ========== */
.social-proof__image-wrapper {
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-proof__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(34, 67, 78, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-proof__image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(34, 67, 78, 0.15);
}

/* ========== MOBILE: Carrossel ========== */
.social-proof__carousel {
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.social-proof__carousel-container {
  overflow: hidden;
  user-select: none; /* Previne seleção de texto ao arrastar */
  -webkit-user-select: none; /* Safari */
  -webkit-touch-callout: none; /* Desabilita menu de contexto no iOS */
}

.social-proof__carousel-container:active {
  cursor: grabbing;
}

.social-proof__carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.social-proof__carousel-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof__carousel-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  -webkit-user-drag: none; /* Safari */
  user-select: none;
}

.social-proof__carousel-img:active {
  opacity: 0.8;
}

/* ========== Indicadores ========== */
.social-proof__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.social-proof__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 67, 78, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-proof__dot.active {
  background: var(--petrol-blue);
  width: 28px;
  border-radius: 5px;
}

/* ========== Botões de Navegação ========== */
.social-proof__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 67, 78, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent; /* Remove flash no iOS */
}

.social-proof__carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.social-proof__carousel-nav:hover {
  background: var(--petrol-blue);
}

.social-proof__carousel-nav--prev {
  left: 10px;
}

.social-proof__carousel-nav--next {
  right: 10px;
}

/* ========== MODAL ========== */
.social-proof__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.social-proof__modal.active {
  display: flex;
}

.social-proof__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.social-proof__modal-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.social-proof__modal-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.social-proof__modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-proof__modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ========== Visibilidade ========== */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  .social-proof {
    padding: var(--spacing-sm) var(--spacing-sm);
  }

  .social-proof__header {
    margin-bottom: var(--spacing-lmdg);
  }

  .social-proof__title {
    font-size: 24px;
  }

  .social-proof__subtitle {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 480px) {
  .social-proof {
    padding: var(--spacing-sm) var(--spacing-sm);
    border: solid 3px black;
  }

  .social-proof__title {
    font-size: 20px;
  }

  .social-proof__subtitle {
    font-size: 15px;
  }

  .social-proof__carousel-nav {
    width: 36px;
    height: 36px;
  }

  .social-proof__modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
  }
}

/* 
   
   SEÇÃO 3: CARROSSEL DE DEPOIMENTOS
   
    */

.testimonials-carousel {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: linear-gradient(
    135deg,
    var(--petrol-blue) 0%,
    var(--dark-teal) 100%
  );
  position: relative;
  overflow: hidden;
}

@media (min-width: 1528px) {
  .carousel-container {
    padding: 0 20%;
  }

  .carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 140%;
    margin-left: -20%;
  }
}

.testimonials-carousel__container {
  max-width: 100%;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-track.no-transition {
  transition: none;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 13.33px);
  padding: 0 8px;
  box-sizing: border-box;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--spacing-sm);
}

.carousel-slide__content {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-slide:hover .carousel-slide__content {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-slide__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.6;
  margin: 0 0 var(--spacing-md) 0;
}

.carousel-slide__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--petrol-blue);
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
  flex-grow: 1;
}

.carousel-slide__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.video-embed-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  transition: all 0.3s ease;
}

.video-embed-container:hover .video-placeholder {
  background: rgba(0, 0, 0, 0.8);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.video-play-button {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-play-button:active svg {
  transform: scale(0.95);
}

.video-embed-container.video-loaded .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Botões de Navegação */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--golden-yellow);
  color: var(--golden-yellow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background-color: var(--golden-yellow);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 183, 75, 0.3);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav:focus {
  outline: 3px solid var(--aqua-teal);
  outline-offset: 2px;
}

.carousel-nav-prev {
  left: 20px;
}

.carousel-nav-next {
  right: 20px;
}

/* Indicadores */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-indicator:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.carousel-indicator.active {
  background-color: var(--golden-yellow);
  opacity: 1;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 20px);
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
  }

  .carousel-nav-prev {
    left: 15px;
  }

  .carousel-nav-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .carousel-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .carousel-slide__title {
    font-size: 15px;
  }

  .carousel-slide__subtitle {
    font-size: 13px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .carousel-nav-prev {
    left: 10px;
  }

  .carousel-nav-next {
    right: 10px;
  }

  .carousel-indicators {
    margin-top: 20px;
    gap: 8px;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }

  .carousel-indicator.active {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .testimonials-carousel {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .carousel-slide__content {
    padding: var(--spacing-md);
  }

  .carousel-slide__title {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .carousel-slide__subtitle {
    font-size: 12px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }

  .carousel-nav-prev {
    left: 8px;
  }

  .carousel-nav-next {
    right: 8px;
  }
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .carousel-slide,
  .carousel-nav {
    transition: none;
  }

  .carousel-nav:hover,
  .carousel-slide:hover .carousel-slide__content {
    transform: none;
  }
}

/* 
   DARK MODE
    */

@media (prefers-color-scheme: dark) {
  .carousel-slide__content {
    background: rgba(26, 26, 26, 0.95);
  }

  .carousel-slide__title,
  .carousel-slide__subtitle {
    color: var(--white);
  }
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .carousel-slide,
  .carousel-nav {
    transition: none;
  }

  .carousel-nav:hover,
  .carousel-slide:hover .carousel-slide__content {
    transform: none;
  }
}

/* 
   DARK MODE
    */

@media (prefers-color-scheme: dark) {
  .carousel-slide__content {
    background: rgba(26, 26, 26, 0.95);
  }

  .carousel-slide__title,
  .carousel-slide__subtitle {
    color: var(--white);
  }
}

/* 
   ============================================
   SEÇÃO 4: FRASE DO TIOZÃO
   ============================================
    */

.tiozao-quote {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: var(--neutral-light);
}

.tiozao-quote__container {
  max-width: 900px;
  margin: 0 auto;
}

.tiozao-quote__card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 6px solid var(--golden-yellow);
  box-shadow: 0 8px 32px rgba(34, 67, 78, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out;
}

.tiozao-quote__icon {
  color: var(--golden-yellow);
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.tiozao-quote__icon svg {
  width: 48px;
  height: 48px;
  margin-top: 11px;
  margin-left: 5px;
}

.tiozao-quote__text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tiozao-quote__author {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--golden-yellow);
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (max-width: 768px) {
  .tiozao-quote {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .tiozao-quote__card {
    padding: var(--spacing-lg);
  }

  .tiozao-quote__text {
    font-size: 20px;
  }

  .tiozao-quote__author {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tiozao-quote {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .tiozao-quote__card {
    padding: var(--spacing-md);
    border-left-width: 4px;
  }

  .tiozao-quote__icon {
    width: 48px;
    height: 48px;
  }

  .tiozao-quote__text {
    font-size: 18px;
  }

  .tiozao-quote__author {
    font-size: 14px;
  }
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .highlight-quote__card,
  .highlight-quote__icon,
  .highlight-quote__text,
  .social-proof__header,
  .social-proof__image-wrapper,
  .carousel-slide,
  .tiozao-quote__card,
  .tiozao-quote__icon,
  .tiozao-quote__text,
  .tiozao-quote__author {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-track,
  .carousel-nav,
  .carousel-slide:hover .carousel-slide__content,
  .tiozao-quote__card {
    transition: none;
  }
}

/* 
   DARK MODE
    */

@media (prefers-color-scheme: dark) {
  .social-proof {
    background: #1a1a1a;
  }

  .social-proof__title,
  .social-proof__subtitle {
    color: var(--white);
  }

  .carousel-slide__content {
    background: rgba(26, 26, 26, 0.95);
  }

  .carousel-slide__title,
  .carousel-slide__subtitle {
    color: var(--white);
  }

  .tiozao-quote__card {
    background: #1a1a1a;
  }

  .tiozao-quote__text {
    color: var(--white);
  }
}

/* 
   
   SEÇÃO: POR QUE O MÉTODO INDEPENDÊNCIA EMOCIONAL FUNCIONA
   
    */

.method-benefits {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: var(--white);
}

.method-benefits__container {
  max-width: 900px;
  margin: 0 auto;
}

.method-benefits__content {
  animation: fadeInUp 0.8s ease-out;
}

/* Título */
.method-benefits__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.3;
  margin: 0 0 var(--spacing-xl) 0;
  letter-spacing: -0.5px;
  text-align: center;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

/* Texto */
.method-benefits__text {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.method-benefits__paragraph {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: justify;
}

.method-benefits__paragraph:last-child {
  margin-bottom: 0;
}

/* Lista de Benefícios */
.method-benefits__list-wrapper {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.method-benefits__list-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.6;
}

.method-benefits__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.method-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.method-benefits__list-item {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--petrol-blue);
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.method-benefits__list-item:hover {
  opacity: 1;
  transform: translateX(4px);
  color: var(--aqua-teal);
}

.method-benefits__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--golden-yellow);
  font-size: 18px;
}

/* CTA */
.method-benefits__cta-wrapper {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 2px solid rgba(34, 67, 78, 0.1);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.method-benefits__cta-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
}

.method-benefits__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 18px 48px;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--golden-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(229, 183, 75, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.method-benefits__cta-button:hover {
  background: var(--white);
  color: var(--petrol-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 183, 75, 0.4);
}

.method-benefits__cta-button:active {
  transform: translateY(-1px);
}

.method-benefits__cta-button svg {
  transition: transform 0.3s ease;
}

.method-benefits__cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsividade - Tablet */
@media (max-width: 1024px) {
  .method-benefits {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .method-benefits__title {
    font-size: 28px;
  }

  .method-benefits__paragraph {
    font-size: 16px;
  }

  .method-benefits__list-title {
    font-size: 16px;
  }

  .method-benefits__list-item {
    font-size: 15px;
  }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
  .method-benefits {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .method-benefits__title {
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
  }

  .method-benefits__text {
    margin-bottom: var(--spacing-lg);
  }

  .method-benefits__paragraph {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
    text-align: left;
  }

  .method-benefits__lists {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .method-benefits__list-item {
    font-size: 14px;
    padding-left: 24px;
  }

  .method-benefits__cta-text {
    font-size: 16px;
    margin-bottom: var(--spacing-md);
  }

  .method-benefits__cta-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Responsividade - Mobile Pequeno */
@media (max-width: 480px) {
  .method-benefits {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .method-benefits__title {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
  }

  .method-benefits__text {
    margin-bottom: var(--spacing-md);
  }

  .method-benefits__paragraph {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .method-benefits__list-title {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
  }

  .method-benefits__list-item {
    font-size: 13px;
    padding-left: 20px;
    margin-bottom: 8px;
  }

  .method-benefits__list-item::before {
    font-size: 16px;
  }

  .method-benefits__cta-wrapper {
    padding-top: var(--spacing-md);
  }

  .method-benefits__cta-text {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .method-benefits__cta-button {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
  }
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .method-benefits__content,
  .method-benefits__title,
  .method-benefits__text,
  .method-benefits__list-wrapper,
  .method-benefits__cta-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .method-benefits__list-item:hover,
  .method-benefits__cta-button:hover {
    transform: none;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .method-benefits {
    background: #1a1a1a;
  }

  .method-benefits__title,
  .method-benefits__paragraph,
  .method-benefits__list-title,
  .method-benefits__list-item,
  .method-benefits__cta-text {
    color: var(--white);
  }

  .method-benefits__list-item:hover {
    color: var(--aqua-teal);
  }
}

/* 
   
   SEÇÃO: VOCÊ JÁ IMAGINOU SUPERAR TODOS OS SEUS PROBLEMAS
   
    */

.unified-method {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: linear-gradient(
    180deg,
    var(--neutral-light) 0%,
    var(--white) 100%
  );
}

.unified-method__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Título */
.unified-method__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.3;
  margin: 0 0 var(--spacing-xl) 0;
  text-align: center;
  letter-spacing: -1px;
  animation: fadeInDown 0.8s ease-out;
}

.unified-method__highlight {
  display: block;
  color: var(--golden-yellow);
  font-size: 42px;
  margin: var(--spacing-md) 0;
  text-shadow: 0 2px 8px rgba(229, 183, 75, 0.2);
}

/* Conteúdo */
.unified-method__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.unified-method__text {
  animation: fadeInLeft 0.8s ease-out 0.1s both;
}

.unified-method__paragraph {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: justify;
}

.unified-method__paragraph:last-child {
  margin-bottom: 0;
}

/* Card de Atenção */
.unified-method__warning-card {
  background: linear-gradient(
    135deg,
    rgba(229, 183, 75, 0.1) 0%,
    rgba(77, 177, 168, 0.1) 100%
  );
  border: 2px solid var(--golden-yellow);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-lg);
  animation: fadeInRight 0.8s ease-out 0.2s both;
  box-shadow: 0 8px 32px rgba(229, 183, 75, 0.15);
  transition: all 0.3s ease;
}

.unified-method__warning-card:hover {
  box-shadow: 0 12px 48px rgba(229, 183, 75, 0.25);
  transform: translateY(-4px);
}

.unified-method__warning-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--golden-yellow);
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 183, 75, 0.7);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(229, 183, 75, 0);
  }
}

.unified-method__warning-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-method__warning-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--golden-yellow);
  margin: 0 0 var(--spacing-sm) 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unified-method__warning-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--petrol-blue);
  line-height: 1.7;
  margin: 0 0 var(--spacing-sm) 0;
}

.unified-method__warning-text:last-child {
  margin-bottom: 0;
}

.unified-method__warning-text strong {
  color: var(--petrol-blue);
  font-weight: 700;
}

/* Responsividade - Tablet */
@media (max-width: 1024px) {
  .unified-method {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .unified-method__title {
    font-size: 32px;
  }

  .unified-method__highlight {
    font-size: 36px;
  }

  .unified-method__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .unified-method__paragraph {
    font-size: 16px;
  }

  .unified-method__warning-card {
    padding: var(--spacing-lg);
  }

  .unified-method__warning-icon {
    width: 56px;
    height: 56px;
  }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
  .unified-method {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .unified-method__title {
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
  }

  .unified-method__highlight {
    font-size: 28px;
    margin: var(--spacing-md) 0;
  }

  .unified-method__content {
    gap: var(--spacing-lg);
  }

  .unified-method__text {
    order: 2;
  }

  .unified-method__warning-card {
    order: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .unified-method__paragraph {
    font-size: 15px;
    text-align: left;
  }

  .unified-method__warning-icon {
    width: 56px;
    height: 56px;
  }

  .unified-method__warning-title {
    font-size: 16px;
  }

  .unified-method__warning-text {
    font-size: 14px;
  }
}

/* Responsividade - Mobile Pequeno */
@media (max-width: 480px) {
  .unified-method {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .unified-method__title {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
  }

  .unified-method__highlight {
    font-size: 24px;
    margin: var(--spacing-sm) 0;
  }

  .unified-method__content {
    gap: var(--spacing-md);
  }

  .unified-method__paragraph {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .unified-method__warning-card {
    padding: var(--spacing-md);
    border-width: 2px;
  }

  .unified-method__warning-icon {
    width: 48px;
    height: 48px;
  }

  .unified-method__warning-icon svg {
    width: 32px;
    height: 32px;
  }

  .unified-method__warning-title {
    font-size: 14px;
  }

  .unified-method__warning-text {
    font-size: 13px;
  }
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .unified-method__title,
  .unified-method__text,
  .unified-method__warning-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .unified-method__warning-icon {
    animation: none !important;
  }

  .unified-method__warning-card:hover {
    transform: none;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .unified-method {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  }

  .unified-method__title,
  .unified-method__paragraph,
  .unified-method__warning-text {
    color: var(--white);
  }

  .unified-method__warning-card {
    background: linear-gradient(
      135deg,
      rgba(229, 183, 75, 0.15) 0%,
      rgba(77, 177, 168, 0.15) 100%
    );
    border-color: var(--golden-yellow);
  }

  .unified-method__warning-text strong {
    color: var(--white);
  }
}

/* 
   
   SEÇÃO: PROVA SOCIAL - RESPIRAÇÃO UJJAYI
   
    */

.ujjayi-social-proof {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: linear-gradient(
    135deg,
    var(--petrol-blue) 0%,
    var(--dark-teal) 100%
  );
  color: white.;
}

.ujjayi-social-proof__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.ujjayi-social-proof__header {
  margin-bottom: var(--spacing-xxl);
  animation: fadeInDown 0.8s ease-out;
}

.ujjayi-social-proof__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: center;
  letter-spacing: -0.5px;
}

.ujjayi-social-proof__intro {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.ujjayi-social-proof__intro-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--white);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: center;
}

.ujjayi-social-proof__intro-text:last-child {
  margin-bottom: 0;
}

/* Carrossel Container */
.ujjayi-carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: var(--spacing-xxl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ujjayi-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.ujjayi-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ujjayi-carousel-track.no-transition {
  transition: none;
}

.ujjayi-carousel-slide {
  flex: 0 0 calc(33.333% - 13.33px);
  padding: 0 8px;
  box-sizing: border-box;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--spacing-sm);
}

.ujjayi-carousel-slide__content {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ujjayi-carousel-slide:hover .ujjayi-carousel-slide__content {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ujjayi-carousel-slide__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.6;
  margin: 0 0 var(--spacing-md) 0;
}

.ujjayi-carousel-slide__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--petrol-blue);
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
  flex-grow: 1;
}

.ujjayi-carousel-slide__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.ujjayi-video-embed-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.ujjayi-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  transition: all 0.3s ease;
}

.ujjayi-video-embed-container:hover .ujjayi-video-placeholder {
  background: rgba(0, 0, 0, 0.8);
}

.ujjayi-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.ujjayi-video-play-button {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ujjayi-video-play-button:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.ujjayi-video-play-button:active svg {
  transform: scale(0.95);
}

.ujjayi-video-embed-container.video-loaded .ujjayi-video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.ujjayi-video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Botões de Navegação */
.ujjayi-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--golden-yellow);
  color: var(--golden-yellow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ujjayi-carousel-nav:hover {
  background-color: var(--golden-yellow);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 183, 75, 0.3);
}

.ujjayi-carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ujjayi-carousel-nav:focus {
  outline: 3px solid var(--aqua-teal);
  outline-offset: 2px;
}

.ujjayi-carousel-nav-prev {
  left: 20px;
}

.ujjayi-carousel-nav-next {
  right: 20px;
}

/* Indicadores */
.ujjayi-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.ujjayi-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.ujjayi-carousel-indicator:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.ujjayi-carousel-indicator.active {
  background-color: var(--golden-yellow);
  opacity: 1;
  width: 32px;
  border-radius: 6px;
}

/* Imagem de Prova Social */

/* ========== DESKTOP: Imagem Única ========== */
.ujjayi-social-proof__image-wrapper {
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  margin-bottom: 30px;
}

.ujjayi-social-proof__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(34, 67, 78, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ujjayi-social-proof__image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(34, 67, 78, 0.15);
}

/* ========== MOBILE: Carrossel ========== */
.ujjayi-social-proof__carousel {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.ujjayi-social-proof__carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(34, 67, 78, 0.1);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.ujjayi-social-proof__carousel-container:active {
  cursor: grabbing;
}

.ujjayi-social-proof__carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.ujjayi-social-proof__carousel-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ujjayi-social-proof__carousel-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.ujjayi-social-proof__carousel-img:active {
  opacity: 0.8;
}

/* ========== Indicadores ========== */
.ujjayi-social-proof__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.ujjayi-social-proof__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ujjayi-social-proof__dot.active {
  background-color: var(--golden-yellow);
  width: 28px;
  border-radius: 5px;
}

/* ========== Botões de Navegação ========== */
.ujjayi-social-proof__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 67, 78, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.ujjayi-social-proof__carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ujjayi-social-proof__carousel-nav:hover {
  background: var(--petrol-blue);
}

.ujjayi-social-proof__carousel-nav--prev {
  left: 10px;
}

.ujjayi-social-proof__carousel-nav--next {
  right: 10px;
}

/* ========== MODAL ========== */
.ujjayi-social-proof__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.ujjayi-social-proof__modal.active {
  display: flex;
}

.ujjayi-social-proof__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.ujjayi-social-proof__modal-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.ujjayi-social-proof__modal-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.ujjayi-social-proof__modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ujjayi-social-proof__modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  .ujjayi-social-proof__image-wrapper {
    display: none;
  }

  .ujjayi-social-proof__carousel {
    display: block;
  }
}

@media (max-width: 480px) {
  .ujjayi-social-proof__carousel-nav {
    width: 36px;
    height: 36px;
  }

  .ujjayi-social-proof__modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
  }
}

/* CTA */
.ujjayi-social-proof__cta-wrapper {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(
    135deg,
    rgba(34, 67, 78, 0.05) 0%,
    rgba(77, 177, 168, 0.05) 100%
  );
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 24px rgba(2, 2, 3, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ujjayi-social-proof__cta-text {
  font-family: var(--font-body);
  font-size: var(--font-size-h3);
  color: var(--white);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
}

.golden-strong strong,
.golden-strong h2 {
  color: var(--golden-yellow);
  font-weight: 700;
}

.hero__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 18px 48px;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--golden-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(229, 183, 75, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta-button:hover {
  background: var(--white);
  color: var(--petrol-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 183, 75, 0.4);
}

.hero__cta-button:active {
  transform: translateY(-1px);
}

.hero__cta-arrow {
  transition: transform 0.3s ease;
}

.hero__cta-button:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* Responsividade - Tablet */
@media (max-width: 1024px) {
  .ujjayi-social-proof {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .ujjayi-carousel-slide {
    flex: 0 0 calc(50% - 20px);
  }

  .ujjayi-carousel-nav {
    width: 45px;
    height: 45px;
  }

  .ujjayi-carousel-nav-prev {
    left: 15px;
  }

  .ujjayi-carousel-nav-next {
    right: 15px;
  }

  .ujjayi-social-proof__title {
    font-size: 28px;
  }

  .ujjayi-carousel-slide__title {
    font-size: 15px;
  }

  .ujjayi-carousel-slide__subtitle {
    font-size: 13px;
  }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
  .ujjayi-social-proof {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .ujjayi-carousel-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .ujjayi-carousel-slide__title {
    font-size: 15px;
  }

  .ujjayi-carousel-slide__subtitle {
    font-size: 13px;
  }

  .ujjayi-carousel-nav {
    width: 40px;
    height: 40px;
  }

  .ujjayi-carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .ujjayi-carousel-nav-prev {
    left: 10px;
  }

  .ujjayi-carousel-nav-next {
    right: 10px;
  }

  .ujjayi-carousel-indicators {
    margin-top: 20px;
    gap: 8px;
  }

  .ujjayi-carousel-indicator {
    width: 10px;
    height: 10px;
  }

  .ujjayi-carousel-indicator.active {
    width: 28px;
  }

  .ujjayi-social-proof__title {
    font-size: 24px;
  }

  .ujjayi-social-proof__intro-text {
    font-size: 15px;
  }

  .ujjayi-social-proof__cta-wrapper {
    padding: var(--spacing-lg);
  }

  .hero__cta-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Responsividade - Mobile Pequeno */
@media (max-width: 480px) {
  .ujjayi-social-proof {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .ujjayi-social-proof__header {
    margin-bottom: var(--spacing-lg);
  }

  .ujjayi-social-proof__title {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
  }

  .ujjayi-social-proof__intro-text {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .ujjayi-carousel-container {
    margin-bottom: var(--spacing-lg);
  }

  .ujjayi-carousel-slide {
    flex: 0 0 calc(100% - 16px);
  }

  .ujjayi-carousel-slide__content {
    padding: var(--spacing-md);
  }

  .ujjayi-carousel-slide__title {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .ujjayi-carousel-slide__subtitle {
    font-size: 12px;
  }

  .ujjayi-carousel-nav {
    width: 36px;
    height: 36px;
  }

  .ujjayi-carousel-nav svg {
    width: 18px;
    height: 18px;
  }

  .ujjayi-carousel-nav-prev {
    left: 8px;
  }

  .ujjayi-carousel-nav-next {
    right: 8px;
  }

  .ujjayi-carousel-indicators {
    margin-top: 16px;
    gap: 6px;
  }

  .ujjayi-carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .ujjayi-carousel-indicator.active {
    width: 24px;
  }

  .ujjayi-social-proof__image-wrapper {
    margin-bottom: var(--spacing-lg);
  }

  .ujjayi-social-proof__cta-wrapper {
    padding: var(--spacing-md);
  }

  .ujjayi-social-proof__cta-text {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .hero__cta-button {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
  }
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .ujjayi-social-proof__header,
  .ujjayi-carousel-container,
  .ujjayi-social-proof__image-wrapper,
  .ujjayi-social-proof__cta-wrapper,
  .ujjayi-carousel-slide,
  .ujjayi-carousel-nav {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ujjayi-carousel-nav:hover,
  .ujjayi-carousel-slide:hover .ujjayi-carousel-slide__content,
  .ujjayi-social-proof__image:hover,
  .hero__cta-button:hover {
    transform: none;
  }
}

/* 
   DARK MODE
    */

@media (prefers-color-scheme: dark) {
  .ujjayi-social-proof {
    background: #1a1a1a;
  }

  .ujjayi-carousel-slide__content {
    background: rgba(26, 26, 26, 0.95);
  }

  .ujjayi-social-proof__title,
  .ujjayi-social-proof__intro-text,
  .ujjayi-carousel-slide__title,
  .ujjayi-carousel-slide__subtitle,
  .ujjayi-social-proof__cta-text {
    color: var(--white);
  }

  .ujjayi-carousel-indicator {
    background-color: rgba(255, 255, 255, 0.4);
  }

  .ujjayi-social-proof__cta-wrapper {
    background: linear-gradient(
      135deg,
      rgba(34, 67, 78, 0.15) 0%,
      rgba(77, 177, 168, 0.15) 100%
    );
  }
}

/* 
   
   SEÇÃO: COMPARATIVO - PILOTO AUTOMÁTICO X FORA DO AUTOMÁTICO
   
    */

.autopilot-comparison {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    rgba(77, 177, 168, 0.05) 100%
  );
}

.autopilot-comparison__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Título */
.autopilot-comparison__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--petrol-blue);
  line-height: 1.3;
  margin: 0 0 var(--spacing-xxl) 0;
  text-align: center;
  letter-spacing: -0.5px;
  animation: fadeInDown 0.8s ease-out;
}

.autopilot-comparison__title-x {
  display: block;
  color: var(--golden-yellow);
  font-size: 32px;
  margin: var(--spacing-md) 0;
  text-shadow: 0 2px 8px rgba(229, 183, 75, 0.2);
}

/* Grid de Comparação */
.autopilot-comparison__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  margin-bottom: var(--spacing-xxl);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Colunas */
.autopilot-comparison__column {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.autopilot-comparison__column--left {
  animation-delay: 0.2s;
}

.autopilot-comparison__column--right {
  animation-delay: 0.3s;
}

/* Cards */
.autopilot-comparison__card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.autopilot-comparison__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, currentColor 0%, transparent 100%);
  transition: all 0.3s ease;
}

.autopilot-comparison__card--negative {
  border-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.autopilot-comparison__card--negative::before {
  background: linear-gradient(90deg, #dc3545 0%, transparent 100%);
}

.autopilot-comparison__card--positive {
  border-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.autopilot-comparison__card--positive::before {
  background: linear-gradient(90deg, #28a745 0%, transparent 100%);
}

.autopilot-comparison__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Header do Card */
.autopilot-comparison__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.autopilot-comparison__subtitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.autopilot-comparison__icon {
  flex-shrink: 0;
  margin-left: var(--spacing-md);
  transition: all 0.3s ease;
}

.autopilot-comparison__card--negative .autopilot-comparison__icon {
  color: #dc3545;
}

.autopilot-comparison__card--positive .autopilot-comparison__icon {
  color: #28a745;
}

.autopilot-comparison__card:hover .autopilot-comparison__icon {
  transform: scale(1.1);
}

/* Pontos */
.autopilot-comparison__points {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.autopilot-comparison__point {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--petrol-blue);
  transition: all 0.3s ease;
}

.autopilot-comparison__point:hover {
  transform: translateX(4px);
}

.autopilot-comparison__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.autopilot-comparison__point--negative .autopilot-comparison__point-icon {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.autopilot-comparison__point--positive .autopilot-comparison__point-icon {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.autopilot-comparison__point-text {
  flex: 1;
}

/* Resultado */
.autopilot-comparison__result {
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-left: 4px solid;
}

.autopilot-comparison__result--negative {
  border-left-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

.autopilot-comparison__result--positive {
  border-left-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}

.autopilot-comparison__result-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0 0 var(--spacing-md) 0;
}

.autopilot-comparison__result-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--petrol-blue);
  line-height: 1.7;
  margin: 0 0 var(--spacing-sm) 0;
}

.autopilot-comparison__result-text:last-child {
  margin-bottom: 0;
}

.autopilot-comparison__result-text strong {
  font-weight: 700;
  color: var(--petrol-blue);
}

/* Divisor Central */
.autopilot-comparison__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  min-height: 100px;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}

.autopilot-comparison__divider-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    180deg,
    var(--golden-yellow) 0%,
    transparent 100%
  );
}

.autopilot-comparison__divider-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--golden-yellow);
  text-shadow: 0 2px 8px rgba(229, 183, 75, 0.2);
}

/* CTA */
.autopilot-comparison__cta-wrapper {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(
    135deg,
    rgba(34, 67, 78, 0.05) 0%,
    rgba(77, 177, 168, 0.05) 100%
  );
  border-radius: var(--border-radius-lg);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.autopilot-comparison__cta-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--petrol-blue);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
}

.autopilot-comparison__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 18px 48px;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--golden-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(229, 183, 75, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 30px auto;
}

.autopilot-comparison__cta-button:hover {
  background: var(--white);
  color: var(--petrol-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229, 183, 75, 0.4);
}

.autopilot-comparison__cta-button:active {
  transform: translateY(-1px);
}

.autopilot-comparison__cta-button svg {
  transition: transform 0.3s ease;
}

.autopilot-comparison__cta-button:hover svg {
  transform: translateX(4px);
}

/* Responsividade - Tablet */
@media (max-width: 1024px) {
  .autopilot-comparison {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .autopilot-comparison__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .autopilot-comparison__divider {
    flex-direction: row;
    min-height: auto;
    margin: var(--spacing-lg) 0;
    gap: var(--spacing-md);
  }

  .autopilot-comparison__divider-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--golden-yellow) 0%,
      transparent 100%
    );
  }

  .autopilot-comparison__title {
    font-size: 28px;
  }

  .autopilot-comparison__title-x {
    font-size: 28px;
  }

  .autopilot-comparison__subtitle {
    font-size: 16px;
  }

  .autopilot-comparison__point {
    font-size: 14px;
  }

  .autopilot-comparison__result-text {
    font-size: 13px;
  }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
  .autopilot-comparison {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .autopilot-comparison__title {
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
  }

  .autopilot-comparison__title-x {
    font-size: 24px;
    margin: var(--spacing-sm) 0;
  }

  .autopilot-comparison__grid {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .autopilot-comparison__card {
    padding: var(--spacing-md);
  }

  .autopilot-comparison__header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }

  .autopilot-comparison__subtitle {
    font-size: 15px;
  }

  .autopilot-comparison__icon {
    width: 40px;
    height: 40px;
  }

  .autopilot-comparison__points {
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .autopilot-comparison__point {
    font-size: 13px;
  }

  .autopilot-comparison__result {
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
  }

  .autopilot-comparison__result-title {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }

  .autopilot-comparison__result-text {
    font-size: 12px;
    margin-bottom: var(--spacing-xs);
  }

  .autopilot-comparison__cta-wrapper {
    padding: var(--spacing-lg);
  }

  .autopilot-comparison__cta-text {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
  }

  .autopilot-comparison__cta-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Responsividade - Mobile Pequeno */
@media (max-width: 480px) {
  .autopilot-comparison {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .autopilot-comparison__title {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
  }

  .autopilot-comparison__title-x {
    font-size: 20px;
    margin: var(--spacing-sm) 0;
  }

  .autopilot-comparison__grid {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .autopilot-comparison__card {
    padding: var(--spacing-sm);
  }

  .autopilot-comparison__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .autopilot-comparison__subtitle {
    font-size: 14px;
  }

  .autopilot-comparison__icon {
    width: 36px;
    height: 36px;
    margin-left: 0;
  }

  .autopilot-comparison__points {
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .autopilot-comparison__point {
    font-size: 12px;
  }

  .autopilot-comparison__point-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .autopilot-comparison__result {
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
  }

  .autopilot-comparison__result-title {
    font-size: 13px;
    margin-bottom: var(--spacing-xs);
  }

  .autopilot-comparison__result-text {
    font-size: 11px;
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
  }

  .autopilot-comparison__divider {
    margin: var(--spacing-sm) 0;
  }

  .autopilot-comparison__divider-text {
    font-size: 20px;
  }

  .autopilot-comparison__cta-wrapper {
    padding: var(--spacing-md);
  }

  .autopilot-comparison__cta-text {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  }

  .autopilot-comparison__cta-button {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
  }
}

/* 
   ANIMAÇÕES
    */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   ACESSIBILIDADE
    */

@media (prefers-reduced-motion: reduce) {
  .autopilot-comparison__title,
  .autopilot-comparison__grid,
  .autopilot-comparison__column,
  .autopilot-comparison__cta-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .autopilot-comparison__card:hover,
  .autopilot-comparison__point:hover,
  .autopilot-comparison__cta-button:hover {
    transform: none;
  }
}

/* 
   DARK MODE
    */

@media (prefers-color-scheme: dark) {
  .autopilot-comparison {
    background: linear-gradient(
      180deg,
      #1a1a1a 0%,
      rgba(77, 177, 168, 0.1) 100%
    );
  }

  .autopilot-comparison__card {
    background: #2a2a2a;
  }

  .autopilot-comparison__title,
  .autopilot-comparison__subtitle,
  .autopilot-comparison__point,
  .autopilot-comparison__result-title,
  .autopilot-comparison__result-text,
  .autopilot-comparison__cta-text {
    color: var(--white);
  }

  .autopilot-comparison__header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .autopilot-comparison__result {
    background: rgba(0, 0, 0, 0.3);
  }

  .autopilot-comparison__result--negative {
    background: rgba(220, 53, 69, 0.1);
  }

  .autopilot-comparison__result--positive {
    background: rgba(40, 167, 69, 0.1);
  }

  .autopilot-comparison__cta-wrapper {
    background: linear-gradient(
      135deg,
      rgba(34, 67, 78, 0.15) 0%,
      rgba(77, 177, 168, 0.15) 100%
    );
  }
}

/* 
   SEÇÃO: COMO FUNCIONA O MÉTODO
*/

.how-it-works {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background-color: var(--petrol-blue); /* Fundo Petrol Blue */
  color: var(--white); /* Texto base branco */
  font-family: var(--font-body);
}

.how-it-works__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.how-it-works__header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  animation: fadeInDown 0.8s ease-out;
}

.how-it-works__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--white); /* Título branco */
  line-height: 1.3;
  margin: 0 0 var(--spacing-md) 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.how-it-works__subtitle {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid de Pilares (3 Colunas) */
.how-it-works__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.how-it-works__pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.how-it-works__pillar-card:nth-child(1) {
  animation-delay: 0.2s;
}
.how-it-works__pillar-card:nth-child(2) {
  animation-delay: 0.4s;
}
.how-it-works__pillar-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Imagens dos Pilares */
.how-it-works__image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  /* Fundo sutilmente mais claro que o petrol-blue para destacar a imagem */
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works__pillar-card:hover .how-it-works__image-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: var(--golden-yellow);
}

.how-it-works__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Badge Numérico */
.how-it-works__number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--golden-yellow);
  color: var(--petrol-blue); /* Número escuro para contraste */
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Conteúdo do Pilar */
.how-it-works__pillar-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--golden-yellow); /* Título em dourado */
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.how-it-works__pillar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--white); /* Linha branca */
  opacity: 0.3;
}

.how-it-works__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9); /* Branco com leve transparência */
}

.how-it-works__text strong {
  color: var(--golden-yellow); /* Destaque em dourado */
  font-weight: 700;
}

/* Seção de Processo */
.how-it-works__process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  /* Card escuro com borda sutil */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.how-it-works__process-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.how-it-works__result-box {
  background-color: rgba(255, 255, 255, 0.05); /* Fundo translúcido */
  padding: var(--spacing-lg);
  border-left: 4px solid var(--golden-yellow);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-top: var(--spacing-lg);
}

.how-it-works__result-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-xs);
  font-size: 1.1rem;
}

.how-it-works__result-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--golden-yellow);
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.how-it-works__process-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works__process-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.how-it-works__process-image img:hover {
  transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 1024px) {
  .how-it-works__pillars {
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
  }

  .how-it-works__process {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .how-it-works__result-box {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .how-it-works__image-wrapper {
    height: 240px;
  }

  .how-it-works__title {
    font-size: 1.75rem;
  }
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* VARIÁVEIS LOCAIS */
:root {
  --j-bg: #f4f7f6; /* Neutral Light */
  --j-card-bg: #ffffff;
  --j-text-main: var(--petrol-blue); /* Mantendo consistência */

  /* Cores das Fases (Vibrantes) */
  --c-white: #a0a0a0; /* Prata metálico para contraste no fundo claro */
  --c-yellow: #f5c518;
  --c-orange: #ff6b00;
  --c-red: #e63946;
  --c-purple: #7209b7;
}

/* CONTAINER GERAL */
.journey-ultimate {
  background-color: var(--j-bg);
  padding: 6rem 1.5rem;
  overflow-x: hidden;
  font-family: var(--font-body); /* Garantindo a fonte */
}

.journey-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.journey-header {
  text-align: center;
  margin-bottom: 6rem;
  animation: fadeUp 1s ease-out;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--j-text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.journey-subtitle {
  font-size: 1.125rem;
  color: var(--j-text-main);
  max-width: 600px;
  margin: 0 auto;
}

/* SISTEMA DE TIMELINE */
.timeline-system {
  position: relative;
  padding: 2rem 0;
}

/* TRILHO CENTRAL */
.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%; /* JS vai animar */
  background: linear-gradient(
    to bottom,
    var(--c-white),
    var(--c-yellow),
    var(--c-orange),
    var(--c-red),
    var(--c-purple)
  );
  transition: height 0.3s ease-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* CADA NÓ DA JORNADA */
.journey-node {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-node:last-child {
  margin-bottom: 0;
}

/* MARCADOR CENTRAL (CÍRCULO) */
.journey-node__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--j-bg);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

/* CARDS */
.journey-card {
  width: 45%;
  background: var(--j-card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Barra Lateral Colorida do Card */
.journey-card__accent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #ccc; /* Default */
  transition: width 0.3s ease;
}

.journey-card:hover .journey-card__accent {
  width: 6px;
}

/* Layout Alternado */
.journey-node:nth-child(odd) {
  transform: translateX(-50px);
}
.journey-node:nth-child(even) {
  transform: translateX(50px);
  flex-direction: row-reverse;
}

.journey-node:nth-child(odd) .journey-card {
  margin-right: auto;
  text-align: right;
}
.journey-node:nth-child(odd) .journey-card__accent {
  left: auto;
  right: 0;
}

.journey-node:nth-child(even) .journey-card {
  margin-left: auto;
  text-align: left;
}

/* ESTADOS ATIVOS (JS) */
.journey-node.active {
  opacity: 1;
  transform: translateX(0);
}

.journey-node.active .journey-node__marker {
  transform: translateX(-50%) scale(1.3);
  background: var(--j-card-bg);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 0 8px var(--j-bg); /* Espaço em branco ao redor */
}

/* CORES ESPECÍFICAS POR FASE (Usando Data Attribute) */
/* Fase Branca */
.journey-node[data-phase="white"] .journey-card__accent {
  background: var(--c-white);
}
.journey-node[data-phase="white"].active .journey-node__marker {
  background: var(--c-white);
  box-shadow: 0 0 20px rgba(160, 160, 160, 0.4);
}
.journey-node[data-phase="white"] .journey-card__badge {
  color: var(--c-white);
  background: rgba(160, 160, 160, 0.1);
}

/* Fase Amarela */
.journey-node[data-phase="yellow"] .journey-card__accent {
  background: var(--c-yellow);
}
.journey-node[data-phase="yellow"].active .journey-node__marker {
  background: var(--c-yellow);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.4);
}
.journey-node[data-phase="yellow"] .journey-card__badge {
  color: #b8860b;
  background: rgba(245, 197, 24, 0.15);
}

/* Fase Laranja */
.journey-node[data-phase="orange"] .journey-card__accent {
  background: var(--c-orange);
}
.journey-node[data-phase="orange"].active .journey-node__marker {
  background: var(--c-orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}
.journey-node[data-phase="orange"] .journey-card__badge {
  color: var(--c-orange);
  background: rgba(255, 107, 0, 0.1);
}

/* Fase Vermelha */
.journey-node[data-phase="red"] .journey-card__accent {
  background: var(--c-red);
}
.journey-node[data-phase="red"].active .journey-node__marker {
  background: var(--c-red);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}
.journey-node[data-phase="red"] .journey-card__badge {
  color: var(--c-red);
  background: rgba(230, 57, 70, 0.1);
}

/* Fase Púrpura */
.journey-node[data-phase="purple"] .journey-card__accent {
  background: var(--c-purple);
}
.journey-node[data-phase="purple"].active .journey-node__marker {
  background: var(--c-purple);
  box-shadow: 0 0 20px rgba(114, 9, 183, 0.4);
}
.journey-node[data-phase="purple"] .journey-card__badge {
  color: var(--c-purple);
  background: rgba(114, 9, 183, 0.1);
}

/* HOVER EFFECTS */
.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
}

/* CONTEÚDO DO CARD */
.journey-card__top {
  margin-bottom: 0.5rem;
}

.journey-card__role {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--j-text-main);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
}

.journey-card__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-card__meta {
  display: block;
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
  font-style: italic;
}

.journey-card__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--j-text-main);
  margin: 0;
}

/* FOOTER / CTA */
.journey-footer {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.journey-footer.active {
  opacity: 1;
  transform: translateY(0);
}

.journey-cta-box {
  text-align: center;
  background: #fff;
  padding: 2rem 4rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.journey-cta-box p {
  font-weight: 600;
  color: var(--j-text-main);
  margin: 0;
}

@media (min-width: 720px) {
  .journey-cta-box p {
    padding: 20px;
    max-width: 80%;
  }
}

@media (min-width: 768px) {
  .journey-cta-box p {
    padding: 24px;
    max-width: 50%;
  }
}

.journey-btn-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-btn-pulse:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(229, 183, 75, 0.6);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .timeline-track {
    left: 20px;
  }

  .journey-node {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    transform: translateY(20px) !important; /* Reset transform lateral */
  }

  .journey-node:nth-child(even) {
    flex-direction: column;
  }

  .journey-node__marker {
    left: 20px;
    transform: translateX(-50%);
  }

  .journey-node.active .journey-node__marker {
    transform: translateX(-50%) scale(1.2);
  }

  .journey-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .journey-node:nth-child(odd) .journey-card__accent {
    left: 0;
    right: auto;
  }

  .journey-header {
    margin-bottom: 4rem;
  }
  .journey-title {
    font-size: 1.75rem;
  }

  .journey-cta-box {
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
  }
}

/* ANIMAÇÃO DE ENTRADA */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SEÇÃO TELEGRAM */
.telegram-section {
  background-color: var(--white);
  padding: 6rem 1.5rem;
  overflow: hidden;
  font-family: var(--font-body);
}

.telegram-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.telegram-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeInDown 0.8s ease-out;
}

.telegram-tag {
  display: inline-block;
  background-color: rgba(34, 158, 217, 0.1); /* Azul Telegram suave */
  color: #229ed9;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.telegram-title,
.telegram-preview-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--petrol-blue);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -1px;
}

.telegram-preview-title {
  text-align: center;
}

/* GRID PRINCIPAL */
.telegram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

/* COLUNA VISUAL (IMAGEM) */
.telegram-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.telegram-mockup-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.telegram-visual:hover .telegram-mockup-wrapper {
  transform: translateY(-10px);
}

.telegram-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(34, 158, 217, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  border-radius: 50%;
}

.telegram-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(34, 158, 217, 0.2); /* Sombra azulada */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.telegram-float-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #229ed9;
  font-size: 0.9rem;
  animation: float 3s ease-in-out infinite;
}

/* COLUNA DE CONTEÚDO */
.telegram-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--petrol-blue);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.telegram-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.telegram-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.telegram-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(34, 158, 217, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #229ed9;
  flex-shrink: 0;
}

.telegram-text-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0 0 0.5rem 0;
}

.telegram-text-box p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* PROVA SOCIAL */
.telegram-social-proof {
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-md);
  background: var(--white);
}

.telegram-proof-label {
  font-weight: 600;
  color: var(--petrol-blue);
  margin-bottom: 1.5rem;
  display: block;
}

.telegram-proof-image-wrapper {
  overflow: hidden;
  margin-top: 30px;
}

.telegram-proof-image {
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

/* CTA BOX */
.telegram-cta-box {
  background: linear-gradient(
    135deg,
    #229ed9 0%,
    #1e88bc 100%
  ); /* Gradiente Telegram */
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(34, 158, 217, 0.3);
  max-width: 960px;
  margin: 0 auto;
}

/* Ícone Telegram em Container */
.telegram-item .telegram-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 136, 204, 0.8);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.telegram-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #229ed9;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.telegram-btn svg {
  transition: all 0.3s ease;
}

.telegram-btn:hover svg {
  transform: translateX(4px);
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: var(--golden-yellow); /* Toque da marca no hover */
  color: var(--petrol-blue);
}

/* ANIMAÇÕES */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .telegram-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .telegram-visual {
    order: -1; /* Imagem primeiro no mobile */
    margin-bottom: 2rem;
  }

  .telegram-float-badge {
    right: 0;
    bottom: 20px;
  }

  .telegram-title {
    font-size: 2rem;
  }

  .telegram-cta-box {
    padding: 3rem 1.5rem;
  }

  .telegram-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }
}

/* 
   ============================================
   SEÇÃO: PROVA SOCIAL TELEGRAM
   ============================================
    */

.telegram-preview-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--petrol-blue);
  text-align: center;
  margin: 0 0 var(--spacing-xl) 0;
  line-height: 1.3;
}

/* ========== DESKTOP: Imagem Única ========== */
.telegram-proof-image-wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.telegram-proof-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(34, 67, 78, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .telegram-proof-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(34, 67, 78, 0.15);
} */

/* ========== MOBILE: Carrossel ========== */
.telegram-proof__carousel {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.telegram-proof__carousel-container {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.telegram-proof__carousel-container:active {
  cursor: grabbing;
}

.telegram-proof__carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.telegram-proof__carousel-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-proof__carousel-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.telegram-proof__carousel-img:active {
  opacity: 0.8;
}

/* ========== Indicadores ========== */
.telegram-proof__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.telegram-proof__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 67, 78, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.telegram-proof__dot.active {
  background: var(--petrol-blue);
  width: 28px;
  border-radius: 5px;
}

/* ========== Botões de Navegação ========== */
.telegram-proof__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(34, 67, 78, 0.7);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.telegram-proof__carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.telegram-proof__carousel-nav:hover {
  background: var(--petrol-blue);
}

.telegram-proof__carousel-nav--prev {
  left: 10px;
}

.telegram-proof__carousel-nav--next {
  right: 10px;
}

/* ========== MODAL ========== */
.telegram-proof__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.telegram-proof__modal.active {
  display: flex;
}

.telegram-proof__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.telegram-proof__modal-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.telegram-proof__modal-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.telegram-proof__modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.telegram-proof__modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
  .telegram-social-proof {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .telegram-preview-title {
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
  }

  .telegram-proof-image-wrapper {
    display: none;
  }

  .telegram-proof__carousel {
    display: block;
  }
}

@media (max-width: 480px) {
  .telegram-social-proof {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .telegram-preview-title {
    font-size: 20px;
  }

  .telegram-proof__carousel-nav {
    width: 36px;
    height: 36px;
  }

  .telegram-proof__modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
  }
}

/* SEÇÃO INSTRUCTOR (DARK MODE) */
.instructor-section {
  background-color: var(--petrol-blue); /* Fundo Escuro para Autoridade */
  color: var(--white);
  padding: 6rem 1.5rem;
  overflow: hidden;
  position: relative;
}

/* Elemento Decorativo de Fundo (Sutil) */
.instructor-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(77, 177, 168, 0.1) 0%,
    rgba(34, 67, 78, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.instructor-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 45% 50%; /* Imagem menor, Texto maior */
  gap: 5%;
  align-items: center;
}

/* COLUNA VISUAL */
.instructor-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructor-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
}

/* Borda Dourada Deslocada (Offset) */
.instructor-frame-border {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--golden-yellow);
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.4s ease;
}

.instructor-visual:hover .instructor-frame-border {
  transform: translate(-10px, 10px);
}

.instructor-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); /* Sombra dramática */
  display: block;
  filter: contrast(1.05) saturate(1.1); /* Leve ajuste na foto */
}

/* Badge Flutuante */
.instructor-badge {
  position: absolute;
  bottom: -40px;
  right: -20px;
  background: var(--white);
  color: var(--petrol-blue);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 4px solid var(--golden-yellow);
}

.instructor-badge-year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--petrol-blue);
  line-height: 1;
}

.instructor-badge-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
}

/* COLUNA DE CONTEÚDO */
.instructor-content {
  text-align: left;
}

.instructor-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.instructor-role {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--golden-yellow);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 2px solid rgba(229, 183, 75, 0.3);
  padding-bottom: 0.5rem;
}

.instructor-name-img img {
  width: 200px;
  margin-botom: 20px;
}

@media (max-width: 900px) {
  .instructor-name-img {
    display: flex;
    justify-content: center;
  }
}

.instructor-bio p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9); /* Branco suavizado */
  margin-bottom: 1.5rem;
  text-align: justify;
}

.instructor-bio strong {
  color: var(--white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Sublinhado sutil */
}

.instructor-divider {
  width: 60px;
  height: 4px;
  background: var(--golden-yellow);
  margin-top: 2rem;
  border-radius: 2px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .instructor-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  /* Reorganiza a ordem visual no Mobile */
  .instructor-content {
    display: flex;
    flex-direction: column;
    text-align: center; /* Centraliza texto no mobile para melhor visual */
  }

  /* Move o Header para o topo (Ordem 1) */
  .instructor-header {
    order: 1;
    margin-bottom: 3rem;
  }

  /* Move a Imagem para o meio (Ordem 2) */
  .instructor-visual {
    order: 2;
    max-width: 100%; /* Aproveita largura total */
    margin-bottom: 2rem;
  }

  /* Move a Bio para o final (Ordem 3) */
  .instructor-bio {
    order: 3;
    text-align: left; /* Mantém leitura da bio alinhada à esquerda */
  }

  .instructor-divider {
    order: 4;
    margin: 2rem auto 0; /* Centraliza o divisor */
  }

  /* Ajustes visuais para mobile */
  .instructor-frame {
    max-width: 350px; /* Limita tamanho da foto no mobile */
    margin: 0 auto;
  }

  .instructor-frame-border {
    top: 15px;
    left: 15px;
  }

  .instructor-title {
    font-size: 2rem;
  }

  .instructor-role {
    font-size: 1rem;
    margin-bottom: 0; /* Remove margem pois a imagem vem depois */
  }

  .instructor-badge {
    right: -10px;
    bottom: -20px;
    padding: 0.8rem 1.2rem;
  }
}

/* SEÇÃO BÔNUS */
.bonus-section {
  background-color: var(--neutral-light); /* Fundo claro para contraste */
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.bonus-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.bonus-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeUp 0.8s ease-out;
}

.bonus-tag {
  display: inline-block;
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--petrol-blue);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -1px;
}

/* LISTA DE BÔNUS */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* CARD DE BÔNUS */
.bonus-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 2rem; /* Padding interno no card */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Inverte a ordem visual para o segundo card */
.bonus-card--reverse .bonus-card__visual {
  order: 2;
}
.bonus-card--reverse .bonus-card__content {
  order: 1;
}

/* ÁREA VISUAL (IMAGEM) */
.bonus-card__visual {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.bonus-card__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bonus-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-card__image {
  transform: scale(1.05);
}

/* CONTEÚDO DO CARD */
.bonus-card__content {
  padding: 1rem;
  font-family: var(--font-body);
}

.bonus-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bonus-card__number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--golden-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card__line {
  flex-grow: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
}

.bonus-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.bonus-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.bonus-card__features li svg {
  flex-shrink: 0;
  color: var(--golden-yellow); /* Ícones de check dourados */
  margin-top: 4px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .bonus-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .bonus-card__visual {
    min-height: 250px; /* Altura menor para imagem no mobile */
    order: -1 !important; /* Imagem sempre no topo no mobile */
  }

  .bonus-card__image-wrapper {
    position: relative; /* Volta a ser relativo no mobile */
    height: 250px;
  }

  .bonus-card__content {
    padding: 0;
  }

  .bonus-title {
    font-size: 2rem;
  }

  .bonus-card__title {
    font-size: 1.5rem;
  }
}

/* SEÇÃO GARANTIA */
.guarantee-section {
  background-color: #000; /* Fundo muito suave */
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.guarantee-container {
  max-width: 900px; /* Container mais estreito para leitura focada */
  margin: 0 auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* VISUAL (SELO) */
.guarantee-visual {
  flex-shrink: 0;
  position: relative;
}

.guarantee-seal-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-seal {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.guarantee-seal:hover {
  transform: scale(1.05) rotate(5deg);
}

.guarantee-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(229, 183, 75, 0.4) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
  border-radius: 50%;
  animation: pulseGlow 3s infinite;
}

/* TEXTO */
.guarantee-text-box {
  flex-grow: 1;
}

.guarantee-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--golden-yellow);
  border-radius: 8px;
  padding: 5px 10px; /* Dourado para valor */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--petrol-blue);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.guarantee-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.guarantee-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.guarantee-desc strong {
  color: var(--petrol-blue);
  font-weight: 700;
}

/* ANIMAÇÃO */
@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }

  .guarantee-seal-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .guarantee-title {
    font-size: 2rem;
  }

  .guarantee-subtitle {
    font-size: 1.1rem;
  }
}

/* SEÇÃO FAQ */
.faq-section {
  background-color: var(--white);
  padding: 6rem 1.5rem;
}

.faq-container {
  max-width: 900px; /* Largura ideal para leitura */
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-tag {
  display: inline-block;
  background-color: rgba(34, 67, 78, 0.05);
  color: var(--petrol-blue);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--petrol-blue);
  margin: 0 0 1rem 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item:hover {
  border-color: rgba(229, 183, 75, 0.5); /* Dourado suave no hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--petrol-blue);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--golden-yellow); /* Destaque no hover */
}

/* Ícone (+/-) */
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--petrol-blue);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px; /* Linha horizontal */
}

.faq-icon::after {
  width: 2px;
  height: 16px; /* Linha vertical */
}

/* Estado Ativo (Aberto) */
.faq-question[aria-expanded="true"] {
  color: var(--petrol-blue);
  background-color: rgba(34, 67, 78, 0.02);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg); /* Gira para formar (-) */
  opacity: 0; /* Ou apenas gira, dependendo do estilo desejado. Aqui some a vertical. */
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background-color: var(--golden-yellow);
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-footer {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.faq-footer-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--petrol-blue);
  margin: 0;
  letter-spacing: 0.5px;
}

/* BOTÃO ESTÁTICO */
/* BOTÃO ESTÁTICO COM PULSO */
.whatsapp-static-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25d366;
  color: #fff;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  max-width: 100%;

  /* Adiciona a animação */
  animation: pulseGreen 2s infinite;
}

/* Pausa a animação e destaca quando passa o mouse */

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

/* DEFINIÇÃO DA ANIMAÇÃO */
@keyframes pulseGreen {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.03); /* Cresce levemente */
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); /* A sombra expande e desaparece */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-static-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.9rem;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-static-btn {
    width: 100%; /* Botão largura total no mobile */
    padding: 16px 20px;
    font-size: 0.9rem;
    flex-direction: row; /* Mantém ícone ao lado do texto */
  }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }
}

/* SEÇÃO OFERTA FINAL */
.final-offer-section {
  background-color: var(--petrol-blue);
  color: var(--white);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo "Super Poder" */
.final-offer-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(34, 158, 217, 0.15) 0%,
    rgba(34, 67, 78, 0.9) 80%
  );
  pointer-events: none;
}

.final-offer-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* HEADER */
.final-offer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.final-offer-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.highlight-text {
  color: var(--golden-yellow);
  text-shadow: 0 0 20px rgba(229, 183 75, 0.4);
}

/* BLOCO DE SABEDORIA (QUOTE) */
.wisdom-block {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 5rem;
  gap: 2rem;
  align-items: center;
  backdrop-filter: blur(10px);

  flex-direction: column;
  text-align: center;
  padding: 1.5rem;
}

@media (min-width: 1280px) {
  .wisdom-block {
    flex-direction: row;
    text-align: center;
    padding: 1.5rem;
  }
}

.quote-box {
  flex: 1;
  position: relative;
}

.quote-icon {
  color: var(--golden-yellow);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-heading); /* Fonte diferenciada para destaque */
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.quote-author {
  display: block;
  font-weight: 700;
  color: var(--golden-yellow);
  font-size: 1.1rem;
  font-family: var(--font-body);
}

.proof-image-wrapper {
  flex-shrink: 0;
  width: 300px;
  text-align: center;
}

.proof-image {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 412px) {
  .proof-image {
    width: 135%;
    margin-left: -17.5%;
  }
}

@media (min-width: 768px) {
  .proof-image {
    width: 160%;
    margin-left: -30%;
  }
}

@media (min-width: 820px) {
  .proof-image {
    width: 180%;
    margin-left: -40%;
  }
}

@media (min-width: 1024px) {
  .proof-image {
    width: 240%;
    margin-left: -60%;
  }
}

@media (min-width: 1280px) {
  .proof-image {
    width: 130%;
    margin-left: 0;
  }
}

@media (min-width: 1430px) {
  .proof-image {
    width: 157%;
  }
}

.proof-image:hover {
  transform: scale(1.03);
}

.proof-caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

/* LAYOUT DE OFERTA (GRID) */
.offer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Lista levemente maior */
  gap: 4rem;
  align-items: center;
  font-family: var(--font-body);
}

/* COLUNA ESQUERDA (LISTA) */
/* STACK (ESQUERDA) */
.offer-stack {
  padding-right: 2rem;
  font-family: var(--font-body);
}

.stack-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stack-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.stack-icon {
  width: 24px;
  height: 24px;
  color: var(--golden-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.stack-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stack-info span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Destaque para o item especial (Grupo VIP) */
.stack-item.highlight {
  background: rgba(229, 183, 75, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(229, 183, 75, 0.3);
  margin-top: 0.5rem;
}

.stack-total {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

.stack-total p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.strikethrough {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.5rem;
}

/* COLUNA DIREITA (CARD DE PREÇO) */
.pricing-card {
  background: var(--white);
  color: var(--petrol-blue);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--golden-yellow); /* Borda de destaque */
  transform: scale(1.05); /* Zoom para destaque */
}

.pricing-header {
  margin-bottom: 2rem;
}

.offer-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
  .offer-badge {
    top: -30px;
    font-size: 0.85rem;
  }
}

.pricing-text {
  font-size: 1.1rem;
  color: #666;
  margin: 17px 0;
}

.pricing-values {
  margin-bottom: 2.5rem;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--petrol-blue);
  line-height: 1;
}

.pricing-times {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 4px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -2px;
}

.pricing-cash {
  font-size: 1.1rem;
  color: #888;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* BOTÃO CTA */
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #27ae60;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
  margin-bottom: 2rem;
  animation: pulseGreen 2s infinite;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  background: #219150;
  box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
}

/* SELOS DE CONFIANÇA */
.trust-badges {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.badges-row {
  /* display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; */
}

.trust-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.trust-img:hover {
  opacity: 1;
}

.payment-methods span {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .final-offer-title {
    font-size: 2rem;
  }

  .offer-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-card {
    transform: scale(1); /* Remove zoom no mobile */
    padding: 2rem 1.5rem;
    order: -1; /* Opcional: Coloca preço antes da lista no mobile se desejar */
  }

  .pricing-amount {
    font-size: 3.5rem;
  }
}

/* SECURITY ICONS */
.offer-security {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  font-family: var(--font-body);
  background: rgba(7, 229, 13, 0.18);
  border-radius: 25px;
  padding: 0 15px;
  color: #27ae60;
}

.security-item svg {
  color: #27ae60; /* Ícone verde */
}

@media (max-width: 768px) {
  .offer-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .offer-stack {
    order: -1;
  }

  .pricing-card {
    margin-top: 50px;
    order: 0;
  }
}

/* FOOTER */
.site-footer {
  background-color: #1a252f; /* Tom mais escuro que o petrol-blue para contraste */
  color: #ecf0f1;
  padding: 5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-container-cols {
}

@media (min-width: 900px) {
  .footer-container-cols {
    display: flex;
    justify-content: center;
    gap: 134px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Marca maior, links e contato iguais */
  gap: 4rem;
  margin-bottom: 4rem;
}

/* MARCA */
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--golden-yellow);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .footer-logo-curso {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.footer-logo-curso img {
  width: 180px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 300px;
  font-family: var(--font-body);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--golden-yellow);
  color: var(--petrol-blue);
  transform: translateY(-3px);
}

/* TÍTULOS DE COLUNA */
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--golden-yellow);
  padding-left: 5px; /* Efeito visual sutil */
}

/* CONTATO */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-body);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--golden-yellow);
}

.contact-list svg {
  color: var(--golden-yellow);
  flex-shrink: 0;
}

.footer-hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  font-family: var(--font-body);
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-body);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto 1.5rem auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0; /* Remove deslocamento no mobile */
  }

  .contact-list li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* BLOCO LEGAL E COPYRIGHT ATUALIZADO */
.footer-legal-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.legal-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o conjunto ícone + texto */
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom-info p {
  margin: 0;
}

.footer-bottom-info strong {
  color: var(--white);
}

.company-details {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.footer-legal-links {
  margin-top: 1rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Responsividade */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-social,
  .contact-list li {
    justify-content: center;
  }

  .footer-legal-block {
    padding-top: 2rem;
  }
}

.footer-hours {
  display: inline-flex;
  align-itens: center;
  align-items: center;
  gap: 4px;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;

  /* Animação de Pulso */
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* Tooltip (Texto que aparece ao passar o mouse) */
.tooltip-text {
  width: 120px;
  background-color: #20ba5a;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 70px; /* Posiciona à esquerda do botão */
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-family: sans-serif;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%; /* Seta apontando para a direita */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #20ba5a;
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Keyframes da Animação */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ajuste para Mobile (botão menor e mais próximo da borda) */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  /* Esconder tooltip no mobile para não atrapalhar */
  .tooltip-text {
    display: none;
  }
}
