/* ========================================
   ROBÓTICA FÁCIL KIDS - LANDING PAGE
   High-conversion design with psychology
   ======================================== */

/* === CSS VARIABLES === */
:root {
  /* Color Palette - Psychology of Colors for Sales */
  --blue-light: #4C9AFF;      /* Trust, learning, lightness */
  --blue-dark: #0B1E42;        /* Authority, stability */
  --teal: #00C2A8;             /* Security, positive action */
  --yellow: #FFD43B;           /* Attention, energy, conversion */
  --white: #FFFFFF;            /* Clarity, clean visual */
  --gray-bg: #F6F9FC;          /* Breathing room, focus */
  --gray-text: #6B7A90;        /* Muted text */
  --text-dark: #0C1B33;        /* Primary text */
  
  /* Gradients */
  --g-hero: linear-gradient(180deg, rgba(76, 154, 255, 0.15) 0%, #FFFFFF 100%);
  --g-cta: linear-gradient(90deg, #2C74D4 0%, #00C2A8 100%);
  --g-benefits: linear-gradient(135deg, rgba(76, 154, 255, 0.25) 0%, #FFFFFF 100%);
  --g-opportunity: linear-gradient(135deg, #FFD43B 0%, #FFA94D 50%, rgba(76, 154, 255, 0.3) 100%);
  --g-premium: linear-gradient(135deg, rgba(255, 212, 59, 0.15) 0%, #FFFFFF 100%);
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 30, 66, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 30, 66, 0.12);
  --shadow-lg: 0 8px 32px rgba(11, 30, 66, 0.16);
  --shadow-glow: 0 0 20px rgba(76, 154, 255, 0.3);
  --shadow-yellow: 0 4px 20px rgba(255, 212, 59, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

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

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

ul, ol {
  list-style: none;
}

/* Accessibility: Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

*:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.section-title--white {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--gray-text);
  font-weight: 600;
}

.section-subtitle--green {
  color: var(--teal);
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.9);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12,27,51,.18);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
  max-width: 100%;
}

.btn--primary {
  background: linear-gradient(90deg, #2C74D4, #00C2A8);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12,27,51,.18);
  background: linear-gradient(90deg, #00C2A8, #2C74D4);
}

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

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

.btn--premium-pulse {
  animation: premium-pulse 0.8s infinite;
}

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

.btn--secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue-light);
}

.btn--secondary:hover {
  background: var(--gray-bg);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: var(--shadow-yellow);
}

.btn--yellow:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--yellow-solid {
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: var(--shadow-yellow);
}

.btn--yellow-solid:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn--cta-yellow {
  background: #FFC107;
  color: #0B1E42;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-yellow);
  font-weight: 800;
}

.btn--cta-yellow:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12,27,51,.18);
}

/* === TOPBAR === */
.topbar {
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 0.75rem 0;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

#topTimer {
  background: #0B1E42;
}

.topbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.topbar__icon {
  font-size: 1.25rem;
  animation: shake 1s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.topbar__countdown {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0 var(--space-xs);
  border-radius: var(--radius-sm);
  background: rgba(11, 30, 66, 0.1);
}

/* Timer Chip Orange - Oferta */
#topTimer .timer-chip {
  background: #FF6B00;
  color: #0B1E42;
  font-weight: 800;
  padding: .18rem .6rem;
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
  animation: pulseSoft 2.6s ease-in-out infinite;
  display: inline-block;
  position: relative;
}

#topTimer .timer-chip::before {
  content: attr(data-prefix);
  margin-right: .5rem;
  font-weight: 700;
  opacity: .95;
}

@keyframes pulseSoft {
  0%, 100% {
    transform: translateZ(0) scale(1);
    box-shadow: 0 0 0 rgba(255,107,0,0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 18px rgba(255,107,0,.35);
  }
}

/* Urgency glow when < 2 minutes */
.topbar__countdown.urgent {
  animation: glow 1s infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 59, 59, 0.5); }
  50% { box-shadow: 0 0 15px rgba(255, 59, 59, 0.8); }
}

/* === SALES TICKER (Notificações de Vendas) === */
#salesTicker {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  font-weight: 700;
  color: #0B1E42;
}

.saleToast {
  display: inline-block;
  margin-left: -320px;
  background: #fff;
  border-radius: 999px;
  padding: .45rem .9rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid #EAF2FF;
  animation: fly 8s ease-in-out forwards;
}

.saleToast .offer {
  color: #00C2A8;
  font-weight: 800;
}

.saleToast .when {
  color: #6B7A90;
  font-weight: 600;
}

.saleToast .city {
  color: #FF6B00;
  font-weight: 800;
}

@keyframes fly {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  80% {
    transform: translateX(50vw);
    opacity: 1;
  }
  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}

/* === HEADER === */
.header {
  background: var(--blue-dark);
  padding: 1rem 0;
  position: sticky;
  top: 39px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.header__logo {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--white);
}

/* Brand Name Animation */
#brandName{
  font-weight:800;
  background: linear-gradient(90deg,#ffffff 0%,#b9d3ff 50%,#ffffff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  position:relative;
  letter-spacing:.2px;
}
#brandName::after{
  content:"";
  position:absolute;
  left:-10%;
  top:0;
  width:30%;
  height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform:skewX(-20deg);
  filter:blur(1px);
  animation:shine 4s ease-in-out infinite;
}
#brandName:hover{
  filter:drop-shadow(0 2px 10px rgba(255,255,255,.15));
}
@keyframes shine{
  0%{left:-30%}
  50%{left:60%}
  100%{left:110%}
}

.header__cta {
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
}

/* === CLASSE DESTAQUE (palavras-chave) === */
.destaque {
  color: #FFC107;
  font-weight: 700;
}

/* Highlight Colors */
.hl-yellow {
  color: #FFC107;
  font-weight: 800;
}

.hl-red {
  color: #FF3B3B;
  font-weight: 800;
}

.hl-green {
  color: #00C2A8;
  font-weight: 800;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(180deg, #527CC2 0%, #EAF2FF 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__urgent {
  color: #FF3B3B;
  font-weight: 800;
}

.hero__highlight {
  color: #00C2A8;
  font-weight: 800;
}

.hero__subheadline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero__image-wrapper {
  margin: var(--space-xl) auto;
  max-width: 90%;
  width: 100%;
}

.hero__main-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

.hero__bullets {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.hero__bullet {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-base);
  max-width: 500px;
  width: 100%;
}

.hero__bullet:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.hero__bullet-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.hero__trust {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--gray-text);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__trust-icon {
  font-size: 1.125rem;
}

.hero__trust-separator {
  margin: 0 0.25rem;
}

/* === SOCIAL PROOF === */
.social-proof {
  background: var(--white);
  padding: var(--space-xl) 0;
  border-top: 3px solid var(--gray-bg);
  border-bottom: 3px solid var(--gray-bg);
}

.social-proof__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.social-proof__text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
  line-height: 1.6;
}

.social-proof__highlight {
  color: var(--teal);
  font-weight: 700;
}

.social-proof__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.social-proof__badge {
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-base);
}

