/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Fonte local personalizada */
@font-face {
  font-family: 'SwilyBright';
  src: url('SwilyBright-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* Definindo as variáveis de cor para uso fácil */
:root {
  --velvet-red: #741125;
  --soft-nude: #d6c3bd;
  --gold-blush: #d4a373;
  --silk-rose: #ebd9d0;
  --deep-black: #212020;
}

/* Estilos de fonte personalizados */
.font-serif {
  font-family: 'SwilyBright', serif !important;
  font-style: italic;
}

.font-sans {
  font-family: 'Albert Sans', sans-serif;
}

/* Aplicando cores no Tailwind */
.bg-velvet-red {
  background-color: var(--velvet-red);
}
.text-velvet-red {
  color: var(--velvet-red);
}

.bg-soft-nude {
  background: var(--soft-nude),
    radial-gradient(
      circle at 30% 40%,
      rgba(212, 163, 115, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(235, 217, 208, 0.2) 0%,
      transparent 50%
    );
  position: relative;
}

.bg-soft-nude::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(116, 17, 37, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 163, 115, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(235, 217, 208, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.text-soft-nude {
  color: var(--soft-nude);
}

.bg-gold-blush {
  background-color: var(--gold-blush);
}
.text-gold-blush {
  color: var(--gold-blush);
}

.bg-silk-rose {
  background-color: var(--silk-rose);
}
.text-silk-rose {
  color: var(--silk-rose);
}

.bg-deep-black {
  background-color: var(--deep-black);
}
.text-deep-black {
  color: var(--deep-black);
}

/* Estilo de Botão Primário */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silk-rose);
  background-color: var(--velvet-red);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Estilo específico para o hero com fundo escuro */
.hero .btn-primary {
  background: linear-gradient(135deg, var(--velvet-red), #a5172e);
  color: var(--silk-rose);
  box-shadow: 0 6px 20px rgba(116, 17, 37, 0.4), 0 0 20px rgba(116, 17, 37, 0.2);
  border: 1px solid rgba(235, 217, 208, 0.3);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(116, 17, 37, 0.5), 0 0 25px rgba(116, 17, 37, 0.3);
  filter: brightness(1.15);
}

/* Responsividade mobile para botões */
@media (max-width: 640px) {
  .btn-primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero .btn-primary {
    width: 100%;
    max-width: calc(100vw - 1rem);
  }
  .cta-button {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    max-width: calc(100vw - 3rem);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
  }

  .cta-button i,
  .cta-button svg {
    display: none;
  }
}

/* Customização do Swiper (Carrossel) - Geral */
.swiper-button-next,
.swiper-button-prev {
  color: var(--velvet-red) !important;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--velvet-red) !important;
}

/* Reset específico para evitar conflitos com outros swipers */
.swiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Albert Sans', sans-serif;
  color: var(--deep-black);
  background-color: var(--silk-rose);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utilitários de cor */
.text-gradient-gold {
  background: linear-gradient(90deg, var(--gold-blush), #e5b982);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-rose {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-velvet {
  background: linear-gradient(90deg, var(--velvet-red), #a5172e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.fade-in-up {
  animation: fade-in-up 1s ease-out forwards;
  opacity: 0;
}

.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}

/* Enhanced section header styling */
.fade-in-up h2 {
  position: relative;
}

.fade-in-up h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--velvet-red),
    transparent
  );
  opacity: 0.3;
}

/* Enhanced decorative line */
.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--velvet-red),
    var(--gold-blush),
    var(--velvet-red)
  );
  margin: 16px auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.decorative-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced section introduction */
.fade-in-up p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  letter-spacing: 0.3px;
}

/* ANIMAÇÕES ADICIONAIS */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 1700px) {
  .bg-adjust-xl {
    background-position: center 25%;
  }
}

@media (min-width: 1900px) {
  .bg-adjust-xl {
    background-position: center 20%;
  }
}

/* Mobile Hero Image Optimization - Tailwind controlled positioning */
@media (max-width: 767px) {
  .hero {
    /* Fixed height for mobile to prevent image distortion */
    height: 900px;
    min-height: 900px;
    max-height: 900px;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    height: 700px;
    min-height: 700px;
    max-height: 700px;
  }
}

.bg-gradient-radial {
  background: radial-gradient(
    circle at 30% 50%,
    var(--silk-rose) 0%,
    var(--soft-nude) 40%,
    var(--silk-rose) 100%
  );
}

.texture-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(116, 17, 37, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(212, 163, 115, 0.02) 0%,
      transparent 50%
    );
}

.logo-container {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: translateY(-3px);
}

.filter-soft {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.text-wrapper {
  position: relative;
  display: inline-block;
}

.cta-sensual {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--velvet-red), #8d1530);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(116, 17, 37, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-sensual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.cta-sensual:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(116, 17, 37, 0.4);
}

.cta-sensual:hover::before {
  transform: translateX(100%);
}

.cta-icon,
.cta-arrow {
  font-size: 1.3rem;
}

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

.cta-sensual:hover .cta-arrow {
  transform: translateX(5px);
}

.quote-container {
  position: relative;
  padding-left: 60px;
}

.quote-mark {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--velvet-red);
  opacity: 0.3;
  font-family: 'SwilyBright', serif;
}

.image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.3), transparent);
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(116, 17, 37, 0.1)
  );
  border-radius: 20px;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--velvet-red);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* SEÇÃO VÍDEO */
.bg-gradient-soft {
  background: linear-gradient(
    180deg,
    var(--silk-rose) 0%,
    #f5ede8 50%,
    var(--silk-rose) 100%
  );
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(
    circle at 0 0,
    transparent 0,
    var(--soft-nude) 40px
  );
  opacity: 0.03;
}

.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-blush), var(--velvet-red));
  border-radius: 3px;
  margin: 20px auto;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(116, 17, 37, 0.2), transparent);
  filter: blur(60px);
}

.video-wrapper {
  position: relative;

  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* VIDEO LAZY LOADING */
.video-lazy-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-lazy-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.video-lazy-container:focus {
  outline: 3px solid var(--velvet-red);
  outline-offset: 4px;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: var(--deep-black);
  overflow: hidden;
  border-radius: 20px;
}

.video-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(116, 17, 37, 0.1) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.video-lazy-container:hover .video-thumbnail::after {
  opacity: 1;
}

.video-thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.video-lazy-container:hover .video-thumbnail-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--velvet-red), #a5172e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(116, 17, 37, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-button::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--gold-blush), var(--velvet-red));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.video-lazy-container:hover .video-play-button::before {
  opacity: 1;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(116, 17, 37, 0.6);
}

