/* ========================================
   RIZEMAX CAPS - DESIGN MINIMALISTA MODERNO
   ======================================== */

/* ========================================
   DESIGN SYSTEM - VARIÁVEIS CSS
   ======================================== */
:root {
  /* Cores Principais */
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #4285f4;
  --secondary: #34a853;
  --accent: #fbbc04;
  --danger: #ea4335;
  
  /* Cores Neutras - TEMA ESCURO */
  --white: #ffffff;
  --gray-50: #0f172a;
  --gray-100: #1e293b;
  --gray-200: #334155;
  --gray-300: #475569;
  --gray-400: #64748b;
  --gray-500: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-700: #e2e8f0;
  --gray-800: #f1f5f9;
  --gray-900: #f8fafc;
  --black: #000000;
  
  /* Cores de fundo para tema escuro */
  --bg-primary: #0a0f1a;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
    
    /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Espaçamentos */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Bordas */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
    
    /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transições */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-900);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   LAYOUT E CONTAINERS
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ========================================
   SEÇÃO BADGES E INDICADORES
   ======================================== */
.section-badge,
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary-light)/10, var(--secondary)/10);
  border: 1px solid var(--primary)/20;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.urgency-badge {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 3s infinite;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.03); 
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* ========================================
   NOTIFICAÇÕES DE COMPRA
   ======================================== */
#purchase-notifications {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  pointer-events: none;
}

.purchase-notification {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-2);
  min-width: 320px;
  max-width: 380px;
  box-shadow: 
    0 -20px 25px -5px rgba(0, 0, 0, 0.4),
    0 -10px 10px -5px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.purchase-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.purchase-notification.hide {
  transform: translateX(-100%);
  opacity: 0;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.notification-details {
  flex: 1;
  min-width: 0;
}

.notification-name {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
        line-height: 1.3;
}

.notification-location {
  color: var(--gray-400);
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.notification-product {
  color: #22c55e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.notification-time {
  color: var(--gray-500);
  font-size: 11px;
  text-align: right;
  white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  #purchase-notifications {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .purchase-notification {
    min-width: auto;
    max-width: none;
    padding: var(--space-2) var(--space-3);
  }
  
  .notification-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .notification-name {
    font-size: 13px;
  }
  
  .notification-location {
    font-size: 11px;
  }
  
  .notification-product {
    font-size: 12px;
  }
}

    /* ========================================
   NAVIGATION
       ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: var(--space-3) var(--space-4);
        position: relative;
    }
    
.nav-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Logo centralizada no mobile */
@media (max-width: 767px) {
  .nav-content {
        justify-content: center;
    padding: var(--space-2) var(--space-3);
  }
  
  .nav-urgency {
        position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
  }
}

.nav-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
  transform: scale(1.05) translateY(-1px);
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

@media (max-width: 767px) {
  .nav-logo {
    height: 42px;
  }
}

/* ========================================
   COUNTDOWN BANNER
   ======================================== */
.countdown-banner {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 0;
  animation: countdownPulse 4s ease-in-out infinite;
  box-shadow: 0 1px 20px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.countdown-content {
        display: flex;
        align-items: center;
  justify-content: center;
  gap: var(--space-2);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
        position: relative;
    }
    
.countdown-content::before {
        content: '';
        position: absolute;
  top: -1px;
        left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.countdown-text {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
        display: flex;
        align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.4);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--white);
  font-size: var(--font-size-sm);
  min-width: 65px;
        justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-urgency {
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 500;
  opacity: 0.9;
  animation: urgencyBlink 1.5s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% { 
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    box-shadow: 0 1px 20px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% { 
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
    box-shadow: 0 1px 25px rgba(220, 38, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

@keyframes urgencyBlink {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.6; }
}

/* Responsividade do countdown */
@media (max-width: 767px) {
  .countdown-banner {
    padding: 4px 0;
  }
  
  .countdown-content {
    gap: 8px;
    padding: 0 var(--space-2);
  }
  
  .countdown-text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  
  .countdown-timer {
    font-size: 12px;
    padding: 4px 8px;
    min-width: 60px;
    gap: 1px;
  }
  
  .countdown-urgency {
    font-size: 9px;
    font-weight: 600;
  }
  
  .urgency-badge {
    padding: 4px 8px;
    font-size: 9px;
    border-radius: 15px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
        align-items: center;
  justify-content: center;
        text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-image {
        width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-20) 0;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--white);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  margin-bottom: var(--space-8);
  color: var(--gray-400);
}

.hero-stats {
        display: flex;
        justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.stat-item {
        text-align: center;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  margin-top: var(--space-1);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
        display: flex;
        flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-400);
  font-size: var(--font-size-sm);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollMove 2s ease-in-out infinite;
}

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

/* Responsividade Hero */
@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-2xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-6xl);
  }
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
        justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: var(--font-size-base);
        font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
        overflow: hidden;
    }
    
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(26, 115, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
}

.btn small {
  font-size: var(--font-size-xs);
  opacity: 0.8;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

/* ========================================
   SEÇÕES PADRÃO
   ======================================== */
section {
  padding: var(--space-20) 0;
}

.section-header {
        text-align: center;
  margin-bottom: var(--space-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.section-text {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */
.product-showcase {
  background: var(--bg-secondary);
}

.product-content {
        display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
        align-items: center;
    }
    
.product-image {
  position: relative;
        text-align: center;
}

.product-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-2xl));
  transition: var(--transition);
}

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

.product-float {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--primary)/5, var(--secondary)/5);
  border-radius: var(--radius-2xl);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

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

.trust-indicators {
    display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.trust-item {
    display: flex;
    align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.trust-icon {
  font-size: var(--font-size-base);
}

@media (min-width: 768px) {
  .product-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-info {
    text-align: left;
  }
  
  .section-badge {
    margin-bottom: var(--space-4);
  }
}

/* ========================================
   BENEFITS GRID
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.benefit-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary)/5, var(--secondary)/5);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary)/30;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  padding: var(--space-3);
  background: linear-gradient(135deg, var(--primary)/10, var(--secondary)/10);
  border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.benefit-icon img {
  width: 32px;
  height: 32px;
    object-fit: contain;
  filter: brightness(0) invert(1);
}

.benefit-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: var(--gray-400);
  margin-bottom: 0;
    position: relative;
  z-index: 1;
}

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

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

/* ========================================
   SOCIAL PROOF / TESTIMONIALS
   ======================================== */
.social-proof {
  background: var(--bg-primary);
  color: var(--white);
}

.social-proof .section-title {
  color: var(--white);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-rating {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-lg);
}

.testimonial-card blockquote {
  font-size: var(--font-size-lg);
    font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--white);
    line-height: 1.6;
  font-weight: 400;
}

.testimonial-author {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.testimonial-author strong {
  color: var(--white);
    font-weight: 600;
}

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

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

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
  background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.pricing-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
    text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card-featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--primary)/20 100%);
  transform: scale(1.05);
}

.pricing-header {
  margin-bottom: var(--space-6);
}

.pricing-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--bg-tertiary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
    font-weight: 600;
  margin-bottom: var(--space-4);
  border: 1px solid var(--gray-200);
}