.social-proof__badge:hover {
  transform: translateY(-2px);
  background: var(--blue-light);
  color: var(--white);
}

/* === FOR WHO SECTION (DOR → SOLUÇÃO) === */
.for-who {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.for-who__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.for-who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.for-who__card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.for-who__card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.for-who__card--pink {
  border: 2px solid #FF6B9D;
}

.for-who__card--pink:hover {
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.4);
}

.for-who__card--green {
  border: 2px solid var(--teal);
}

.for-who__card--green:hover {
  box-shadow: 0 8px 32px rgba(0, 194, 168, 0.4);
}

.for-who__card--blue {
  border: 2px solid var(--blue-light);
}

.for-who__card--blue:hover {
  box-shadow: 0 8px 32px rgba(76, 154, 255, 0.4);
}

.for-who__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

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

.for-who__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* === BENEFITS SECTION === */
.benefits {
  background: var(--g-benefits);
  padding: var(--space-3xl) 0;
}

.benefits--gradient {
  background: linear-gradient(180deg, #527CC2 0%, #EAF2FF 100%);
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.benefits__card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefits__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.benefits__title {
  font-size: 1.375rem;
  color: var(--blue-dark);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.benefits__text {
  color: var(--gray-text);
  font-size: 1rem;
}

.benefits__bonus {
  background: #EAF4FF;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--blue-light);
}

.benefits__bonus-title {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: var(--space-md);
  text-align: center;
}

.benefits__bonus-list {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefits__bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.benefits__bonus-list li:hover {
  background: rgba(76, 154, 255, 0.1);
  transform: translateX(5px);
}

.benefits__check {
  color: var(--teal);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefits__price-highlight {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA94D 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-yellow);
}

.benefits__price-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: var(--space-md);
}

/* === PRICING SECTION === */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  border: 2px solid var(--gray-bg);
  transition: all var(--transition-base);
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--premium {
  border-color: var(--yellow);
  background: var(--g-premium);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

.pricing__card--premium:hover {
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.6);
}

/* Premium Glow Effect */
#combo-premium.glow {
  box-shadow: 0 0 0 3px #FFD43B, 0 16px 40px rgba(255,212,59,.35);
  transition: box-shadow 0.3s ease-in-out;
}

.pricing__card--basic {
  border-color: #E0E7EF;
}

.pricing__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing__name {
  font-size: 1.75rem;
  color: var(--blue-dark);
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
  font-weight: 800;
}

.pricing__price {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
}

/* Pricing Wrapper - New Before/After Price Styles */
.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.25rem 0 0.5rem;
}

.was-price {
  color: #FF3B3B;
  font-weight: 800;
  text-decoration: line-through;
  display: inline-block;
  font-size: 0.95rem;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  justify-content: center;
}

.price .currency {
  font-weight: 800;
  font-size: 1.25rem;
  color: #0B1E42;
}

.price .amount {
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: #0B1E42;
}

.deal-tag {
  display: inline-block;
  background: #FFE9C7;
  color: #7A3C00;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
}

.deal-tag.alt {
  background: #EAF9F6;
  color: #0B6B5E;
}

/* Force strikethrough on was-price */
.was-price,
.was-price * {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #FF3B3B !important;
}

/* LISTA EXCLUÍDA DO BÁSICO – deixar igual aos checks verdes */
.basic-excluded{
  margin-top:.35rem;
}
.basic-excluded li{
  display:flex; align-items:center; gap:.55rem;
  padding:.38rem .25rem;      /* proximidade igual aos verdes */
  border-bottom:1px solid #E6EDF7;  /* mesma divisória suave */
  line-height:1.25;           /* mesma altura de linha */
}
.basic-excluded li:first-child{ margin-top:.15rem; }
.basic-excluded li:last-child{ border-bottom:none; }

/* Ícone ❌ */
.basic-excluded li .x{
  color:#FF3B3B; font-weight:900; font-size:1rem; line-height:1;
}

/* Texto riscado em vermelho, cor de texto igual ao "muted" dos verdes */
.basic-excluded li span{
  color:#6B7A90; font-weight:600;
  text-decoration:line-through;
  text-decoration-thickness:2px;
  text-decoration-color:#FF3B3B;
}

.pricing__features {
  text-align: left;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}

.pricing__features li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
}