.play-icon {
  width: 28px;
  height: 28px;
  color: white;
  margin-left: 3px; /* Visual centering adjustment */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.play-icon svg {
  width: 100%;
  height: 100%;
}

.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(33, 32, 32, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  color: white;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-loading.hidden {
  display: none;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--velvet-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-loading span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft-nude);
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Video loaded state */
.video-lazy-container.video-loaded {
  cursor: default;
}

.video-lazy-container.video-loaded:hover {
  transform: none;
}

/* Responsive adjustments for video lazy loading */
@media (max-width: 768px) {
  .video-play-button {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 24px;
    height: 24px;
  }

  .video-loading {
    padding: 20px;
  }

  .loading-spinner {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .video-play-button {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 20px;
    height: 20px;
  }

  .video-loading {
    padding: 16px;
  }

  .video-loading span {
    font-size: 0.8rem;
  }
}

/* BARRA DE CONFIANÇA APRIMORADA */
.bg-gradient-velvet-deep {
  background: linear-gradient(
    135deg,
    var(--velvet-red) 0%,
    #4a0e1d 25%,
    var(--deep-black) 50%,
    #4a0e1d 75%,
    var(--velvet-red) 100%
  );
}

.trust-pattern {
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(212, 163, 115, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(116, 17, 37, 0.1) 0%,
      transparent 30%
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(212, 163, 115, 0.05) 50%,
      transparent 60%
    );
  background-size: 200px 200px, 150px 150px, 100% 100%;
  animation: trust-pattern-move 20s linear infinite;
}

@keyframes trust-pattern-move {
  0% {
    background-position: 0% 0%, 100% 100%, 0% 0%;
  }
  100% {
    background-position: 100% 100%, 0% 0%, 100% 100%;
  }
}

/* BARRA DE CONFIANÇA SEXY */
.trust-bar-sexy {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--velvet-red) 0%,
    #4a0d1a 25%,
    var(--velvet-red) 50%,
    #2a070f 75%,
    var(--velvet-red) 100%
  );
  background-size: 400% 400%;
  animation: seductive-gradient 8s ease-in-out infinite;
}

.bg-gradient-seductive {
  background: linear-gradient(
    135deg,
    var(--velvet-red) 0%,
    #4a0d1a 25%,
    var(--velvet-red) 50%,
    #2a070f 75%,
    var(--velvet-red) 100%
  );
}

@keyframes seductive-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-pulse-slow {
  animation: pulse-sensual 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-sensual {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.trust-item-sexy {
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.trust-item-sexy:hover {
  transform: translateY(-12px) scale(1.05);
}

.trust-card-sexy {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 163, 115, 0.5);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  overflow: hidden;
  transition: all 0.6s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.trust-card-sexy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 163, 115, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.trust-item-sexy:hover .trust-card-sexy::before {
  left: 100%;
}

.trust-item-sexy:hover .trust-card-sexy {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(212, 163, 115, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 163, 115, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-icon-wrapper-sexy {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.4),
    rgba(116, 17, 37, 0.6),
    rgba(212, 163, 115, 0.4)
  );
  border: 2px solid rgba(212, 163, 115, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  backdrop-filter: blur(15px);
  transition: all 0.6s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(116, 17, 37, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.icon-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(
    45deg,
    var(--gold-blush),
    var(--velvet-red),
    var(--gold-blush),
    var(--velvet-red)
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: rotate-sensual 4s linear infinite;
  filter: blur(2px);
}

@keyframes rotate-sensual {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.trust-item-sexy:hover .icon-glow {
  opacity: 0.8;
}

.trust-item-sexy:hover .trust-icon-wrapper-sexy {
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.6),
    rgba(116, 17, 37, 0.8),
    rgba(212, 163, 115, 0.6)
  );
  border-color: rgba(212, 163, 115, 0.8);
  box-shadow: 0 15px 40px rgba(116, 17, 37, 0.5),
    0 0 20px rgba(212, 163, 115, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.trust-icon-sexy {
  width: 36px;
  height: 36px;
  color: var(--gold-blush);
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trust-item-sexy:hover .trust-icon-sexy {
  color: white;
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.trust-text-sexy {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  transition: all 0.6s ease;
  font-family: 'SwilyBright', serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.trust-item-sexy:hover .trust-text-sexy {
  color: var(--gold-blush);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

/* Responsividade sexy */
@media (max-width: 768px) {
  .trust-card-sexy {
    padding: 28px 20px;
  }

  .trust-icon-wrapper-sexy {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .trust-icon-sexy {
    width: 32px;
    height: 32px;
  }

  .trust-text-sexy {
    font-size: 1rem;
  }
}

/* DEPOIMENTOS */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Swiper específico para depoimentos */
.testimonials-swiper {
  width: 100%;
  padding: 20px 0 60px 0;
}

.testimonials-swiper .swiper-wrapper {
  align-items: center;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Controles do Swiper para depoimentos */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: var(--velvet-red) !important;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background-color: var(--velvet-red);
  color: white !important;
  transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 700;
}

.testimonials-swiper .swiper-pagination {
  bottom: 10px !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(116, 17, 37, 0.3);
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--velvet-red) !important;
}

/* Responsividade específica para depoimentos */
@media (max-width: 768px) {
  .testimonials-container {
    padding: 0 15px;
  }

  .testimonials-swiper {
    padding: 15px 0 50px 0;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none !important; /* Oculta as setas de navegação em dispositivos móveis */
  }
}

/* SINTOMAS - VERSÃO APRIMORADA COM UX/UI MELHORADO */
.symptom-card-new {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(116, 17, 37, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(116, 17, 37, 0.08);
}

.symptom-card-new:hover {
  border-color: rgba(116, 17, 37, 0.25);
  box-shadow: 0 12px 40px rgba(116, 17, 37, 0.15);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
}

.symptom-card-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  position: relative;
  padding-right: 60px; /* Espaço reservado para o checkbox */
}

.symptom-icon-new {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--velvet-red), #8b1c32);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(116, 17, 37, 0.25);
  position: relative;
}

.symptom-icon-new::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transition: opacity 0.3s ease;
}

.symptom-card-new:hover .symptom-icon-new {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 8px 30px rgba(116, 17, 37, 0.35);
}

.symptom-icon-new svg {
  width: 20px;
  height: 20px;
}

.symptom-icon-new i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.symptom-text-new {
  flex: 1;
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--deep-black);
  padding-top: 4px;
  margin-right: 12px;
  font-weight: 400;
}

.symptom-text-new b {
  color: var(--velvet-red);
  font-weight: 600;
  font-size: 1.02em;
  letter-spacing: -0.01em;
}

.symptom-check {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.symptom-checkbox {
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--velvet-red);
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symptom-card-new:hover .symptom-checkbox {
  background: var(--velvet-red);
  border-color: var(--velvet-red);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(116, 17, 37, 0.3);
}

.symptom-card-new:hover .symptom-checkbox::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Estados selecionados - permanecem visíveis */
.symptom-card-new.selected {
  background: linear-gradient(
    135deg,
    rgba(116, 17, 37, 0.12),
    rgba(212, 163, 115, 0.12)
  );
  border-color: var(--velvet-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(116, 17, 37, 0.2);
}

.symptom-card-new.selected .symptom-checkbox {
  background: var(--velvet-red);
  border-color: var(--velvet-red);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(116, 17, 37, 0.3);
}

.symptom-card-new.selected .symptom-checkbox::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symptom-card-new.selected .symptom-icon-new {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(116, 17, 37, 0.35);
}

/* Responsive aprimorado para mobile */
@media (max-width: 768px) {
  .symptom-card-content {
    padding: 18px 16px;
    gap: 14px;
    padding-right: 55px; /* Espaço reservado para o checkbox em mobile */
  }

  .symptom-icon-new {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .symptom-icon-new svg {
    width: 20px;
    height: 20px;
  }

  .symptom-text-new {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-right: 10px;
  }

  .symptom-checkbox {
    width: 22px;
    height: 22px;
    border-width: 2px;
  }

  .symptom-check {
    right: 16px;
  }

  .symptom-card-new:hover {
    transform: translateY(-2px);
  }

  .symptom-card-new:hover .symptom-icon-new {
    transform: scale(1.05) rotate(1deg);
  }
}

@media (max-width: 480px) {
  .symptom-card-content {
    padding: 16px 14px;
    gap: 12px;
    padding-right: 50px;
  }

  .symptom-icon-new {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .symptom-icon-new svg {
    width: 18px;
    height: 18px;
  }

  .symptom-text-new {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .symptom-checkbox {
    width: 20px;
    height: 20px;
  }
  .symptom-check {
    right: 14px;
  }
}

/* Extra responsividade para telas muito pequenas */
@media (max-width: 380px) {
  .symptom-card-content {
    padding: 14px 12px;
    padding-right: 48px;
  }

  .symptom-icon-new {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .symptom-icon-new svg {
    width: 16px;
    height: 16px;
  }

  .symptom-text-new {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-right: 6px;
  }

  .symptom-checkbox {
    width: 18px;
    height: 18px;
  }

  .symptom-check {
    right: 12px;
  }
}

/* MELHORIAS NO GRID DE SINTOMAS */
.symptom-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .symptom-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .symptom-grid-enhanced {
    gap: 14px;
  }
}

/* SYMPTOM COUNTER - Beautiful and minimal */
.symptom-counter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.symptom-counter {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(116, 17, 37, 0.1);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(116, 17, 37, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.symptom-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--velvet-red),
    var(--gold-blush),
    var(--velvet-red)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.symptom-counter.active::before {
  opacity: 1;
}

.counter-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Albert Sans', sans-serif;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--velvet-red);
  transition: all 0.3s ease;
}

.counter-text {
  font-size: 1rem;
  color: var(--deep-black);
  font-weight: 500;
}

.counter-progress-bar {
  width: 200px;
  height: 6px;
  background: rgba(116, 17, 37, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.counter-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--velvet-red), var(--gold-blush));
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-message {
  font-size: 0.95rem;
  color: var(--velvet-red);
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  font-family: 'Albert Sans', sans-serif;
}

.counter-message.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}

/* Counter animations */
.counter-bounce {
  animation: counterBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes counterBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== SEÇÃO 6: MITO VS VERDADE - GOLDEN RATIO PERFECT LAYOUT ===== */

/* Golden Ratio CSS Variables - Base de 8px para pixel perfect */
:root {
  --golden-ratio: 1.618;
  --base-unit: 24px; /* 8px * 3 = 24px base */

  /* Golden Ratio Calculations - Pixel Perfect */
  --gr-xs: calc(var(--base-unit) * 0.618); /* 14.83px ≈ 15px */
  --gr-sm: var(--base-unit); /* 24px */
  --gr-md: calc(var(--base-unit) * 1.618); /* 38.83px ≈ 39px */
  --gr-lg: calc(var(--base-unit) * 2.618); /* 62.83px ≈ 63px */
  --gr-xl: calc(var(--base-unit) * 4.236); /* 101.66px ≈ 102px */
  --gr-2xl: calc(var(--base-unit) * 6.854); /* 164.5px ≈ 165px */

  /* Layout Specific */
  --section6-max-width: calc(var(--base-unit) * 52.36); /* 1256.64px */
  --card-padding: var(--gr-lg); /* 63px */
  --card-gap: var(--gr-md); /* 39px */
  --photo-width: calc(var(--base-unit) * 16.18); /* 388.32px */
  --photo-height: calc(var(--base-unit) * 20.98); /* 503.52px */
}

/* Main Container - Golden Ratio Grid */
.myth-truth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-gap);
  max-width: var(--section6-max-width);
  margin: 0 auto;
  padding: 0 var(--gr-sm);
}

/* Cards - Golden Ratio Perfect */
.myth-card,
.truth-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--gr-sm);
  padding: var(--card-padding);
  border: 2px solid rgba(116, 17, 37, 0.08);
  box-shadow: 0 var(--gr-sm) var(--gr-xl) rgba(116, 17, 37, 0.1),
    0 calc(var(--gr-md) * 1.2) calc(var(--gr-2xl) * 0.8) rgba(116, 17, 37, 0.06);
  transition: all 0.618s cubic-bezier(0.618, 0, 0.382, 1);
  position: relative;
  overflow: hidden;
}

.myth-card::before,
.truth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--gr-xs) * 0.382); /* 5.67px ≈ 6px */
  opacity: 0;
  transition: opacity 0.618s ease;
}

.myth-card::before {
  background: linear-gradient(
    90deg,
    var(--velvet-red),
    rgba(116, 17, 37, 0.5),
    var(--velvet-red)
  );
}

.truth-card::before {
  background: linear-gradient(
    90deg,
    var(--gold-blush),
    rgba(212, 163, 115, 0.5),
    var (--gold-blush)
  );
}

.myth-card:hover,
.truth-card:hover {
  transform: translateY(calc(var(--gr-xs) * -0.618));
  box-shadow: 0 calc(var(--gr-md) * 1.2) calc(var(--gr-2xl) * 0.618)
      rgba(116, 17, 37, 0.15),
    0 var(--gr-lg) calc(var(--gr-2xl) * 1.2) rgba(116, 17, 37, 0.08);
}

.myth-card:hover::before,
.truth-card:hover::before {
  opacity: 1;
}

/* Badge System - Golden Ratio */
.badge {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--gr-xs) * 0.618); /* 9.17px ≈ 9px */
  padding: calc(var(--gr-xs) * 0.618) var(--gr-md);
  border-radius: calc(var(--gr-sm) * 0.618); /* 14.83px ≈ 15px */
  font-size: calc(var(--gr-xs) * 0.9); /* 13.35px ≈ 13px */
  font-weight: 600;
  margin-bottom: var(--gr-md);
  box-shadow: 0 calc(var(--gr-xs) * 0.382) var(--gr-sm) rgba(0, 0, 0, 0.15);
  transition: all 0.382s ease;
}

.myth-badge {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.truth-badge {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
}

.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 calc(var(--gr-xs) * 0.618) calc(var(--gr-md) * 0.8)
    rgba(0, 0, 0, 0.2);
}

/* Typography - Golden Ratio Scale */
.myth-card h3,
.truth-card h3 {
  font-size: calc(var(--gr-md) * 0.85); /* 33px */
  font-weight: 700;
  line-height: 1.272; /* Golden ratio inverse */
  color: var(--deep-black);
  margin-bottom: var(--gr-sm);
}

/* Quote Box - Perfect Golden Proportions */
.quote-box {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(116, 17, 37, 0.06),
    rgba(116, 17, 37, 0.03)
  );
  border-left: calc(var(--gr-xs) * 0.382) solid var(--velvet-red); /* 5.67px ≈ 6px */
  border-radius: 0 var(--gr-xs) var(--gr-xs) 0;
  padding: var(--gr-md);
  margin-top: var(--gr-sm);
  backdrop-filter: blur(10px);
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: calc(var(--gr-xs) * -0.618); /* -9.17px */
  left: var(--gr-sm);
  font-size: calc(var(--gr-lg) * 1.2); /* 75.4px */
  color: var(--velvet-red);
  opacity: 0.25;
  font-family: serif;
  line-height: 1;
}

.quote-icon {
  position: absolute;
  top: calc(var(--gr-xs) * -0.382); /* -5.67px */
  left: var(--gr-sm);
  width: var(--gr-sm);
  height: var(--gr-sm);
  color: var(--velvet-red);
  opacity: 0.7;
}

.quote-text {
  font-family: 'Albert Sans', serif;

  font-style: italic;
  color: var(--velvet-red);
  margin: 0;
  padding-left: calc(var(--gr-sm) * 0.618); /* 14.83px */
}

/* Truth Content Box */
.truth-content-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--gr-xs);
  padding: var(--gr-sm);
  margin-top: var(--gr-sm);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 163, 115, 0.2);
}

.truth-content-box p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: var(--gr-sm);
}