.pricing-badge.popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.pricing-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--white);
}

  .pricing-image {
  margin-bottom: var(--space-6);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

@media (max-width: 767px) {
  .pricing-image {
    min-height: 220px;
  }
}

.pricing-image img {
  width: 260px;
  height: 260px;
  object-fit: contain;
    transition: var(--transition);
  margin: 0 auto;
  display: block;
}

.pricing-image img:hover {
    transform: scale(1.55);
}

/* Responsividade das imagens dos produtos */
@media (max-width: 1023px) {
  .pricing-image img {
    width: 250px;
    height: 250px;
  }
  
  .product-img {
    max-width: 350px;
  }
  
  .kit-image {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .pricing-image img {
    width: 200px;
    height: 200px;
  }
  
  .product-img {
    max-width: 300px;
  }
  
  .kit-image {
    max-width: 200px;
  }
}

.pricing-price {
  margin-bottom: var(--space-6);
}

.price-old {
  font-size: var(--font-size-lg);
  color: var(--gray-400);
    text-decoration: line-through;
  display: block;
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.price-period {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  margin-top: var(--space-2);
    display: block;
}

.savings-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #2e7d32);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-6);
  text-align: left;
}

.pricing-features li {
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

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

/* ========================================
   PAYMENT INFO
   ======================================== */
.payment-info {
    text-align: center;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.payment-item {
    display: flex;
    align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

.payment-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.payment-item img {
  width: 24px;
  height: 24px;
}

.pix-icon {
  width: 24px;
  height: 24px;
  font-size: var(--font-size-lg);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
}

.security-item {
    display: flex;
    align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--white);
}

.security-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary)/50;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: var(--font-size-lg);
    font-weight: 600;
  color: var(--white);
  margin: 0;
}

.faq-toggle {
  font-size: var(--font-size-2xl);
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  display: none;
}

.faq-answer p {
  color: var(--gray-400);
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

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

.faq-cta {
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-primary);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--gray-300);
  margin: 0;
}

.footer-info h4,
.footer-contact h4 {
  font-size: var(--font-size-lg);
    font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.footer-info ul {
  list-style: none;
}

.footer-info li {
  padding: var(--space-2) 0;
  color: var(--gray-300);
  font-size: var(--font-size-sm);
}

.footer-contact p {
  color: var(--gray-300);
  margin-bottom: var(--space-4);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-6);
    text-align: center;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-2);
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* Footer mobile-first */
@media (max-width: 767px) {
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
  
  .footer-brand {
    margin-bottom: var(--space-4);
  }
  
  .footer-brand p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    max-width: 300px;
    margin: var(--space-3) auto 0;
  }
  
  .footer-info h4,
  .footer-contact h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
  }
  
  .footer-info ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-info li {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
  }
  
  .footer-contact p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-contact .btn {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-4);
  }
  
  .footer-bottom p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: var(--space-2);
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
  }
  
  .footer-brand {
    margin-bottom: 0;
  }
  
  .footer-info ul {
    display: block;
  }
  
  .footer-info li {
    background: none;
    padding: var(--space-1) 0;
    border-radius: 0;
  }
}

