/* ========================================
   FONTS - Carregadas via <link> no HTML para melhor performance
   Se precisar usar @import, descomente abaixo:
======================================== */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap'); */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  /* Countdown Colors (Red/Turquoise - only for header) */
  --countdown-red: #b20e2b;
  --countdown-red-dark: #900523;
  --countdown-turquoise: #B8E4E0;
  --countdown-yellow: #f4f55a;
  --countdown-yellow-dark: #d6d241;
  --countdown-text-dark: #1f1608;
  --countdown-text-light: #fff7d1;
  
  /* Primary Colors - Pink Theme */
  --primary-pink: #ff2f92;
  --primary-pink-light: #ff5ab5;
  --primary-pink-lighter: #ff85c9;
  --primary-pink-dark: #e01f7a;
  --primary-pink-darker: #c01562;
  
  /* Light Pink Backgrounds */
  --bg-pink-light: #fff4fb;
  --bg-pink-soft: #ffddea;
  --bg-pink-muted: #ffebf3;
  
  /* Secondary Colors - Light Blue */
  --accent-blue: #6BA8E5;
  --accent-blue-light: #87CEEB;
  --accent-blue-lighter: #B3E5FC;
  --accent-blue-dark: #4A90D9;
  --accent-blue-darker: #2E6EB3;
  
  /* Light Blue Backgrounds */
  --bg-blue-light: #E8F4FD;
  --bg-blue-soft: #F0F7FC;
  --bg-blue-muted: #D6E9F8;
  --bg-slate: #F1F5F9;
  
  /* Dark Colors (for text and contrast) */
  --dark-pink: #8b1a5c;
  --dark-blue: #2E6EB3;
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-600: #757575;
  --gray-800: #424242;
  --dark: #212121;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: rgba(255, 255, 255, 0.9);
  
  /* Gradients */
  --gradient-countdown: linear-gradient(135deg, #D32027 0%, #B71C1C 100%);
  --gradient-pink: linear-gradient(135deg, #ff2f92 0%, #e01f7a 100%);
  --gradient-pink-light: linear-gradient(180deg, #fff4fb 0%, #ffddea 100%);
  --gradient-pink-blue: linear-gradient(135deg, #ff2f92 0%, #6BA8E5 100%);
  --gradient-blue-light: linear-gradient(135deg, #6BA8E5 0%, #87CEEB 100%);
  --gradient-hero: linear-gradient(180deg, #fff4fb 0%, #ffddea 100%);
  --gradient-dark: linear-gradient(180deg, rgba(255, 47, 146, 0.1) 0%, rgba(107, 168, 229, 0.1) 100%);
  --gradient-accent: linear-gradient(135deg, #E8F4FD 0%, #ffebf3 100%);
  --gradient-soft: linear-gradient(135deg, #fff4fb 0%, #F0F7FC 50%, #fff4fb 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(255, 47, 146, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(255, 47, 146, 0.5);
  --shadow-glow-blue: 0 0 40px rgba(107, 168, 229, 0.3);
  
  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 80px 20px;
  --section-padding-large: 100px 20px;
  --section-padding-small: 60px 20px;
  --container-max: 1200px;
  --container-narrow: 900px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 47, 146, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 47, 146, 0.6); }
}

@keyframes glowBlue {
  0%, 100% { box-shadow: 0 0 20px rgba(107, 168, 229, 0.3); }
  50% { box-shadow: 0 0 40px rgba(107, 168, 229, 0.6); }
}

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

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

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(38, 208, 206, 0.4),
      0 0 0 0 rgba(38, 208, 206, 0.7);
  }
  50% {
    box-shadow: 
      0 12px 32px rgba(38, 208, 206, 0.6),
      0 0 0 8px rgba(38, 208, 206, 0);
  }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes confettiFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) rotate(360deg);
    opacity: 0.6;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ========================================
   CONTADOR (Header Countdown)
======================================== */
.contador {
  background: linear-gradient(180deg, var(--countdown-red) 0%, var(--countdown-red-dark) 100%);
  height: auto;
  padding: 15px 30px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  border-bottom: 6px solid rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contador::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at -10% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 55%),
              radial-gradient(circle at 110% 40%, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.countdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
}

.countdown-message {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-transform: uppercase;
  font-family: var(--font-display);
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 260px;
}

.countdown-eyebrow {
  color: var(--countdown-text-light);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.35rem;
  line-height: 1.2;
  margin-bottom: 2px;
}

.countdown-title {
  color: var(--countdown-yellow);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: clamp(0.15rem, 0.8vw, 0.35rem);
  display: block;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 1.1;
}

.countdown-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.countdown-separator {
  color: var(--countdown-yellow);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 4px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--countdown-yellow);
  border-radius: 12px;
  width: 85px;
  height: 75px;
  text-align: center;
  padding: 5px 10px;
  border: 2px solid var(--countdown-yellow-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.countdown-number {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--countdown-text-dark);
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-feature-settings: 'tnum' 1;
}

.countdown-label {
  display: block;
  font-size: clamp(0.58rem, 1.1vw, 0.8rem);
  color: var(--countdown-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin-top: 10px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .contador {
    height: auto;
    padding: 12px 15px;
  }

  .countdown-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .countdown-message {
    align-items: center;
    text-align: center;
    padding-left: 0;
    min-width: auto;
  }

  .countdown-grid {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .countdown-title {
    letter-spacing: 0.15rem;
    font-size: 1.1rem;
    white-space: normal;
  }

  .countdown-eyebrow {
    text-align: center;
    letter-spacing: 0.2rem;
  }

  .countdown-item {
    min-width: 55px;
    width: 55px;
    height: 60px;
    padding: 6px 4px;
    flex-shrink: 0;
  }
  
  .countdown-number {
    font-size: 1.2rem;
  }
  
  .countdown-label {
    font-size: 0.45rem;
    margin-top: 4px;
    letter-spacing: 0.1rem;
  }
  
  .countdown-separator {
    font-size: 1rem;
    margin: 0 2px;
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .countdown-item {
    min-width: 90px;
    padding: 10px 15px;
  }

  .countdown-number {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .countdown-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;
  }

  .countdown-message {
    align-items: flex-start;
    text-align: left;
  }

  .countdown-grid {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .countdown-item {
    min-width: 100px;
    padding: 12px 20px;
  }
}

/* ========================================
   HERO SECTION - Side by Side Layout
======================================== */
/* Highlight text in sections */
.txt_s2 strong,
.txt_3 strong,
.causas-content strong,
.quem-content strong,
.text_7 strong {
  color: var(--primary-pink);
  font-weight: 700;
}

.secao3 strong,
.linhadotempo2 strong {
  /* Color defined in specific sections */
  font-weight: 700;
}

.head {
  background: linear-gradient(180deg, #fff9fc 0%, #fff0f5 100%); /* Tom de rosa reduzido */
  padding: 10px 20px 40px;
  position: relative;
  overflow: hidden;
}

.head::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 185, 229, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 45%);
  pointer-events: none;
}

.head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/giftly.png');
  opacity: 0.25;
  pointer-events: none;
}

.head-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dividido em dois containers iguais */
  gap: 40px;
  align-items: center; /* Alinhamento vertical centralizado */
  position: relative;
  z-index: 1;
}

.head-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start; /* Alinhamento a esquerda */
  text-align: left; /* Alinhamento a esquerda */
}

.head-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.head-logo {
  margin: 0; /* Remove margem automatica */
  max-width: 140px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.15));
}

.head-pill {
  background: #0c0c0c;
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.head-eyebrow {
  background-color: #000000;
  color: #FAFF00; /* Amarelo neon para contraste */
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.head-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem); /* Tamanho reduzido */
  font-weight: 800;
  color: #2f0147; /* Cor roxa escura ajustada */
  line-height: 1.15;
  text-transform: uppercase;
}

.head-content h1 strong {
  color: var(--primary-pink);
}

.head-subtitle {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: #2F0147;
  font-weight: 600;
  text-transform: none;
  max-width: 640px;
  line-height: 1.5;
}

.head-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start; /* Alinhar CTA a esquerda */
}