/* Melhorias específicas para mobile na seção 6 */
@media (max-width: 768px) {
  .explanation-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .explanation-card h4 {
    margin-bottom: 10px;
  }

  /* Melhorando espaçamento e legibilidade */
  .myth-card,
  .truth-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .reveal-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .reveal-icon-wrapper i {
    width: 22px;
    height: 22px;
  }
}

/* Highlight Box - Golden Ratio */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: var(--gr-xs);
  padding: var(--gr-sm);
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.15),
    rgba(212, 163, 115, 0.08)
  );
  border-radius: var(--gr-xs);
  border-left: calc(var(--gr-xs) * 0.382) solid var(--gold-blush);
  margin-top: var(--gr-sm);
}

.highlight-box i {
  flex-shrink: 0;
  width: calc(var(--gr-sm) * 0.8); /* 19.2px */
  height: calc(var(--gr-sm) * 0.8);
  color: var(--gold-blush);
}

.highlight-box p {
  margin: 0;
  font-size: calc(var(--gr-sm) * 0.7); /* 16.8px */
  font-weight: 500;
  color: var(--deep-black);
  line-height: 1.618;
}

/* Explanation Section - Golden Ratio Perfect */

/* Reveal Box - Golden Ratio */
.reveal-box {
  display: flex;
  align-items: flex-start;
  gap: var(--gr-md);
  padding: var(--gr-lg);
  background: white;
  border-radius: var(--gr-sm);
  border: 2px solid rgba(116, 17, 37, 0.15);
  margin-top: var(--gr-sm);
  box-shadow: 0 calc(var(--gr-xs) * 0.618) calc(var(--gr-md) * 1.5)
    rgba(116, 17, 37, 0.12);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.reveal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--velvet-red),
    #c49991,
    var(--velvet-red)
  );
  border-radius: var(--gr-sm) var(--gr-sm) 0 0;
}