/* ========================================
   ANIMAÇÕES AOS (Animate On Scroll)
   ======================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

/* ========================================
   UTILIDADES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

/* ========================================
   RESPONSIVIDADE ADICIONAL
   ======================================== */
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .payment-methods {
    flex-direction: column;
    align-items: center;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

/* Ajuste para o header fixo + countdown banner */
body {
  padding-top: calc(var(--header-height) + 50px);
}

/* Scroll suave personalizado */
html {
  scroll-padding-top: var(--header-height);
}

/* ========================================
   AJUSTES RESPONSIVOS ADICIONAIS
   ======================================== */

/* Mobile Extra Small */
@media (max-width: 374px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .pricing-card {
    padding: var(--space-6);
  }
  
  .container {
    padding: 0 var(--space-3);
  }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1023px) {
  .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
  .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
  .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
  .pricing-card-featured {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }
}

/* Desktop Large */
@media (min-width: 1440px) {
  :root {
    --container-max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
}

/* Ajustes para dispositivos com altura reduzida */
@media (max-height: 600px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: var(--space-12) 0;
  }
}

/* High DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .nav-logo,
  .footer-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Modo escuro automático */
@media (prefers-color-scheme: dark) {
  .nav {
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--gray-700);
  }
  
  .nav-logo,
  .footer-logo {
    filter: brightness(0) invert(1);
  }
}

/* Preferências de animação reduzida */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-line {
    animation: none;
  }
  
  .btn-pulse {
    animation: none;
  }
  
  .urgency-badge {
    animation: none;
  }
  
  .product-float {
    animation: none;
  }
}

/* Print styles */
@media print {
  .nav,
  .scroll-indicator,
  .btn,
  .hero-cta,
  .faq-cta {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-title {
    color: var(--white) !important;
  }
  
  .testimonial-card,
  .benefit-card,
  .pricing-card {
    border: 1px solid var(--gray-200) !important;
    background: var(--bg-tertiary) !important;
    color: var(--white) !important;
    break-inside: avoid;
  }
}

/* Ajustes para hover em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
  .benefit-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  .faq-item:hover {
    border-color: var(--gray-200);
    box-shadow: none;
  }
}

/* Otimizações de performance para dispositivos lentos */
@media (max-width: 767px) {
  .product-float {
    animation-duration: 8s;
  }
  
  .scroll-line {
    animation-duration: 3s;
  }
  
  .hero-bg-image {
    transform: none !important;
    }
}

/* ========================================
   NOVAS SEÇÕES - TEMA ESCURO
   ======================================== */

/* Women Satisfaction Section */
.women-satisfaction {
  background: var(--bg-secondary);
  padding: var(--space-20) 0;
}

.women-faces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.face-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.face-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.face-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: var(--transition);
}