.head-primary-cta {
  width: 100%;
  max-width: 400px; /* Limitar largura do botão */
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 20px 32px;
}

.head-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Alinhar a esquerda */
  gap: 12px 20px;
  font-size: 0.9rem;
  color: var(--dark-pink);
  font-weight: 600;
  width: 100%;
}

.head-benefits span {
  padding: 0;
  border-radius: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.head-benefits-highlight {
  color: #ff2f92;
  font-weight: 700;
}

.head-testimonial {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 35px rgba(17, 24, 39, 0.15);
  max-width: 420px;
}

.head-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.head-testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-blue-light);
}

.head-testimonial-user .name {
  font-weight: 700;
  color: var(--dark-pink);
}

.head-testimonial-user .meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.head-testimonial .quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.head-testimonial .stars {
  color: #ffb800;
  letter-spacing: 4px;
  font-size: 1.2rem;
}

.head-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.head-visual-frame {
  width: 100%;
  max-width: 360px; /* Reduzido de 420px para ficar menor */
  padding: 15px; /* Reduzido padding */
  border-radius: 40px; /* Ajustado radius */
  background: var(--white);
  position: relative;
  box-shadow: 0 25px 40px rgba(255, 47, 146, 0.2);
  border: 4px solid rgba(255, 47, 146, 0.25);
  margin: 0 auto;
}

.head-visual-frame img {
  width: 100%;
  height: auto; /* Altura automatica */
  max-height: 500px; /* Limitar altura maxima */
  border-radius: 30px;
  object-fit: cover;
  border: none;
}

.head-visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 90px; /* Reduzido badge */
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  box-shadow: 0 15px 25px rgba(255, 47, 146, 0.3);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.head-visual-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 35px rgba(255, 47, 146, 0.5);
  animation: pulse 1s ease-in-out infinite;
}

.head-visual-badge strong {
  font-size: 1.2rem;
}