.reveal-icon-wrapper {
  width: calc(var(--gr-lg) * 1.2);
  height: calc(var(--gr-lg) * 1.2);
  background: linear-gradient(135deg, var(--velvet-red), #8b1c32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 calc(var(--gr-xs) * 0.618) var(--gr-md) rgba(116, 17, 37, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  position: relative;
}

.reveal-icon-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(196, 153, 145, 0.3),
    rgba(116, 17, 37, 0.3)
  );
  border-radius: 50%;
  z-index: -1;
}

.reveal-icon-wrapper i {
  width: calc(var(--gr-sm) * 1.1); /* 26.4px */
  height: calc(var(--gr-sm) * 1.1);
}

.reveal-content {
  flex: 1;
  padding-top: calc(var(--gr-xs) * 0.5);
}

.reveal-content h5 {
  font-weight: 700;
  color: var(--velvet-red);
  margin-bottom: calc(var(--gr-xs) * 0.8);
  font-size: calc(var(--gr-sm) * 0.85);
  text-shadow: 0 1px 2px rgba(116, 17, 37, 0.1);
  letter-spacing: 0.02em;
}

.reveal-content p {
  color: rgba(0, 0, 0, 0.85);
  font-size: calc(var(--gr-sm) * 0.75);
  line-height: 1.618;
  margin: 0;
  font-weight: 500;
}

/* Responsive - Golden Ratio Scaling */
@media (max-width: 1024px) {
  :root {
    --base-unit: 21px; /* 24px * 0.875 */
  }

  .myth-truth-container {
    grid-template-columns: 1fr;
    gap: var(--gr-lg);
  }

  .photo-container {
    max-width: calc(var(--photo-width) * 0.85);
  }
}