.face-item:hover .face-img {
  filter: grayscale(80%) contrast(1.1);
  transform: scale(1.05);
}

.satisfaction-stat {
  text-align: center;
  margin-top: var(--space-8);
}

.stat-highlight {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
}

.stat-number-big {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--danger);
  display: block;
  line-height: 1;
}

.stat-text {
  font-size: var(--font-size-lg);
  color: var(--gray-400);
  margin-top: var(--space-2);
}

/* Before vs After Comparison */
.before-after {
  background: var(--bg-primary);
  padding: var(--space-20) 0;
}

.comparison-grid {
        display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 1200px;
        margin: 0 auto;
    }
    
    .comparison-card {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: var(--transition-slow);
        position: relative;
        overflow: hidden;
    }

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--danger), var(--primary));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.comparison-card:hover::before {
  transform: scaleX(1);
}
    
    .comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
    }
    
.problem-card::before {
  background: linear-gradient(90deg, var(--danger), #ff6b6b);
    }
    
.solution-card::before {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
    }
    
    .card-header {
        text-align: center;
  margin-bottom: var(--space-6);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
        align-items: center;
        justify-content: center;
  font-size: var(--font-size-3xl);
  margin: 0 auto var(--space-4);
  transition: var(--transition);
    }
    
    .problem-icon {
  background: linear-gradient(135deg, var(--danger), #ff4757);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
    }
    
    .solution-icon {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4);
}

.card-header h3 {
  font-size: var(--font-size-2xl);
        font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
    }
    
    .card-subtitle {
  color: var(--gray-400);
  font-size: var(--font-size-base);
}

.problem-item,
.solution-item {
        display: flex;
        align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  transition: var(--transition);
}

.problem-item:hover,
.solution-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
    }
    
    .item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
  font-size: var(--font-size-xl);
  background: rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
}

.item-text h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-1);
}

.item-text p {
  color: var(--gray-400);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* Timeline Progress */
.timeline-progress {
  background: var(--bg-secondary);
  padding: var(--space-20) 0;
}

.safety-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.safety-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.safety-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.safety-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.safety-item span {
  color: var(--gray-300);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.timeline-months {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.month-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: var(--transition);
}

.month-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.month-item h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: var(--space-4) 0;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.month-item p {
  color: var(--gray-400);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* Additional Features */
.additional-features {
  background: var(--bg-primary);
  padding: var(--space-20) 0;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.feature-highlight {
  text-align: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: var(--transition);
}

.feature-highlight:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon-lg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  filter: brightness(1.2);
}

.feature-highlight h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.feature-highlight p {
  color: var(--gray-400);
  margin: 0;
}

.product-showcase-2 {
  text-align: center;
  margin-top: var(--space-12);
}

.kit-image {
  max-width: 280px;
        width: 100%;
        height: auto;
  object-fit: contain;
  margin-bottom: var(--space-8);
  filter: drop-shadow(var(--shadow-2xl));
  transition: var(--transition);
}

.kit-image:hover {
  transform: scale(1.03);
}

.benefits-final {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 600px;
  margin: 0 auto;
}

.benefit-final {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-weight: 500;
  color: var(--gray-300);
  transition: var(--transition);
}

.benefit-final:hover {
  transform: translateY(-2px);
  background: var(--bg-secondary);
}

.benefit-icon {
  font-size: var(--font-size-lg);
}

/* Guarantee Section */
.guarantee {
  background: var(--bg-secondary);
  padding: var(--space-20) 0;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-text h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.guarantee-text p {
  font-size: var(--font-size-lg);
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.guarantee-image {
  text-align: center;
}

.guarantee-seal {
  max-width: 200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-lg));
}

/* Responsividade para as novas seções */
@media (max-width: 767px) {
  .guarantee-content {
    text-align: center;
    gap: var(--space-6);
  }
  
  .guarantee-text h2 {
    font-size: var(--font-size-2xl);
    line-height: 1.2;
  }
  
  .guarantee-text p {
    font-size: var(--font-size-base);
    line-height: 1.5;
  }
  
  .guarantee-seal {
    max-width: 150px;
  }
}

@media (min-width: 768px) {
  .women-faces {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .safety-badges {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .timeline-months {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
  
    .guarantee-content {
    grid-template-columns: 2fr 1fr;
    text-align: left;
    }
    
    .guarantee-image {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .timeline-months {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefits-final {
        grid-template-columns: repeat(4, 1fr);
    }
} 