.pricing__features li:hover {
  padding-left: var(--space-sm);
  background: rgba(0, 194, 168, 0.05);
}

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

.pricing__trust {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  color: var(--gray-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing__separator {
  margin: 0 0.25rem;
}

/* === PREMIUM DETAILS === */
.premium-details {
  background: #F0F6FF;
  padding: var(--space-3xl) 0;
}

.premium-details__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.premium-details__list {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.premium-details__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.premium-details__item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.premium-details__item--blue {
  background: rgba(76, 154, 255, 0.08);
}

.premium-details__item--blue .premium-details__number {
  background: var(--blue-light);
}

.premium-details__item--green {
  background: rgba(0, 194, 168, 0.08);
}

.premium-details__item--green .premium-details__number {
  background: var(--teal);
}

.premium-details__item--yellow {
  background: rgba(255, 212, 59, 0.15);
}

.premium-details__item--yellow .premium-details__number {
  background: var(--yellow);
  color: var(--blue-dark);
}

.premium-details__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.premium-details__content {
  flex: 1;
}

.premium-details__title {
  font-size: 1.125rem;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.premium-details__desc {
  font-size: 0.95rem;
  color: var(--gray-text);
}

/* === CAROUSEL === */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.carousel__track-container {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel__slide {
  min-width: 100%;
  padding: var(--space-md);
}

.carousel__slide img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--blue-light);
}

.carousel__caption {
  text-align: center;
  margin-top: var(--space-sm);
  color: var(--gray-text);
  font-weight: 600;
  font-size: 1rem;
}

.carousel__progress {
  height: 4px;
  background: var(--blue-light);
  margin-top: var(--space-sm);
  border-radius: 2px;
  transition: width 0.5s ease-in-out;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--blue-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel__btn:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-50%) scale(1.15);
}

.carousel__btn--prev {
  left: -10px;
}

.carousel__btn--next {
  right: -10px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D0E0F0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel__dot:hover {
  background: var(--blue-light);
  transform: scale(1.2);
}

.carousel__dot--active {
  background: var(--blue-dark);
  transform: scale(1.4);
}

/* === PROJECTS CAROUSEL === */
.projects-carousel {
  background: var(--white);
  padding: var(--space-3xl) 0;
}

.projects-carousel__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--white);
  padding: var(--space-3xl) 0;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.testimonial {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid var(--gray-bg);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--blue-light);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial .stars,
.testimonial__stars {
  color: #FFD43B;
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: .4rem;
  text-align: center;
}

.testimonial__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 2px solid var(--gray-bg);
}

.testimonial__author img,
.testimonial .person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.125rem;
  font-size: 1.125rem;
}