@media (max-width: 768px) {
  :root {
    --base-unit: 18px; /* 24px * 0.75 */
  }

  .card-padding {
    padding: var(--gr-md);
  }

  .reveal-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gr-sm);
  }

  /* Melhorias para legibilidade na seção Mitos e Verdades */
  .myth-card,
  .truth-card {
    padding: var(--gr-sm);
    margin-bottom: 20px;
  }

  .photo-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .photo-container img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .truth-content-box {
    padding: var(--gr-sm);
  }

  .truth-content-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .highlight-box {
    padding: 15px;
    gap: 10px;
  }

  .highlight-box p {
    font-size: 16px;
    line-height: 1.5;
  }

  .explanation-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --base-unit: 15px; /* Perfect golden ratio scale: 24px / 1.618 */
  }

  .myth-card h3,
  .truth-card h3 {
    font-size: calc(var(--gr-md) * 0.75); /* Proportional scaling */
  }

  /* Ajustes adicionais para telas muito pequenas - Mitos e Verdades */
  .myth-card h3,
  .truth-card h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .badge {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .quote-text {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 10px;
  }

  .quote-box {
    padding: 15px;
    margin-top: 10px;
  }

  .truth-content-box {
    padding: 15px;
    margin-top: 10px;
  }

  .highlight-box {
    padding: 12px;
    margin-top: 10px;
  }

  .reveal-box {
    padding: 20px 15px;
    gap: 15px;
    margin-top: 20px;
  }

  .reveal-content h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .reveal-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* DIVISOR */
.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 48px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--soft-nude),
    transparent
  );
}

.divider-icon {
  font-size: 1.5rem;
  color: var(--gold-blush);
}

/* TRANSFORMAÇÃO */
.bg-gradient-velvet-dark {
  background: linear-gradient(
    180deg,
    #1a0508 0%,
    var(--deep-black) 50%,
    #1a0508 100%
  );
}

/* SEÇÃO 7: TRANSFORMAÇÃO - Layout com texto à esquerda e espaço para foto */
.transformation-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.transformation-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transformation-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 163, 115, 0.15);
  position: relative;
}

.transformation-list-item:last-child {
  border-bottom: none;
}

.transformation-list-item:hover {
  transform: translateX(6px);
  padding-left: 8px;
}

.transformation-bullet {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, var(--gold-blush), var(--velvet-red));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 8px rgba(212, 163, 115, 0.3);
}

.transformation-list-item p {
  font-size: 1.05rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.transformation-photo-space {
  width: 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 20px;
}

.transformation-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.transformation-photo-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.transformation-list-item strong {
  color: var(--gold-blush);
  font-weight: 600;
}

/* Item Especial - Destaque */
.transformation-highlight {
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.15),
    rgba(116, 17, 37, 0.15)
  );
  border: 1px solid rgba(212, 163, 115, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.transformation-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.2);
  border-color: rgba(212, 163, 115, 0.5);
}

.transformation-crown {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.transformation-highlight-content {
  flex: 1;
}

.transformation-highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-blush);
  margin-bottom: 8px;
  font-family: 'SwilyBright', serif;
}

.transformation-highlight-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CTA Integrado */
.transformation-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-blush), var(--velvet-red));
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.transformation-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.transformation-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
}

.transformation-cta:hover::before {
  left: 100%;
}

.transformation-cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.transformation-cta:hover .transformation-cta-arrow {
  transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 1024px) {
  .transformation-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .transformation-photo-space {
    width: 100%;
    max-width: 350px;
    height: 400px;
    margin: 0 auto;
    position: static;
  }
}

@media (max-width: 768px) {
  .transformation-items {
    gap: 10px;
  }

  .transformation-list-item {
    gap: 12px;
    padding: 10px 0;
  }

  .transformation-list-item p {
    font-size: 1rem;
    line-height: 1.4;
  }
  .transformation-photo-space {
    height: 350px;
  }

  .transformation-highlight {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }

  .transformation-highlight-title {
    font-size: 1.3rem;
  }

  .transformation-highlight-text {
    font-size: 1rem;
  }
  .transformation-cta {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    max-width: calc(100vw - 3rem);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    white-space: nowrap;
  }

  .transformation-cta-text {
    line-height: 1.3;
  }

  .transformation-cta-arrow {
    font-size: 1.1rem;
  }
}

/* MANIFESTO */
.manifesto-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1526048598468-18ac49b95383?q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(116, 17, 37, 0.9),
    rgba(33, 32, 32, 0.95)
  );
}

.manifesto-title {
  font-family: 'SwilyBright', serif;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 48px;
}

.manifesto-text-1,
.manifesto-text-3 {
  font-size: clamp(4rem, 12vw, 10rem);
  background: linear-gradient(90deg, #fff, var(--silk-rose), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
  animation: glow 3s ease-in-out infinite;
}

.manifesto-text-2 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--silk-rose);
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.manifesto-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-blush);
  animation: bounce 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* PARA QUEM É */
.section-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(116, 17, 37, 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(116, 17, 37, 0.15);
  border-color: rgba(116, 17, 37, 0.2);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  background: linear-gradient(135deg, var(--velvet-red), #a5172e);
}

.audience-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--deep-black);
  margin: 0;
}

/* O QUE ACESSA */
.intro-box {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
}

.intro-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--deep-black);
  margin: 0;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.access-item:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  transform: translateX(8px);
}

.access-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.access-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 8px;
}

.access-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(33, 32, 32, 0.8);
  margin: 0;
}

/* FASES */
.phases-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phase-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.phase-1 {
  background: linear-gradient(135deg, #fae5ff, #f3d5ff);
  border-color: rgba(147, 51, 234, 0.2);
}

.phase-2 {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
  border-color: rgba(244, 63, 94, 0.2);
}

.phase-3 {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  border-color: rgba(251, 146, 60, 0.2);
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.phase-image-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.phase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.1));
}