.head-visual-badge small {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

@media (max-width: 800px) {
  .head-inner {
    grid-template-columns: 1fr;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  /* Use display: contents to make children of head-content direct children of head-inner */
  .head-content {
    display: contents;
  }
  
  .head-brand {
    order: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
  }
  
  .head-eyebrow {
    order: 2;
    text-align: center;
    margin-bottom: 12px;
  }
  
  .head-content h1 {
    order: 3;
    text-align: center;
    margin: 16px 0;
  }
  
  .head-visual {
    order: 4; /* Movido para depois do h1 */
    margin: 16px 0;
    width: 60%;
    display: flex;
    justify-content: center;
  }

  .head-visual-frame {
    max-width: 240px; /* Reduzido ainda mais para 240px */
    padding: 8px;
    margin: 0 auto;
  }
  
  .head-subtitle {
    order: 5; /* Depois da imagem */
    text-align: center;
    margin-bottom: 24px;
  }
  
  .head-cta {
    order: 6;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  .head-brand,
  .head-benefits {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .head-primary-cta {
    align-self: center;
  }
  
  .head-testimonial {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .head {
    padding: 50px 16px 70px;
  }
  
  .head-inner {
    gap: 0;
  }
  
  .head-brand {
    margin-bottom: 12px;
  }
  
  .head-eyebrow {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }
  
  .head-content h1 {
    margin-bottom: 12px;
  }
  
  .head-subtitle {
    margin-bottom: 20px;
  }
  
  .head-visual {
    margin: 20px 0;
  }
  
  .head-cta {
    margin-top: 20px;
    gap: 12px;
  }
  
  .head-pill {
    letter-spacing: 0.15em;
    font-size: 0.7rem;
  }
  
  .head-benefits {
    gap: 12px;
    flex-direction: column;
    width: 100%;
    align-items: center; /* Centraliza textos */
  }
  
  .head-benefits span {
    width: auto; /* Largura do conteúdo */
    justify-content: center;
    font-size: 1rem;
    background: transparent; /* Remove fundo de botão */
    padding: 4px 0; /* Padding reduzido apenas para respiro vertical */
    border-radius: 0;
    box-shadow: none;
    border: none;
    color: var(--dark-pink);
    border-bottom: 2px solid var(--primary-pink); /* Grifo rosa */
  }
  
  .head-visual-frame {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
  }
}

/* ========================================
   BUTTONS - Primal Queen Style
======================================== */
.botao,
button {
  background: linear-gradient(135deg, #26D0CE 0%, #4facfe 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 24px rgba(38, 208, 206, 0.4),
    0 0 0 0 rgba(38, 208, 206, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: buttonPulse 2s ease-in-out infinite;
}

.botao::after,
button::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.botao:hover,
button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 16px 40px rgba(38, 208, 206, 0.6),
    0 0 0 0 rgba(38, 208, 206, 0.7);
  background: linear-gradient(135deg, #4facfe 0%, #26D0CE 100%);
  animation: none;
}

.botao:hover::after,
button:hover::after {
  transform: translateX(5px);
}

.botao:active,
button:active {
  transform: translateY(-2px);
}

/* ========================================
   GARANTIA BADGES (Hero)
======================================== */
.head .garantia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.head .garantia p {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
}

.head .garantia p:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ========================================
   SECTION BASE STYLES
======================================== */
section {
  position: relative;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: var(--bg-blue-soft);
}

/* ========================================
   SECTION 2 - Como você se sente (Two Columns)
======================================== */
.secao2 {
  background: radial-gradient(circle at 0% 0%, #fff9fc 0%, #ffffff 60%, #f0f7fc 100%);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fundo */
.secao2::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 47, 146, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.secao2::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38, 208, 206, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sentimento {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .sentimento {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.txt_s2 {
  animation: fadeInLeft 0.8s ease-out;
}

.txt_s2 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #2f0147;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  position: relative;
}

.txt_s2 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b0006d;
  margin-bottom: 30px;
  line-height: 1.6;
  background: rgba(255, 240, 245, 0.6);
  padding: 20px 24px;
  border-left: 4px solid #ff2f92;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 15px rgba(255, 47, 146, 0.05);
}

.txt_s2 p {
  font-size: 1.1rem;
  color: #4c4f63;
  margin-bottom: 16px;
  line-height: 1.6;
}

.txt_s2 strong {
  color: #ff2f92;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 70%, rgba(255, 47, 146, 0.15) 70%);
}

/* Destaque especial para o final */
.txt_s2 .destaque-final {
  display: inline-block;
  background: #2f0147;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  transform: rotate(-2deg);
  margin-top: 6px;
  box-shadow: 0 4px 10px rgba(47, 1, 71, 0.3);
}

.imgs2 {
  animation: fadeInRight 0.8s ease-out;
  margin: 0 auto;
  position: relative;
}

/* Moldura decorativa para a imagem */
.imgs2::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 2px solid #26D0CE;
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: transform 0.4s ease;
  opacity: 0.6;
}

.imgs2:hover::before {
  transform: translate(10px, 10px);
  opacity: 1;
}

.imgs2 img {
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-slow);
  width: 100%;
}

.imgs2 img:hover {
  transform: scale(1.02) translateY(-5px);
}

/* ========================================
   SECTION 3 - O que é Lipedema (Dark Section)
======================================== */
.secao3 {
  background: linear-gradient(180deg, #fffafb 0%, #fff4fb 50%, #fff0f8 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.secao3::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 47, 146, 0.08) 0%, rgba(107, 168, 229, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.secao3-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .secao3-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  
  .secao3-text {
    max-width: 100%; /* Ocupa largura total */
    margin: 0;
  }
  
  .txt_3 {
    text-align: left;
    max-width: 900px; /* Limita apenas a largura do texto para leitura confortável */
  }
}

.secao3-image {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}



.secao3-image img {
  width: 100%;
  border-radius: 50px;

}

.secao3-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.txt_3 {
  text-align: left;
  margin: 0;
  max-width: 100%;
}

.txt_3 h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147; /* Roxo escuro para alinhar com headlines */
  margin-bottom: 24px;
  line-height: 1.2;
}

.txt_3 h2 strong {
    color: var(--accent-blue); /* "realmente" em azul */
}

.txt_3 h2 .destaque-titulo {
    color: var(--primary-pink); /* "é a Lipedema" em rosa */
}

.txt_3 p {
  font-size: 1.1rem;
  color: #2d1b3d;
  margin-bottom: 10px;
  line-height: 1.6;
}

.txt_3 p strong {
    color: var(--primary-pink); /* Rosa para destaque no texto */
    background: linear-gradient(180deg, transparent 70%, rgba(255, 47, 146, 0.1) 70%); /* Grifo marca-texto sutil */
}

.secao3-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .secao3-bottom-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.secao3-img-wrapper img {
  width: 100%;
  border-radius: 24px;
  max-height: 500px;
  object-fit: cover;
}

.porisso {
  width: 100%;
}

.porisso ul {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .porisso ul {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Grid de cards */
    }
}

.porisso ul:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.porisso li {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px 24px 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 47, 146, 0.1);
    transition: all 0.3s ease;
    color: #2d1b3d;
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    line-height: 1.5;
}

.porisso li:last-child {
  border-bottom: 1px solid rgba(255, 47, 146, 0.1);
}

.porisso li:hover {
    transform: translateX(10px);
    border-color: var(--primary-pink);
    box-shadow: 0 8px 25px rgba(255, 47, 146, 0.15);
}

.porisso li::before {
    background: rgba(255, 47, 146, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--primary-pink);
}

.porisso li:nth-child(1)::before {
    content: '📈';
}

.porisso li:nth-child(2)::before {
    content: '🔥';
}

.porisso li:nth-child(3)::before {
    content: '🍊';
}

.porisso li:nth-child(4)::before {
    content: '💊';
}

.porisso li:nth-child(5)::before {
    content: '💢';
}

@media (max-width: 768px) {
    .porisso li {
        padding: 18px 18px 18px 58px; /* Ajusta padding para mobile */
        font-size: 1.05rem;
        font-weight: 600;
        display: flex; /* Garante alinhamento flexível */
        align-items: center;
        min-height: 70px; /* Garante altura mínima */
    }

    .porisso li::before {
        left: 12px; /* Posiciona ícone mais próximo da borda */
        width: 34px; /* Reduz levemente o tamanho do ícone */
        height: 34px;
        font-size: 1.2rem;
        display: flex !important; /* Garante que apareça */
    }
}

/* ========================================
   SECTION 4 - Por que acontece (Cards Grid)
======================================== */
.secao4 {
  background: linear-gradient(180deg, #fff0f8 0%, #fff8fc 50%, #fdf5ff 100%);
  padding: 20px 20px 40px 20px;
  position: relative;
}

.secao4-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
}

.secao4-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secao4-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: #2f0147; /* Roxo escuro padrão */
  margin-bottom: 20px;
  max-width: 900px;
}

.secao4-header h3 .destaque-titulo {
    color: var(--primary-pink);
}

.secao4-header > p {
  font-size: 1.15rem;
  color: #2d1b3d;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 800px;
}

.secao4-header > p strong {
    color: var(--primary-pink);
}

.secao4-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 992px) {
    .secao4-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
}

.secao4-image-side {
    width: 100%;
    display: flex;
    justify-content: center;
}

.secao4-image-side img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.secao4-grid-cards {
    display: grid;
    grid-template-columns: 1fr; /* Uma coluna na direita */
    gap: 20px;
    width: 100%;
}

/* Novo Layout com duas colunas de conteúdo */
@media (min-width: 992px) {
    .secao4-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch; /* Estica colunas para mesma altura */
    }
}

.secao4-left-column,
.secao4-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secao4-image-container {
    flex-grow: 0; /* Não força crescimento */
    display: flex;
    justify-content: center; /* Centraliza se sobrar espaço */
}

.secao4-image-container img {
    width: 100%;
    height: auto; /* Altura automática baseada na largura */
    max-height: 400px; /* Limita a altura máxima */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Card de destaque (Hormônios) */
.secao4-group.highlight-card {
    border: 2px solid rgba(255, 47, 146, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fff9fb 100%);
}

.secao4-image-container-small {
    width: 70%;
    margin-bottom: 20px;
    display: flex;
    margin: auto;
    justify-content: center;
}

.secao4-image-container-small img {
  border-radius: 12px;
}

.secao4-right-column .secao4-group {
    flex-grow: 1; /* Faz os cards crescerem para ocupar altura disponível */
    justify-content: center; /* Centraliza conteúdo verticalmente se sobrar espaço interno */
}

.secao4-right-column {
    height: 100%; /* Garante que a coluna ocupe toda a altura do grid */
}
.secao4-content {
    display: contents;
}

.secao4-group {
  padding: 24px 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(31, 24, 56, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 47, 146, 0.08);
  display: flex;
  flex-direction: column;
}

.secao4-group:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 47, 146, 0.12);
  border-color: rgba(255, 47, 146, 0.3);
}

.secao4-group h4 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2f0147;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.secao4-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 47, 146, 0.3);
  animation: bounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

.secao4-right-column .secao4-group:nth-child(1) .secao4-number-badge {
  animation-delay: 0s;
}

.secao4-right-column .secao4-group:nth-child(2) .secao4-number-badge {
  animation-delay: 0.3s;
}

.secao4-right-column .secao4-group:nth-child(3) .secao4-number-badge {
  animation-delay: 0.6s;
}

.secao4-group p {
    color: #4c4f63;
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 12px;
}

.secao4-group strong,
.secao4-group .destaque-rosa {
    color: var(--primary-pink);
    font-weight: 700;
}

.secao4-badges {
  display: flex;
  gap: 8px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}

.secao4-badges span {
  background: rgba(255, 47, 146, 0.08);
  border: 1px solid rgba(255, 47, 146, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-pink);
}

.secao4-emphasis {
  font-size: 0.95rem;
  border-left: 3px solid var(--primary-pink);
  padding-left: 12px;
  margin-top: auto; /* Empurra para o final se for flex */
  background: rgba(255, 240, 245, 0.3);
  padding: 12px;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 991px) {
    .secao4-main-grid {
        grid-template-columns: 1fr;
    }

    .secao4-left-column {
        flex-direction: column-reverse; /* Imagem depois do card no mobile se preferir, ou normal */
    }
    
    .secao4-image-container img {
        height: auto;
        max-height: 400px;
    }
}
/* ========================================
   SECTION 5 - Linha do Tempo Estágios (How To Use Style)
======================================== */
.secao5 {
  background: linear-gradient(180deg, #fdf5ff 0%, #faf8ff 50%, #f8f5ff 100%);
  padding: 70px 0 0; /* Remove padding bottom e lateral para a faixa encostar */
  position: relative;
  overflow: hidden;
}

.text_5 {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px; /* Padding interno para o conteúdo */
}

.step-highlight {
  margin: 60px 0 0;
  padding: 24px 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-pink); /* Faixa rosa */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%; /* Ocupa 100% */
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.text_5 > h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem); /* Padronizado com txt_3 h2 e secao4-content h3 */
  font-weight: 800;
  color: #2f0147;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}

.text_5 > h3 .destaque-titulo {
    color: var(--primary-pink);
}

.text_5 > p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #2d1b3d;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.text_5 > p strong {
    color: var(--primary-pink);
}