.testimonial__badge,
.testimonial .person .tag {
  color: #00C2A8;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-block;
}

.testimonial .person {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .65rem;
}

.testimonials__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* === KPIs SECTION === */
#kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #EAF2FF 0%, #FFFFFF 100%);
  box-shadow: 0 12px 28px rgba(13, 27, 51, 0.06);
  margin: 1rem 0 1.25rem;
}

#kpis .kpi {
  text-align: center;
}

#kpis .kpi strong {
  display: block;
  color: #0B1E42;
  font-size: 1.2rem;
  font-weight: 900;
}

#kpis .kpi span {
  color: #164996;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 680px) {
  #kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === AUTHOR SECTION === */
.author {
  background: var(--gray-bg);
  padding: var(--space-3xl) 0;
}

.author__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.author__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  object-fit: cover;
  border: 3px solid #fff;
}

.author__title {
  font-size: 2rem;
  color: var(--blue-dark);
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.author__subtitle {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: var(--space-xl);
  font-weight: 600;
}

.author__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.author__badges span {
  background: #EAF2FF;
  color: #164996;
  padding: .25rem .5rem;
  border-radius: 999px;
  margin: .2rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-block;
}

.author__badge {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.author__badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.author__badge-icon {
  font-size: 1.75rem;
  color: var(--teal);
}

/* === OPPORTUNITY SECTION === */
.opportunity {
  background: var(--g-opportunity);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.opportunity__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.opportunity__checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.opportunity__checklist li {
  background: rgba(255, 255, 255, 0.25);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--blue-dark);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.opportunity__checklist li:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.opportunity__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.opportunity__ctas .btn {
  width: 100%;
  max-width: 550px;
}

.opportunity__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.opportunity__icon {
  font-size: 1.25rem;
}

.opportunity__separator {
  margin: 0 0.25rem;
}

/* === FAQ === */
.faq {
  background: var(--gray-bg);
  padding: var(--space-3xl) 0;
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.faq__item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.faq__item--final {
  border: 2px solid var(--teal);
}

.faq__question {
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-dark);
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq__question:hover {
  background: var(--gray-bg);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--blue-light);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq__answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
}

.faq__cta {
  display: inline-block;
  margin: var(--space-md) var(--space-lg) var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: all var(--transition-base);
}

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

/* === FOOTER === */
.footer {
  background: var(--blue-dark);
  padding: var(--space-xl) 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.footer__warning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 212, 59, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 0.35rem !important;
  border-left: 4px solid var(--yellow);
}

.footer__warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.footer__warning p {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.footer__separator {
  margin: 0 var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem !important;
}

/* === FLOATING CTA FIXO (aparece após 50% scroll) === */
.floating-cta-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-cta-fixed--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta-fixed__btn {
  display: block;
  padding: var(--space-md) var(--space-lg);
  background: #00C2A8;
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 194, 168, 0.4);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--font-primary);
  animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 194, 168, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(0, 194, 168, 0.6); }
}

.floating-cta-fixed__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 194, 168, 0.6);
}

@media (max-width: 768px) {
  .floating-cta-fixed {
    bottom: 15px;
    right: 15px;
    left: 15px;
  }
  
  .floating-cta-fixed__btn {
    width: 100%;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
  }
}

/* === SCROLL REVEAL ANIMATIONS === */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root {
    --space-3xl: 3rem;
    --space-2xl: 2.5rem;
  }
  
  .header__logo {
    font-size: 1.25rem;
  }
  
  .header__cta {
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero__image-wrapper {
    max-width: 90%;
  }
  
  .carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .carousel__btn--prev {
    left: 5px;
  }
  
  .carousel__btn--next {
    right: 5px;
  }
  
  .for-who__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  
  .opportunity__ctas {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .topbar__text {
    font-size: 0.85rem;
  }
  
  .hero__bullets {
    align-items: stretch;
  }
  
  .hero__bullet {
    font-size: 1rem;
  }
  
  .social-proof__badges {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