.phase-title {
  font-family: 'SwilyBright', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.phase-1 .phase-title {
  background: linear-gradient(90deg, #9333ea, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phase-2 .phase-title {
  background: linear-gradient(90deg, #f43f5e, #fb7185);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phase-3 .phase-title {
  background: linear-gradient(90deg, #fb923c, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phase-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(33, 32, 32, 0.8);
  margin: 0;
}

/* ACOMPANHAMENTO */
.secao-acompanhamento {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #1a0508 0%,
    var(--deep-black) 50%,
    #1a0508 100%
  );
  color: white;
  overflow: hidden;
}

.padrao-acompanhamento {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(212, 163, 115, 0.03) 35px,
    rgba(212, 163, 115, 0.03) 70px
  );
}

.imagem-acompanhamento-container {
  position: relative;
}

.aura-imagem {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.3), transparent);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.moldura-imagem {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 24px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.imagem-acompanhamento {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.brilho-imagem {
  position: absolute;
  inset: 12px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  border-radius: 16px;
  transform: translateX(-100%);
  transition: transform 0.8s;
}

.moldura-imagem:hover .brilho-imagem {
  transform: translateX(100%);
}

.selo-mentora {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--velvet-red), var(--gold-blush));
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: float-badge 3s ease-in-out infinite;
}

.cartao-vidro {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cartao-vidro:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.cartao-vidro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.recursos-suporte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.item-suporte {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.2),
    rgba(116, 17, 37, 0.2)
  );
  border: 1px solid rgba(212, 163, 115, 0.3);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.item-suporte:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.3),
    rgba(116, 17, 37, 0.3)
  );
  transform: translateY(-2px);
}

.icone-suporte {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-blush), var(--velvet-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.item-suporte span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* BÔNUS */
.secao-bonus {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    var(--silk-rose) 0%,
    #f5ede8 50%,
    var(--silk-rose) 100%
  );
  overflow: hidden;
}

.padrao-bonus {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(212, 163, 115, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(116, 17, 37, 0.1) 0%,
      transparent 50%
    );
}

.grade-bonus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cartao-bonus {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.cartao-bonus:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(116, 17, 37, 0.15);
  border-color: rgba(212, 163, 115, 0.4);
}

.brilho-bonus {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cartao-bonus:hover .brilho-bonus {
  opacity: 1;
}

.icone-bonus-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: white;
  transition: transform 0.3s ease;
}

.cartao-bonus:hover .icone-bonus-container {
  transform: scale(1.1) rotate(5deg);
}

.titulo-bonus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 16px;
}

.descricao-bonus {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(33, 32, 32, 0.8);
  margin: 0;
}

/* Destacar bônus especial */
.cartao-bonus-destaque {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.1),
    rgba(245, 158, 11, 0.05)
  );
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.brilho-bonus-especial {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cartao-bonus-destaque:hover .brilho-bonus-especial {
  opacity: 1;
}

.titulo-bonus-destaque {
  font-size: 1.5rem;
  font-weight: 700;
  color: var (--deep-black);
  margin-bottom: 16px;
}

/* BACKGROUND TEMÁTICO SEÇÃO BÔNUS */
.bonus-background {
  position: relative;
}

.bonus-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Padrão de presentes/caixas */ radial-gradient(
      circle at 20% 20%,
      rgba(251, 146, 60, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(244, 63, 94, 0.05) 0%,
      transparent 65%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(168, 85, 247, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(34, 197, 94, 0.04) 0%,
      transparent 25%
    ),
    /* Padrão de estrelas/sparkles */
      repeating-conic-gradient(
        from 0deg at 15% 15%,
        transparent 0deg,
        rgba(251, 146, 60, 0.03) 2deg,
        transparent 4deg
      ),
    repeating-conic-gradient(
      from 30deg at 85% 25%,
      transparent 0deg,
      rgba(244, 63, 94, 0.03) 2deg,
      transparent 4deg
    ),
    repeating-conic-gradient(
      from 60deg at 30% 85%,
      transparent 0deg,
      rgba(168, 85, 247, 0.02) 2deg,
      transparent 4deg
    ),
    repeating-conic-gradient(
      from 90deg at 75% 75%,
      transparent 0deg,
      rgba(34, 197, 94, 0.03) 2deg,
      transparent 4deg
    ),
    /* Padrão geométrico sutil de fitas/laços */
      linear-gradient(
        45deg,
        transparent 48%,
        rgba(251, 146, 60, 0.02) 49%,
        rgba(251, 146, 60, 0.02) 51%,
        transparent 52%
      ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(244, 63, 94, 0.02) 49%,
      rgba(244, 63, 94, 0.02) 51%,
      transparent 52%
    );

  background-size: 200px 200px, 180px 180px, 160px 160px, 220px 220px,
    120px 120px, 140px 140px, 100px 100px, 130px 130px, 80px 80px, 90px 90px;

  background-position: 0 0, 100px 50px, 200px 100px, 50px 150px, 25px 25px,
    175px 75px, 75px 175px, 125px 125px, 0 0, 50px 50px;

  animation: bonus-pattern-float 20s linear infinite;
  opacity: 0.6;
  z-index: 1;
}

.bonus-background::after {
  content: '🎁';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 1.5rem;
  opacity: 0.1;
  animation: bonus-icon-float-1 8s ease-in-out infinite;
  z-index: 1;
}

/* Elementos de presente flutuantes */
.bonus-background .bonus-floating-gifts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bonus-background .bonus-floating-gifts::before {
  content: '✨';
  position: absolute;
  top: 15%;
  right: 10%;
  font-size: 1.2rem;
  opacity: 0.15;
  animation: bonus-icon-float-2 6s ease-in-out infinite;
}

.bonus-background .bonus-floating-gifts::after {
  content: '🏆';
  position: absolute;
  bottom: 20%;
  left: 8%;
  font-size: 1.3rem;
  opacity: 0.12;
  animation: bonus-icon-float-3 10s ease-in-out infinite;
}

/* Elementos adicionais de bônus */
.bonus-extra-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bonus-extra-elements::before {
  content: '💎';
  position: absolute;
  top: 60%;
  right: 15%;
  font-size: 1.1rem;
  opacity: 0.1;
  animation: bonus-icon-float-4 7s ease-in-out infinite;
}

.bonus-extra-elements::after {
  content: '🌟';
  position: absolute;
  bottom: 30%;
  right: 5%;
  font-size: 1rem;
  opacity: 0.12;
  animation: bonus-icon-float-5 9s ease-in-out infinite;
}

/* Animações para os elementos de bônus */
@keyframes bonus-pattern-float {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(10px) translateY(-5px);
  }
  50% {
    transform: translateX(5px) translateY(-10px);
  }
  75% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes bonus-icon-float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.15;
  }
}

@keyframes bonus-icon-float-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.15;
  }
  33% {
    transform: translateY(-10px) rotate(3deg) scale(1.1);
    opacity: 0.2;
  }
  66% {
    transform: translateY(-5px) rotate(-2deg) scale(0.95);
    opacity: 0.18;
  }
}

@keyframes bonus-icon-float-3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.12;
  }
  40% {
    transform: translateY(-8px) rotate(-3deg);
    opacity: 0.16;
  }
  80% {
    transform: translateY(-12px) rotate(2deg);
    opacity: 0.14;
  }
}