/* Badge positioning at top - Restored */
.how-to-step {
  position: relative;
  padding-top: 0;
}

.step-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  position: absolute;
  top: -35px; /* Sobrepõe a imagem */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(255, 47, 146, 0.3);
  transition: all 0.3s ease;
}

/* Estágio 1 - Gradiente mais suave */
.how-to-step:nth-child(1) .step-badge {
  background: linear-gradient(135deg, #ffb3d9 0%, #ffcce5 50%, #ff8cc8 100%);
  box-shadow: 0 3px 10px rgba(255, 182, 193, 0.18), 0 1px 4px rgba(255, 182, 193, 0.12);
}

/* Estágio 2 - Gradiente intermediário */
.how-to-step:nth-child(2) .step-badge {
  background: linear-gradient(135deg, #ff8cc8 0%, #ffb3d9 50%, #ff5fb3 100%);
  box-shadow: 0 4px 12px rgba(255, 150, 200, 0.22), 0 2px 6px rgba(255, 150, 200, 0.15);
}

/* Estágio 3 - Gradiente mais intenso com brilho */
.how-to-step:nth-child(3) .step-badge {
  background: linear-gradient(135deg, #ff5fb3 0%, #ff8cc8 50%, #ff2f92 100%);
  box-shadow: 0 5px 14px rgba(255, 47, 146, 0.25), 0 2px 8px rgba(255, 47, 146, 0.18);
  animation: glow 2s ease-in-out infinite;
}

/* ========================================
   SECTION 5 - Linha do Tempo Estágios (How To Use Style)
======================================== */
/* How To Use Container */
.how-to-use-container {
  display: flex;
  flex-direction: column; /* Vertical no mobile */
  gap: 80px; /* Aumentado para mais respiro vertical */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Desktop: Horizontal */
@media (min-width: 900px) {
  .how-to-use-container {
    flex-direction: row;
    gap: 50px; /* Aumentado para mais respiro horizontal */
    align-items: flex-start;
    padding-top: 60px; /* Espaço para os badges */
  }

  .step-badge {
    top: -50px; /* Ajuste para desktop */
  }

  .step-connector {
    display: none; /* Remove conectores pontilhados */
  }
  
  /* Conector entre passo 2 e 3 removido */
  .how-to-step:nth-child(2) .step-connector {
      display: none;
  }
}

/* Step Image Wrapper */
.step-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px; /* Espaço entre imagem e card */
}

.step-image {
  width: 100%;
  max-width: 240px; /* Reduzido conforme solicitado */
  height: auto;
  max-height: 420px; /* Limita altura mantendo verticalidade */
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 15px 35px rgba(47, 1, 71, 0.15);
  transition: transform var(--transition-normal), box-shadow 0.3s ease;
  object-fit: cover;
  filter: brightness(1) contrast(1.05);
}

/* Estágio 1 - Mais suave com degradê */
.how-to-step:nth-child(1) .step-image {
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.12), 0 2px 8px rgba(255, 182, 193, 0.08);
  border: 3px solid rgba(255, 204, 229, 0.6);
  border-radius: 20px;
}

/* Estágio 2 - Intermediário com degradê */
.how-to-step:nth-child(2) .step-image {
  box-shadow: 0 8px 20px rgba(255, 150, 200, 0.15), 0 3px 10px rgba(255, 150, 200, 0.1);
  border: 3px solid rgba(255, 179, 217, 0.7);
  border-radius: 20px;
}

/* Estágio 3 - Mais intenso com degradê */
.how-to-step:nth-child(3) .step-image {
  box-shadow: 0 10px 24px rgba(255, 47, 146, 0.18), 0 4px 12px rgba(255, 47, 146, 0.12);
  border: 3px solid rgba(255, 95, 179, 0.8);
  border-radius: 20px;
  filter: brightness(0.99) contrast(1.05);
}

.how-to-step:hover .step-image {
  transform: translateY(-10px);
  border-color: var(--primary-pink);
}

/* Step Caption (Card Unificado) */
.step-caption {
  text-align: left;
  width: 100%;
  background: #fff;
  padding: 30px 24px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(31, 24, 56, 0.06);
  border: 1px solid rgba(255, 47, 146, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Degradê evolutivo no fundo - Estágio 1 (mais suave) */
.how-to-step:nth-child(1) .step-caption {
  background: linear-gradient(135deg, #fff 0%, #fff9fb 75%, #fff5f9 100%);
  border: 1.5px solid rgba(255, 200, 220, 0.35);
  box-shadow: 0 4px 14px rgba(255, 182, 193, 0.08), 0 1px 4px rgba(255, 182, 193, 0.06);
}

/* Degradê evolutivo - Estágio 2 (intermediário) */
.how-to-step:nth-child(2) .step-caption {
  background: linear-gradient(135deg, #fff 0%, #fff5f9 75%, #ffebf3 100%);
  border: 1.5px solid rgba(255, 150, 200, 0.4);
  box-shadow: 0 5px 16px rgba(255, 150, 200, 0.1), 0 2px 6px rgba(255, 150, 200, 0.08);
}

/* Degradê evolutivo - Estágio 3 (mais intenso) */
.how-to-step:nth-child(3) .step-caption {
  background: linear-gradient(135deg, #fff 0%, #ffebf3 75%, #ffddea 100%);
  border: 1.5px solid rgba(255, 47, 146, 0.45);
  box-shadow: 0 6px 18px rgba(255, 47, 146, 0.12), 0 2px 8px rgba(255, 47, 146, 0.1);
}

.how-to-step:hover .step-caption {
    box-shadow: 0 12px 32px rgba(255, 47, 146, 0.15), 0 4px 12px rgba(255, 47, 146, 0.1);
    transform: translateY(-3px);
}

/* Barra superior com degradê evolutivo */
.how-to-step:nth-child(1) .step-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ffb3d9 0%, #ff8cc8 100%);
}

.how-to-step:nth-child(2) .step-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff8cc8 0%, #ff5fb3 100%);
}

.how-to-step:nth-child(3) .step-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff5fb3 0%, #ff2f92 100%);
}

.step-caption h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 47, 146, 0.1);
  position: relative;
}

/* Degradê evolutivo nos títulos - cores que evoluem */
.how-to-step:nth-child(1) .step-caption h4 {
  color: #ff8cc8;
  background: linear-gradient(135deg, #ffb3d9 0%, #ff8cc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-to-step:nth-child(2) .step-caption h4 {
  color: #ff5fb3;
  background: linear-gradient(135deg, #ff8cc8 0%, #ff5fb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-to-step:nth-child(3) .step-caption h4 {
  color: #ff2f92;
  background: linear-gradient(135deg, #ff5fb3 0%, #ff2f92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-list li {
  font-size: 1.05rem;
  color: #4c4f63;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
  background: transparent; /* Remove estilo de card individual */
  border: none;
  box-shadow: none;
  margin-bottom: 4px;
}

/* Destacar palavras-chave relacionadas a dor e deterioração */
.step-list li strong {
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 1.1em;
}

.step-list li::before {
  content: '•';
  color: var(--primary-pink);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.step-list li:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
    color: var(--primary-pink);
}

.step-highlight {
  margin: 60px 0 0;
  padding: 24px 20px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-pink); /* Faixa rosa */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%; /* Ocupa 100% */
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 899px) {
  .text_5 > h3 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    padding: 0 16px;
  }
  
  .text_5 > p {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .text_5 > p::before {
    left: -12px;
    font-size: 1.2rem;
    padding: 6px;
  }
  
  .how-to-use-container {
    gap: 50px;
  }
  
  .how-to-step {
    align-items: center;
  }
  
  .step-badge {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .step-content {
    max-width: 100%;
  }
  
  .step-caption h4 {
    font-size: 1rem;
    padding: 12px 20px;
    min-width: auto;
  }
  
  .step-list {
    gap: 12px;
  }
  
  .step-list li {
    font-size: 0.9rem;
    padding: 16px 20px;
  }
  
  .step-highlight {
    padding: 0;
    font-size: 1.1rem;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .text_5 > h3 {
    font-size: 1.5rem;
  }
  
  .text_5 > p {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .how-to-use-container {
    gap: 40px;
  }
  
  .step-badge {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  
  .step-image-wrapper {
    width: 60%;
    margin: 0 auto 20px;
  }
  
  .step-image {
    border-width: 2px;
    width: 100%;
    height: auto;
  }
  
  .step-caption h4 {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .step-list {
    gap: 10px;
  }
  
  .step-list li {
    font-size: 0.85rem;
    padding: 14px 18px;
  }
  
  .step-highlight {
    padding: 0;
    font-size: 1rem;
    margin-top: 30px;
  }
}

/* ========================================
   SECTION 6 - Timeline 21 Dias (Redesigned)
======================================== */
.linhadotempo2 {
  background: linear-gradient(180deg, #f8f5ff 0%, #f5f7ff 50%, #f0f7fc 100%);
  padding: 40px 20px 40px; /* Padding top reduzido */
  color: var(--text-primary);
  position: relative;
}

.linhadotempo2-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.linhadotempo2-header h4 {
  background: linear-gradient(135deg, #26D0CE 0%, #4facfe 100%); /* Azul Tifany/Azul */
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(38, 208, 206, 0.3); /* Sombra azulada */
}

.linhadotempo2-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147;
  line-height: 1.2;
  margin-bottom: 20px;
}

.linhadotempo2-header .destaque-titulo {
  color: var(--primary-pink);
}

.linhadotempo2-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.linhadotempo2-header strong {
  color: var(--primary-pink);
}

.timeline-main-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #2f0147;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-main-title .destaque-titulo {
  color: var(--accent-blue-dark);
  border-bottom: 3px solid var(--accent-blue-light);
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

/* Linha vertical contínua */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 39px; /* Alinhado com o centro dos marcadores */
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #ff2f92 0%, #6BA8E5 100%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid var(--primary-pink);
  border-radius: 50%;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 47, 146, 0.15);
  margin-top: 24px; /* Alinha com o título */
}

.timeline-item:nth-child(2) .timeline-marker {
  border-color: #ba55d3;
  box-shadow: 0 0 0 4px rgba(186, 85, 211, 0.15);
}

.timeline-item:nth-child(3) .timeline-marker {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(107, 168, 229, 0.15);
}

.timeline-content-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(31, 24, 56, 0.06);
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.timeline-content-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 24, 56, 0.1);
}

.timeline-title-box {
  background: linear-gradient(90deg, #fff9fc 0%, #fff 100%);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.timeline-title-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  background: var(--primary-pink);
  padding: 6px 14px;
  border-radius: 50px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline-item:nth-child(2) .timeline-title-box h3 { background: #ba55d3; }
.timeline-item:nth-child(3) .timeline-title-box h3 { background: var(--accent-blue); }

.timeline-title-box h4 {
  font-size: 1.2rem;
  color: var(--dark-pink);
  margin: 0;
  font-weight: 800;
}

.timeline-content {
  padding: 30px;
}

.timeline-body-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.timeline-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.timeline-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .timeline-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-box h5,
.timeline-results h5 {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #a0aec0;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline-box ul,
.timeline-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-box li strong,
.timeline-results li strong {
  color: var(--primary-pink);
  font-weight: 700;
}

.timeline-box li,
.timeline-results li {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.4;
  padding-left: 0;
}

@media (max-width: 768px) {
  .timeline-container {
    padding-left: 0;
  }
  
  .timeline-container::before {
    left: 19px; /* Ajuste para mobile */
  }
  
  .timeline-item {
    gap: 15px;
  }
  
  .timeline-marker {
    margin-top: 20px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-title-box {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ========================================
   PREÇO SECTION - Primal Queen Style
======================================== */
.preco {
  background: linear-gradient(180deg, #f0f7fc 0%, #f8f4fb 50%, #fff9f5 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative confetti and sparkles */
.preco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 47, 146, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 30% 60%, rgba(255, 47, 146, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(107, 168, 229, 0.03) 0%, transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(107, 168, 229, 0.02) 0%, transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle ribbon effect */
.preco::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 200px;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 47, 146, 0.04) 50%, transparent 70%);
  transform: rotate(-25deg);
  pointer-events: none;
  z-index: 0;
}

.preco > div {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 32px;
  box-shadow: 
    0 20px 60px rgba(186, 85, 211, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* Countdown in Preço Section */
.preco-countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 192, 203, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.preco-countdown-message {
  text-align: center;
}

.preco-countdown-eyebrow {
  color: #d81b60;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.preco-countdown-title {
  color: #1a0d2e;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.preco-countdown-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.preco-countdown-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 12px;
  min-width: 70px;
  height: 70px;
  text-align: center;
  padding: 10px 12px;
  border: 2px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.preco-countdown-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a0d2e;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-feature-settings: 'tnum' 1;
}

.preco-countdown-label {
  display: block;
  font-size: 0.65rem;
  color: #1a0d2e;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-top: 6px;
  font-weight: 800;
}

.preco-countdown-separator {
  color: #1a0d2e;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 4px;
}

.preco h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1a0d2e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.preco h3 .destaque-titulo {
  color: var(--primary-pink);
}

.preco > div > img {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
}

.conteudo_principal, .conteudo_bonus {
  padding: 12px 28px;
  text-align: left;
  position: relative;

}

.conteudo_principal::before,
.conteudo_bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.conteudo_principal h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #1a0d2e;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.conteudo_bonus h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #ba55d3;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.li_recebe li, .li_bonus li {
  font-size: 1rem;
  color: #2d1b3d;
  padding: 16px 0 16px 50px;
  position: relative;
  border-bottom: 1px solid rgba(186, 85, 211, 0.15);
  line-height: 1.6;
  font-weight: 500;
}

.li_recebe li:last-child, .li_bonus li:last-child {
  border-bottom: none;
}

/* Green checkmark instead of emoji */
.li_recebe li::before,
.li_bonus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.li_bonus li::before {
  background: linear-gradient(135deg, #ff6b9d 0%, #ba55d3 100%);
  box-shadow: 0 2px 8px rgba(186, 85, 211, 0.3);
}

/* Price styling */
.preco > div > p {
  font-size: 1.2rem;
  color: #4c4f63;
  margin: 10px 0;
  font-weight: 500;
  line-height: 1.4;
}

.preco > div > p:nth-of-type(1) {
  text-decoration: line-through;
  color: #9e9e9e;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.preco > div > p:nth-of-type(2) {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ff2f92;
  font-family: var(--font-display);
  margin-top: -10px;
  text-shadow: 0 2px 8px rgba(255, 47, 146, 0.2);
  line-height: 1;
}

.preco > div > p:nth-of-type(3) {
  color: #4c4f63;
  font-weight: 600;
  margin-top: -15px;
}

.preco h4 {
  font-size: 1.5rem;
  color: #4c4f63;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Blue CTA button */
.preco button {
  /* Visual styles inherited from base button */
  font-size: 1.2rem;
  font-weight: 800;
  padding: 24px 60px;
  width: 100%;
  max-width: 400px;
  gap: 10px;
}

.preco button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.preco button::after {
  content: '►';
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.preco button:hover::before {
  left: 100%;
}

.preco button:hover {
  transform: translateY(-6px) scale(1.05);
  animation: none;
}

.preco button:hover::after {
  transform: translateX(5px);
}

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

.preco .head-benefits {
  justify-content: center;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .preco > div {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .preco-countdown-wrapper {
    padding: 16px;
    gap: 16px;
    margin-bottom: 24px;
  }

  .preco-countdown-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
  }

  .preco-countdown-title {
    font-size: 0.9rem;
  }

  .preco-countdown-grid {
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .preco-countdown-item {
    min-width: 55px;
    width: 55px;
    height: 55px;
    padding: 6px 8px;
    flex-shrink: 0;
  }

  .preco-countdown-number {
    font-size: 1.3rem;
  }

  .preco-countdown-label {
    font-size: 0.5rem;
    margin-top: 4px;
    letter-spacing: 0.1rem;
  }

  .preco-countdown-separator {
    font-size: 1rem;
    margin: 0 2px;
    flex-shrink: 0;
  }

  .preco h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .preco > div > img {
    max-width: 100%;
  }

  .conteudo_principal, .conteudo_bonus {
    padding: 24px 20px;
  }

  .li_recebe li, .li_bonus li {
    font-size: 0.95rem;
    padding: 14px 0 14px 45px;
  }

  .preco > div > p:nth-of-type(2) {
    font-size: 2.8rem;
  }

  .preco button {
    font-size: 1.1rem;
    padding: 20px 40px;
    max-width: 100%;
  }
}

/* ========================================
   GARANTIA SECTION - Side by Side Layout
======================================== */
section.garantia {
  background: linear-gradient(180deg, #fff9f5 0%, #fffaf9 50%, #ffffff 100%);
  padding: 60px 20px;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.garantia-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px) {
  .garantia-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.garantia-content {
  order: 0;
  text-align: left;
}

@media (min-width: 900px) {
  .garantia-content {
    order: 1;
  }
}

.garantia-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.garantia-content h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--primary-pink);
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.garantia-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.garantia-content p strong {
  color: var(--primary-pink);
  font-weight: 700;
}

.garantia-content button {
  margin: 32px 0 0;
}

.garantia-content button:hover {
  transform: translateY(-6px) scale(1.05);
  animation: none;
}

.garantia-image {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 900px) {
  .garantia-image {
    order: 0;
  }
}

.garantia-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: none;
  transition: transform 0.5s ease;
}

.garantia-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Responsive adjustments for garantia */
@media (max-width: 768px) {
  .garantia-wrapper {
    gap: 40px;
  }

  .garantia-content {
    text-align: center;
  }

  .garantia-content h3 {
    text-align: center;
  }

  .garantia-content h4 {
    text-align: center;
  }

  .garantia-content button {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .garantia-image img {
    max-width: 100%;
  }
}

/* ========================================
   QUEM SECTION - Side by Side
======================================== */
.quem {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.quem-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px) {
  .quem-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.quem-content {
  order: 1;
}

@media (min-width: 900px) {
  .quem-content {
    order: 0;
  }
}

.quem h3,
.quem-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147;
  margin-bottom: 32px;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.quem-content h3 .destaque-titulo {
  color: var(--primary-pink);
}

.quem p,
.quem-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
  max-width: none;
}

.quem-content p strong {
  color: var(--primary-pink);
  font-weight: 700;
}

.quem button,
.quem-content button {
  margin: 36px 0;
}

.quem button:hover,
.quem-content button:hover {
  transform: translateY(-6px) scale(1.05);
  animation: none;
}

.quem img,
.quem-img img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.quem-img img:hover {
  transform: scale(1.02);
}

.quem-img,
.quem-img-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.quem-img-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 30px 0;
}

.quem-img-mobile img:last-child,
.quem-img-desktop img:last-child {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.quem-img-mobile img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

@media (max-width: 899px) {
  .quem-img-desktop {
    display: none;
  }
  
  .quem-img-mobile {
    display: flex;
  }
}

@media (min-width: 900px) {
  .quem-img-desktop img {
    position: sticky;
    top: 120px;
  }
  
  /* Reset sticky para a segunda imagem */
  .quem-img-desktop img:nth-child(2) {
    position: static;
    margin-top: 0;
  }
  
  /* Container sticky */
  .quem-img-desktop {
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

/* ========================================
   PROVAS SECTION (Testimonials) - Carousel Style
======================================== */
.provas {
  background: linear-gradient(180deg, #fafbfc 0%, #f0f7fc 100%);
  padding: 60px 20px;
  overflow: hidden;
}

.testemunho_section {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testemunho-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.testemunho-title .destaque-titulo {
  color: var(--primary-pink);
}

.coment_text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
  font-style: normal;
  margin-bottom: 20px;
  flex-grow: 1;
}

.coment_text strong {
  color: var(--primary-pink);
  font-weight: 700;
}

/* Grid for testimonials */
.testemunho_section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .testemunho_section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .testemunho_section {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testemunho-title {
  grid-column: 1 / -1;
}

.Prova_social {
  margin-bottom: 0;
}

/* Hide extra testimonials initially */
.Prova_social.depoimento-hidden {
  display: none;
}

/* Show hidden testimonials when toggled */
.testemunho_section .Prova_social.depoimento-hidden.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@media (min-width: 768px) {
  .testemunho_section .Prova_social.depoimento-hidden.show {
    display: block;
  }
}

@media (min-width: 1100px) {
  .testemunho_section .Prova_social.depoimento-hidden.show {
    display: block;
  }
}

/* Ver mais button */
.ver-mais-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
}

.ver-mais-btn {
  background: transparent;
  color: var(--accent-blue);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  animation: none;
  width: auto;
}

.ver-mais-btn::after {
  content: none;
}

.ver-mais-btn:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107, 168, 229, 0.3);
}

.ver-mais-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
  display: inline-block;
}

.ver-mais-btn.active .ver-mais-icon {
  transform: rotate(180deg);
}

.ver-mais-text {
  position: relative;
  z-index: 1;
}

.maria, .ana, .carla, .patricia, .raira {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
  margin: 0;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.maria:hover, .ana:hover, .carla:hover, .patricia:hover, .raira:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.foto_perfil {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 4px solid var(--primary-pink);
  box-shadow: var(--shadow-md);
}

.name_prosp {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2f0147;
  text-align: center;
  margin-bottom: 8px;
}

.stars {
  text-align: center;
  font-size: 1.4rem;
  color: #FFB800;
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
}

.coment_text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
  font-style: normal;
  margin-bottom: 20px;
  flex-grow: 1;
}

.Prova_social img:not(.foto_perfil) {
  max-width: 100%;
  margin: auto auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
  background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 100%);
  padding: 60px 20px;
}

.faq-section .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #2f0147;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.faq-section .section-title .destaque-titulo {
  color: var(--primary-pink);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 47, 146, 0.2);
}

.faq-item.active {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 47, 146, 0.15);
  border-color: var(--primary-pink);
  transform: scale(1.01);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2f0147;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-pink);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
  background: rgba(255, 47, 146, 0.1);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  background: var(--primary-pink);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.faq-arrow::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-arrow::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-arrow {
  background: var(--primary-pink);
  transform: rotate(180deg);
}

.faq-item.active .faq-arrow::before {
  background: #ffffff;
}

.faq-item.active .faq-arrow::after {
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 30px;
  opacity: 1;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px 16px;
  }
  
  /* Countdown adjustments */
  .countdown-item {
    min-width: 50px;
    padding: 6px 10px;
  }
  
  .countdown-number {
    font-size: 1.3rem;
  }
  
  .countdown-label {
    font-size: 0.55rem;
  }
  
  /* Hero Section */
  .head {
    padding: 50px 16px 70px;
  }

  /* Standardize section padding for mobile (reduced) */
  .secao2, .secao3, .linhadotempo2, .preco, .quem, .provas, .faq-section {
    padding: 40px 16px;
  }
  
  .secao4 {
    padding: 30px 16px 40px;
  }
  
  .secao5 {
    padding-top: 40px;
  }

  /* Garantia already handled below with 30px padding-top, let's unify padding */
  section.garantia {
    padding: 30px 16px 40px;
  }
  
  .head-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .head-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .head-benefits {
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
  }
  
  .head-visual-frame {
    max-width: 100%;
    padding: 15px;
  }
  
  .head-visual-badge {
    width: 80px;
    height: 80px;
    top: 15px;
    right: 15px;
  }
  
  .head-visual-badge strong {
    font-size: 1rem;
  }
  
  .head-visual-badge small {
    font-size: 0.7rem;
  }
  
  /* Section 2 */
  .sentimento {
    gap: 30px;
  }
  
  .txt_s2 h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .txt_s2 h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .txt_s2 p {
    font-size: 1rem;
  }
  
  /* Section 3 */
  .secao3-grid {
    gap: 30px;
  }
  
  .secao3-image {
    max-width: 60%;
    width: 60%;
    margin: 0 auto;
  }
  
  .secao3-image img {
    width: 100%;
  }
  
  .txt_3 h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .txt_3 p {
    font-size: 1rem;
  }
  
  .porisso ul {
    padding: 20px 16px 20px 16px;
    border-radius: 20px;
  }
  
  .porisso li {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 16px 16px 50px;
    line-height: 1.5;
  }
  
  .porisso li::before {
    left: 12px;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Section 4 */
  .secao4-wrapper {
    gap: 30px;
  }
  
  .secao4-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .secao4-content p {
    font-size: 1rem;
  }
  
  .secao4-image {
    width: 80%;
    margin: 0 auto;
  }
  
  .secao4-image img {
    width: 100%;
    height: auto;
  }
  
  .secao4-group {
    padding: 16px 18px;
    margin-top: 20px;
  }
  
  .secao4-group h4 {
    font-size: 1rem;
  }
  
  .secao4-number-badge {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  /* Section 5 */
  .text_5 > h3 {
    font-size: 1.6rem;
    padding: 0 16px;
  }
  
  .text_5 > p {
    font-size: 1rem;
    padding: 0 16px;
  }
  
  .step-badge {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  
  .step-image-wrapper {
    width: 60%;
    margin: 0 auto 20px;
  }
  
  .step-image {
    width: 100%;
    height: auto;
  }
  
  .step-caption h4 {
    font-size: 0.95rem;
  }
  
  .step-list li {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  
  /* Linha do Tempo 2 */
  .linhadotempo2 > h4:first-child {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .text_7 {
    margin-bottom: 40px;
  }
  
  .text_7 h4 {
    font-size: 1.1rem;
  }
  
  .text_7 p {
    font-size: 1rem;
  }
  
  .linhadotempo2 > h3 {
    font-size: 1.2rem;
    padding: 18px 20px;
    margin: 30px 0;
  }
  
  /* Preço */
  .preco > div {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .preco h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .preco > div > img {
    max-width: 100%;
  }
  
  .conteudo_principal, .conteudo_bonus {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  
  .conteudo_principal h4, .conteudo_bonus h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .li_recebe li, .li_bonus li {
    font-size: 0.9rem;
    padding: 12px 0 12px 40px;
  }
  
  .preco > div > p:nth-of-type(2) {
    font-size: 2.2rem;
  }
  
  .preco h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  /* Garantia */
  .garantia-wrapper {
    gap: 30px;
  }

  section.garantia {
    /* Padding already set in standardized block above */
    gap: 30px;
  }
  
  .garantia-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .garantia-content h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .garantia-content p {
    font-size: 1rem;
  }
  
  .garantia-image img {
    max-width: 100%;
  }
  
  /* Quem */
  .quem {
    gap: 30px;
  }
  
  .quem h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
  
  .quem p {
    font-size: 1rem;
  }
  
  /* Provas */
  .testemunho-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  
  .maria, .ana, .carla, .patricia, .raira {
    padding: 24px;
  }
  
  .foto_perfil {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  
  .name_prosp {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .stars {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .coment_text {
    font-size: 0.9rem;
  }
  
  /* FAQ */
  .faq-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  
  /* Buttons */
  .botao, button {
    font-size: 0.9rem;
    padding: 16px 28px;
    width: 100%;
    max-width: 100%;
  }
  
  .ver-mais-btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 30px 12px;
  }

  /* Further reduce for small screens */
  .secao2, .secao3, .linhadotempo2, .preco, .quem, .provas, .faq-section {
    padding: 30px 12px;
  }
  
  .secao4 {
    padding: 20px 12px 30px;
  }
  
  .secao5 {
    padding-top: 30px;
  }

  section.garantia {
    padding: 20px 12px 30px;
  }
  
  /* Countdown */
  .contador {
    padding: 12px 16px;
  }
  
  .countdown-wrapper {
    gap: 16px;
  }
  
  .countdown-grid {
    gap: 3px;
  }
  
  .countdown-item {
    min-width: 50px;
    width: 50px;
    height: 60px;
    padding: 5px 6px;
    flex-shrink: 0;
  }
  
  .countdown-number {
    font-size: 1.2rem;
  }
  
  .countdown-label {
    font-size: 0.45rem;
    margin-top: 4px;
    letter-spacing: 0.1rem;
  }
  
  .countdown-separator {
    font-size: 1rem;
    margin: 0 2px;
    flex-shrink: 0;
  }
  
  /* Hero */
  .head {
    padding: 40px 12px 60px;
  }
  
  .head-inner {
    gap: 0;
  }
  
  .head-brand {
    margin-bottom: 10px;
  }
  
  .head-eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }
  
  .head-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .head-subtitle {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .head-visual {
    margin: 18px 0;
  }
  
  .head-cta {
    margin-top: 18px;
    gap: 10px;
  }
  
  .head-primary-cta {
    padding: 16px 24px;
    font-size: 0.85rem;
    width: 100%;
  }
  
  .head-benefits {
    gap: 6px;
    font-size: 0.75rem;
  }
  
  .head-visual-frame {
    padding: 10px;
  }
  
  .head-visual-badge {
    width: 70px;
    height: 70px;
    top: 10px;
    right: 10px;
  }
  
  .head-visual-badge strong {
    font-size: 0.9rem;
  }
  
  .head-visual-badge small {
    font-size: 0.65rem;
  }
  
  /* Sections */
  .txt_s2 h2, .txt_3 h2, .secao4-content h3 {
    font-size: 1.4rem;
  }
  
  .secao3-image {
    max-width: 60%;
    width: 60%;
  }
  
  .secao4-image {
    width: 60%;
    margin: 0 auto;
  }
  
  .secao4-image img {
    width: 100%;
    height: auto;
  }
  
  .secao4-number-badge {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .text_5 > h3 {
    font-size: 1.3rem;
  }
  
  .linhadotempo2 > h4:first-child {
    font-size: 1.3rem;
  }
  
  .preco h3, .garantia-content h3, .quem h3, .linhadotempo2-header h3 {
    font-size: 1.7rem;
  }

  .timeline-main-title {
    font-size: 1.2rem;
    padding: 0 10px;
  }
  
  /* Porisso icons mobile */
  .porisso ul {
    padding: 18px 12px 18px 12px;
    border-radius: 16px;
  }
  
  .porisso li {
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 14px 14px 52px; /* Aumentado padding-left */
    line-height: 1.5;
  }
  
  .porisso li::before {
    font-size: 1.1rem;
    left: 12px; /* Ajustado left */
  }
  
  /* Section 5 images mobile */
  .step-image-wrapper {
    width: 60%;
    margin: 0 auto 18px;
  }
  
  .step-image {
    width: 100%;
    height: auto;
  }
  
  .testemunho-title, .faq-section .section-title {
    font-size: 1.3rem;
  }
  
  /* Preço countdown */
  .preco-countdown-wrapper {
    padding: 12px;
    gap: 12px;
  }
  
  .preco-countdown-item {
    min-width: 50px;
    height: 50px;
    padding: 6px 8px;
  }
  
  .preco-countdown-grid {
    gap: 3px;
  }
  
  .preco-countdown-item {
    min-width: 50px;
    width: 50px;
    height: 50px;
    padding: 5px 6px;
  }
  
  .preco-countdown-number {
    font-size: 1.1rem;
  }
  
  .preco-countdown-label {
    font-size: 0.45rem;
    margin-top: 3px;
  }
  
  .preco-countdown-separator {
    font-size: 0.9rem;
  }
  
  .preco > div > p:nth-of-type(2) {
    font-size: 1.8rem;
  }
  
  /* Cards */
  .conteudo_principal, .conteudo_bonus {
    padding: 16px 12px;
  }
  
  .maria, .ana, .carla, .patricia, .raira {
    padding: 20px;
  }
  
  /* Timeline */
  .step-badge {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-list li {
    font-size: 0.85rem;
    padding: 12px 14px 12px 30px; /* Aumentado padding-left para o marcador */
  }

  .step-list li::before {
    left: 10px; /* Ajustado para alinhar com o padding-left */
    top: 12px; /* Alinhado com o topo do texto */
  }
  
  /* Buttons */
  .botao, button {
    font-size: 0.85rem;
    padding: 14px 24px;
  }
  
  .ver-mais-btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
  
  /* Images */
  .imgs2 img, .secao3-image img, .secao4-image img {
    border-radius: 20px;
  }
  
  .head-visual-frame {
    border-radius: 30px;
    padding: 12px;
  }
  
  .head-visual-frame img {
    border-radius: 24px;
  }
  
  /* Spacing adjustments */
  .head-cta {
    gap: 14px;
  }
  
  .head-benefits {
    font-size: 0.8rem;
  }
  
  .step-highlight {
    font-size: 1rem;
    margin-top: 30px;
    padding: 20px 12px;
  }
  
  /* Preço section */
  .preco-countdown-title {
    font-size: 0.85rem;
  }
  
  .preco-countdown-eyebrow {
    font-size: 0.7rem;
  }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.secao2, .secao3, .secao4, .secao5, 
.linhadotempo2, .preco, section.garantia, 
.quem, .provas, .faq-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.secao2.animate, .secao3.animate, .secao4.animate, .secao5.animate, 
.linhadotempo2.animate, .preco.animate, section.garantia.animate, 
.quem.animate, .provas.animate, .faq-section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animações para elementos individuais */
.head-visual-frame {
  animation: scaleIn 0.8s ease-out 0.3s both;
}

.head-visual-badge {
  animation: bounce 2s ease-in-out infinite;
  animation-delay: 1s;
}

.head-content h1 {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.head-subtitle {
  animation: slideUp 0.8s ease-out 0.4s both;
}


.head-benefits {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Animações para imagens */
.imgs2 img,
.secao4-image img,
.garantia-image img,
.quem-img img {
  transition: none;
}

.imgs2 img:hover,
.secao4-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 47, 146, 0.2);
}

.garantia-image img:hover,
.quem-img img:hover {
  transform: none;
  box-shadow: none;
  border: none;
  outline: none;
}

/* Seção 3 - sem animação na imagem */
.secao3-image img {
  transition: none;
}

/* Animações para cards */
.maria, .ana, .carla, .patricia, .raira {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.maria:hover, .ana:hover, .carla:hover, .patricia:hover, .raira:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 47, 146, 0.25);
}

/* Animações para botões - já definidas na seção BUTTONS acima */

/* Animações para timeline */
.timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.3s; }
.timeline-item:nth-child(3) { transition-delay: 0.5s; }

/* Animações para steps */
.how-to-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.how-to-step.animate {
  opacity: 1;
  transform: translateY(0);
}


.step-image {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.step-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(255, 47, 146, 0.3);
}

/* Animações para FAQ */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.active {
  animation: scaleIn 0.3s ease-out;
}

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

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Animações para badges e destaques */
.head-visual-badge {
  animation: float 3s ease-in-out infinite;
}

/* Animações para textos */
.txt_s2, .txt_3, .text_7 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.txt_s2.animate, .txt_3.animate, .text_7.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Animações para preço */
.preco > div {
  animation: scaleIn 0.8s ease-out;
}


/* Animações para lista de benefícios */
.li_recebe li, .li_bonus li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.li_recebe li.animate, .li_bonus li.animate {
  opacity: 1;
  transform: translateX(0);
}

.li_recebe li:nth-child(1) { transition-delay: 0.1s; }
.li_recebe li:nth-child(2) { transition-delay: 0.2s; }
.li_recebe li:nth-child(3) { transition-delay: 0.3s; }
.li_recebe li:nth-child(4) { transition-delay: 0.4s; }
.li_recebe li:nth-child(5) { transition-delay: 0.5s; }
.li_recebe li:nth-child(6) { transition-delay: 0.6s; }

/* Animações para contador */

/* ========================================
   CUSTOM SCROLLBAR
======================================== */
::selection {
  background: var(--primary-pink);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-pink-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-pink-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink);
}
/* ========================================
   FOOTER SECTION
======================================== */
.footer {
  background-color: #2f0147; /* Dark purple from page palette */
  color: #ffffff;
  padding: 60px 20px 40px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  max-width: 180px;
  margin: 0 auto 30px;
  filter: brightness(0) invert(1); /* Make logo white if needed, or adjust based on actual logo */
}

.footer-contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.contact-column {
  text-align: center;
}

.contact-column h4 {
  color: var(--accent-blue-light); /* Using secondary color for headings */
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-column p {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom .cnpj {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 30px;
  }
  
  .footer-contact-grid {
    flex-direction: column;
    gap: 20px;
  }
}