@keyframes bonus-icon-float-4 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  30% {
    transform: translateY(-6px) rotate(4deg) scale(1.05);
    opacity: 0.14;
  }
  70% {
    transform: translateY(-10px) rotate(-2deg) scale(0.98);
    opacity: 0.12;
  }
}

@keyframes bonus-icon-float-5 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.12;
  }
  25% {
    transform: translateY(-4px) rotate(2deg) scale(1.08);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
    opacity: 0.14;
  }
  75% {
    transform: translateY(-6px) rotate(3deg) scale(0.96);
    opacity: 0.13;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .bonus-background::before {
    background-size: 120px 120px, 100px 100px, 90px 90px, 130px 130px, 70px 70px,
      80px 80px, 60px 60px, 75px 75px, 50px 50px, 55px 55px;
  }

  .bonus-background::after,
  .bonus-background .bonus-floating-gifts::before,
  .bonus-background .bonus-floating-gifts::after,
  .bonus-extra-elements::before,
  .bonus-extra-elements::after {
    font-size: 1rem;
    opacity: 0.08;
  }
}

/* DUAS ESCOLHAS SECTION */
.secao-duas-escolhas {
  padding: 100px 0;
  background: var(--silk-rose);
  position: relative;
}

.grade-escolhas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cartao-escolha {
  background: white;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.escolha-errada {
  border-color: rgba(156, 163, 175, 0.3);
}

.escolha-errada:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(156, 163, 175, 0.2);
}

.escolha-certa {
  border-color: var(--gold-blush);
  background: linear-gradient(
    135deg,
    rgba(212, 163, 115, 0.1),
    rgba(212, 163, 115, 0.05)
  );
  box-shadow: 0 15px 35px rgba(212, 163, 115, 0.2);
}

.escolha-certa:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.3);
}

.numero-escolha {
  font-size: 2rem;
  margin-bottom: 20px;
}

.titulo-escolha {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--deep-black);
}

.descricao-escolha {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(33, 32, 32, 0.8);
  text-align: left;
}

.mensagem-final-escolha {
  font-size: 1.5rem;
  margin-top: 50px;
  color: var(--velvet-red);
  font-weight: 600;
}

/* TESTIMONIALS FINAL SECTION */
.secao-depoimentos-finais {
  padding: 100px 0;
  background: var(--soft-nude);
  position: relative;
}

/* Container para depoimentos finais - mesmo padrão da SEÇÃO 4 */
.final-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Swiper específico para depoimentos finais */
.swiper-depoimentos-finais {
  width: 100%;
  padding: 20px 0 60px 0;
}

.swiper-depoimentos-finais .swiper-wrapper {
  align-items: center;
}

.swiper-depoimentos-finais .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Controles do Swiper para depoimentos finais */
.swiper-depoimentos-finais .swiper-button-next,
.swiper-depoimentos-finais .swiper-button-prev {
  color: var(--velvet-red) !important;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  margin-top: -22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-depoimentos-finais .swiper-button-next:hover,
.swiper-depoimentos-finais .swiper-button-prev:hover {
  background-color: var(--velvet-red);
  color: white !important;
  transform: scale(1.1);
}

.swiper-depoimentos-finais .swiper-button-next:after,
.swiper-depoimentos-finais .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 700;
}

.swiper-depoimentos-finais .swiper-pagination {
  bottom: 10px !important;
}

.swiper-depoimentos-finais .swiper-pagination-bullet {
  background: rgba(116, 17, 37, 0.3);
  opacity: 1;
}

.swiper-depoimentos-finais .swiper-pagination-bullet-active {
  background: var(--velvet-red) !important;
}

/* Responsividade específica para depoimentos finais */
@media (max-width: 768px) {
  .final-testimonials-container {
    padding: 0;
  }

  .swiper-depoimentos-finais {
    padding: 15px 0 50px 0;
  }

  .swiper-depoimentos-finais .swiper-button-next,
  .swiper-depoimentos-finais .swiper-button-prev {
    display: none !important; /* Oculta as setas de navegação em dispositivos móveis */
  }
}

/* =================================================================== */
/*          INÍCIO DA CORREÇÃO DEFINITIVA DO CARROSSEL MOBILE          */
/* =================================================================== */

.testimonial-image-mobile {
  /* Regras base para todos os tamanhos */
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* Faz a imagem preencher a largura do seu slide container */
  width: 100%;

  /* Define uma altura consistente e usa object-fit para não distorcer */
  height: 580px;
  object-fit: contain; /* ESSENCIAL: Mostra a imagem inteira sem esticar */

  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-image-mobile:hover {
  transform: scale(1.02);
}

/* Ajuste fino para telas de tablet e desktop (maiores) */
@media (min-width: 1024px) {
  .testimonial-image-mobile {
    /* Em telas grandes, a imagem pode ter uma largura máxima para não ficar gigante */
    max-width: 500px;
    height: 650px;
  }
}

/* Ajuste fino para telas de celular (menores) */
@media (max-width: 767px) {
  .testimonial-image-mobile {
    height: 500px; /* Uma altura menor para celulares */
  }
}

/* =================================================================== */
/*           FIM DA CORREÇÃO DEFINITIVA DO CARROSSEL MOBILE            */
/* =================================================================== */

/* FAQ SECTION */
.secao-faq {
  background: var(--deep-black);
  padding: 100px 0;
  color: var(--soft-nude);
}

.item-faq {
  background: rgba(214, 195, 189, 0.05);
  border: 1px solid rgba(214, 195, 189, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pergunta-faq {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  color: var(--soft-nude);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.pergunta-faq:hover {
  background: rgba(214, 195, 189, 0.1);
}

.icone-faq {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.item-faq.active .icone-faq {
  transform: rotate(45deg);
}

.resposta-faq {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.item-faq.active .resposta-faq {
  max-height: 200px;
}

.resposta-faq p {
  padding: 0 24px 24px;
  line-height: 1.6;
  color: rgba(214, 195, 189, 0.8);
}

/* FOOTER SECTION */
.footer-section {
  background: var(--deep-black);
  padding: 50px 0 30px;
  color: var(--soft-nude);
  text-align: center;
}

.footer-contact-modern {
  margin-bottom: 0;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(214, 195, 189, 0.08);
  border: 1px solid rgba(214, 195, 189, 0.15);
  border-radius: 25px;
  color: var(--soft-nude);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-contact-btn:hover {
  background: rgba(214, 195, 189, 0.15);
  border-color: var(--gold-blush);
  color: var(--gold-blush);
  transform: translateY(-1px);
}

.whatsapp-btn:hover {
  border-color: #25d366;
  color: #25d366;
}

.email-btn:hover {
  border-color: var(--velvet-red);
  color: var(--velvet-red);
}

.footer-cta-modern {
  margin: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--velvet-red), #a5172e);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(116, 17, 37, 0.25);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(116, 17, 37, 0.35);
  background: linear-gradient(135deg, #a5172e, var(--velvet-red));
}

.footer-bottom {
  margin-top: 0;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(214, 195, 189, 0.5);
  margin: 0;
  line-height: 1.4;
}

/* Responsividade do footer */
@media (max-width: 640px) {
  .footer-section {
    padding: 40px 0 25px;
  }

  .footer-contact-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .footer-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}

/* CTA BUTTON GLOBAL */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--velvet-red), #a5172e);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(116, 17, 37, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(116, 17, 37, 0.4);
}

@media (max-width: 768px) {
  .symptom-counter {
    padding: 20px 28px;
    gap: 10px;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  .counter-separator,
  .counter-total {
    font-size: 1.6rem;
  }

  .counter-label {
    font-size: 0.9rem;
  }

  .counter-progress {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .symptom-counter {
    padding: 18px 24px;
    gap: 8px;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-separator,
  .counter-total {
    font-size: 1.4rem;
  }

  .counter-label {
    font-size: 0.85rem;
  }

  .counter-progress {
    width: 90px;
    height: 3px;
  }
}

/* Beautiful floating particles effect (subtle) */
.container.mx-auto::before,
.container.mx-auto::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(116, 17, 37, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.container.mx-auto::before {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.container.mx-auto::after {
  top: 25%;
  right: 15%;
  animation-delay: 4s;
  background: rgba(212, 163, 115, 0.15);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* SEÇÃO 14 - DUAS ESCOLHAS - MELHORIAS PREMIUM */

/* Melhorar os cartões de escolha com animações sutis */
.duas-escolhas-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.duas-escolhas-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Efeito de brilho sutil nos cartões */
.duas-escolhas-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
  border-radius: inherit;
}

.duas-escolhas-card:hover::before {
  left: 100%;
}

/* Melhorar o cartão da escolha negativa */
.escolha-negativa {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.05),
    rgba(156, 163, 175, 0.1)
  ) !important;
  border-color: rgba(107, 114, 128, 0.2) !important;
  box-shadow: 0 4px 25px rgba(107, 114, 128, 0.15) !important;
}

.escolha-negativa:hover {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.08),
    rgba(156, 163, 175, 0.15)
  ) !important;
  border-color: rgba(107, 114, 128, 0.3) !important;
  box-shadow: 0 8px 35px rgba(107, 114, 128, 0.2) !important;
}

/* Melhorar o cartão da escolha positiva */
.escolha-positiva {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.05),
    rgba(251, 146, 60, 0.08)
  ) !important;
  border-color: rgba(244, 63, 94, 0.3) !important;
  box-shadow: 0 8px 35px rgba(244, 63, 94, 0.15) !important;
  position: relative;
}

.escolha-positiva::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    rgba(244, 63, 94, 0.2),
    rgba(251, 146, 60, 0.2),
    rgba(244, 63, 94, 0.2)
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: glow-border 3s ease-in-out infinite;
}

@keyframes glow-border {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.escolha-positiva:hover {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.08),
    rgba(251, 146, 60, 0.12)
  ) !important;
  border-color: rgba(244, 63, 94, 0.4) !important;
  box-shadow: 0 12px 45px rgba(244, 63, 94, 0.25),
    0 0 30px rgba(251, 146, 60, 0.15) !important;
}

/* Melhorar os badges */
.badge-recomendada {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.9),
    rgba(251, 146, 60, 0.9)
  ) !important;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4) !important;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-2px);
  }
}

/* Melhorar os números dos cartões */
.numero-escolha {
  background: linear-gradient(135deg, var(--velvet-red), #a5172e) !important;
  box-shadow: 0 6px 20px rgba(116, 17, 37, 0.3) !important;
  transition: all 0.3s ease !important;
}

.numero-escolha:hover {
  transform: scale(1.15) rotate(5deg) !important;
  box-shadow: 0 8px 25px rgba(116, 17, 37, 0.4) !important;
}

/* Melhorar os separadores visuais */
.separador-escolhas {
  position: relative;
}

.separador-escolhas::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.2), transparent 70%);
  border-radius: 50%;
  animation: separator-glow 3s ease-in-out infinite;
}

@keyframes separator-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Melhorar o call-to-action final */
.cta-final-escolhas {
  background: linear-gradient(
    135deg,
    rgba(244, 63, 94, 0.05),
    rgba(251, 146, 60, 0.05),
    rgba(244, 63, 94, 0.05)
  ) !important;
  border: 2px solid rgba(244, 63, 94, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.cta-final-escolhas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(244, 63, 94, 0.8),
    rgba(251, 146, 60, 0.8),
    rgba(244, 63, 94, 0.8)
  );
  animation: progress-bar 4s ease-in-out infinite;
}

@keyframes progress-bar {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Melhorar os ícones de tendência */
.icone-tendencia {
  transition: all 0.3s ease;
}

.icone-tendencia.positivo {
  color: rgba(244, 63, 94, 0.7) !important;
  animation: trend-up 2s ease-in-out infinite;
}

.icone-tendencia.negativo {
  color: rgba(107, 114, 128, 0.6) !important;
  animation: trend-down 2s ease-in-out infinite;
}

@keyframes trend-up {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
}

@keyframes trend-down {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(3px) scale(0.95);
  }
}

/* Responsividade específica para SEÇÃO 14 */
@media (max-width: 768px) {
  .duas-escolhas-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .numero-escolha:hover {
    transform: scale(1.1) rotate(3deg) !important;
  }

  .badge-recomendada {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem !important;
  }
}
/* =================================================================== */
/*             ESTILOS PARA O NOVO CARROSSEL CUSTOMIZADO             */
/* =================================================================== */

.carousel-slide {
  /* Garante que o slide tenha um bom espaçamento interno para a imagem */
  padding: 0 10px;
}

.testimonial-image-mobile {
  /* Estilo da imagem, como já estava, para garantir consistência */
  display: block;
  margin: 0 auto;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Estilo dos botões de navegação */
.carousel-btn {
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--velvet-red);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background-color: var(--velvet-red);
  color: white;
  transform: scale(1.1);
}

/* Ajuste de posição para telas maiores */
@media (min-width: 768px) {
  #prev-btn {
    left: -25px;
  }
  #next-btn {
    right: -25px;
  }
}
