/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #FFFBF0;
  overflow-x: hidden;
  cursor: default;
}

/* ===== VARIÁVEIS ===== */
:root {
  --sun: #FFD93D;
  --sun-dark: #F2A20C;
  --coral: #FF6B6B;
  --coral-dark: #E05555;
  --teal: #4ECDC4;
  --teal-dark: #38B2AA;
  --purple: #A855F7;
  --purple-light: #F3E8FF;
  --green: #22C55E;
  --green-dark: #16A34A;
  --cream: #FFFBF0;
  --cream2: #FFF3D0;
  --navy: #1E293B;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

/* ===== FLOATING STARS BG ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,217,61,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(78,205,196,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(168,85,247,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}


/* ===== VIDEO VTURB ===== */
.video-section {
  background: var(--navy);
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.video-wrapper {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.1);
}
.video-wrapper vturb-smartplayer {
  display: block;
  width: 100%;
}

/* ===== TOP RIBBON ===== */
.ribbon {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 10;
}
.ribbon .pill {
  display: inline-block;
  background: var(--sun);
  color: var(--navy);
  border-radius: 99px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-right: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(255,107,107,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}
.nav-logo-text small {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 1px;
}
.nav-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 6px 14px;
}
.nav-flags span {
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.nav-flags .sep { color: rgba(255,255,255,0.5); font-size: 14px; }
@media (max-width: 600px) { .nav-flags { display: none; } }

/* ===== URGENCY BAR ===== */
.urgency {
  background: var(--navy);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-text { color: #FFE0A0; font-size: 13px; font-weight: 700; }
.urgency-timer {
  background: var(--coral);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  padding: 4px 16px;
  border-radius: 10px;
  letter-spacing: 2px;
  box-shadow: 0 3px 10px rgba(255,107,107,0.5);
  animation: pulse-timer 1s infinite;
}
@keyframes pulse-timer { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }
.urgency-right { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 700; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, #FFF9E6 0%, #FFF0F0 50%, #F0FFF9 100%);
  padding: 0 0 40px;
  overflow: hidden;
  z-index: 1;
}
/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 400px; height: 400px; background: rgba(255,217,61,0.25); top: -100px; left: -100px; }
.blob-2 { width: 350px; height: 350px; background: rgba(78,205,196,0.2); bottom: -80px; right: -80px; }
.blob-3 { width: 300px; height: 300px; background: rgba(255,107,107,0.15); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 28px 20px 0; gap: 32px; }
}

/* ===== BADGES ===== */
.badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.bdg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 99px;
  white-space: nowrap;
}
.bdg-fire { background: #FFF0E0; color: #C84B00; border: 1.5px solid #FFAD60; }
.bdg-stars { background: #FFF9E0; color: #9B6E00; border: 1.5px solid var(--sun); }
.bdg-3lang { background: #F0FFF4; color: #166534; border: 1.5px solid #86EFAC; }
.bdg-new { background: var(--purple-light); color: #7E22CE; border: 1.5px solid #C4B5FD; animation: glow-purple 2s infinite; }
@keyframes glow-purple { 0%,100%{box-shadow:0 0 0 0 rgba(168,85,247,0)} 50%{box-shadow:0 0 12px rgba(168,85,247,0.4)} }

/* ===== HEADLINE ===== */
.hero-headline {
  font-family: 'Fredoka One', cursive;
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-headline .hl-coral { color: var(--coral); }
.hero-headline .hl-teal  { color: var(--teal-dark); }
.hero-headline .hl-sun   { color: var(--sun-dark); }
@media (max-width: 600px) { .hero-headline { font-size: 30px; } }

.hero-sub {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 24px;
}

/* IDIOMAS PILLS */
.lang-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lang-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  border: 2px solid transparent;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s;
}
.lang-pill:hover { transform: translateY(-2px); }
.lang-pill .flag { font-size: 22px; }
.lang-pill.pt { border-color: #22C55E; color: #166534; }
.lang-pill.en { border-color: #3B82F6; color: #1E40AF; }
.lang-pill.es { border-color: #F59E0B; color: #92400E; }

/* STARS */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 28px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  border: 1.5px solid #FFE49A;
}
.r-stars { color: var(--sun-dark); font-size: 20px; letter-spacing: 2px; }
.r-text { font-size: 13px; color: #475569; font-weight: 700; }
.r-badge { background: var(--sun); color: var(--navy); font-size: 12px; font-weight: 900; padding: 3px 10px; border-radius: 99px; margin-left: auto; }

/* GALLERY */
.gallery { margin-bottom: 0; }
.gal-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  background: #fff;
  margin-bottom: 12px;
  position: relative;
}
.gal-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-main:hover img { transform: scale(1.03); }
.gal-badge-trio {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gal-badge-off {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--coral);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  padding: 6px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(255,107,107,0.5);
  transform: rotate(3deg);
}
.gal-thumbs { display: flex; gap: 8px; }
.gal-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2.5px solid #E2E8F0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.gal-thumb.active { border-color: var(--coral); }
.gal-thumb:hover { transform: scale(1.05); border-color: var(--coral); }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== BUY BOX ===== */
.buy-box {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid #FFE49A;
  position: sticky;
  top: 80px;
}
.bb-head {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  padding: 18px 22px;
  text-align: center;
  color: #fff;
}
.bb-head-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.bb-head-title {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  line-height: 1.2;
}
.bb-head-sub { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 700; margin-top: 3px; }

.bb-body { padding: 20px; }

/* product mini img */
.bb-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: var(--cream2);
  border: 2px solid #FFE49A;
}
.bb-img-wrap img { width: 100%; display: block; }
.bb-in-stock {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
}

/* idiomas no box */
.bb-langs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  justify-content: center;
}
.bb-lang {
  flex: 1;
  background: var(--cream);
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 7px 5px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #475569;
}
.bb-lang .lf { font-size: 18px; display: block; margin-bottom: 2px; }
.bb-lang.pt-l { border-color: #86EFAC; background: #F0FFF4; color: #166534; }
.bb-lang.en-l { border-color: #93C5FD; background: #EFF6FF; color: #1E40AF; }
.bb-lang.es-l { border-color: #FCD34D; background: #FFFBEB; color: #92400E; }

/* stock */
.bb-stock { margin-bottom: 14px; }
.bb-stock-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; margin-bottom: 6px; color: var(--coral-dark); }
.bb-stock-top span { color: #64748B; font-weight: 700; }
.bb-stock-bar { background: #FFE4E4; border-radius: 99px; height: 10px; }
.bb-stock-fill { background: linear-gradient(90deg, var(--coral), var(--sun-dark)); height: 10px; border-radius: 99px; width: 78%; }
.bb-stock-note { font-size: 11px; color: #94A3B8; text-align: center; margin-top: 5px; font-weight: 700; }

/* cores */
.bb-colors { margin-bottom: 16px; }
.bb-colors-label { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.bb-colors-opts { display: flex; gap: 10px; }
.bb-color {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 4px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.bb-color.active { border-color: var(--coral); background: #FFF0F0; }
.bb-color:hover { border-color: #FFAD60; }
.bb-color-dot { width: 36px; height: 36px; border-radius: 50%; box-shadow: 0 3px 8px rgba(0,0,0,0.15); }
.bb-color-name { font-size: 11px; font-weight: 800; color: #475569; }

/* price */
.bb-price { margin-bottom: 18px; background: var(--cream2); border-radius: 16px; padding: 14px 16px; border: 1.5px solid #FFE49A; }
.bb-price-from { font-size: 12px; color: #94A3B8; text-decoration: line-through; font-weight: 700; margin-bottom: 4px; }
.bb-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.bb-price-val { font-family: 'Fredoka One', cursive; font-size: 42px; color: var(--green-dark); line-height: 1; }
.bb-price-tag { background: var(--coral); color: #fff; font-size: 13px; font-weight: 900; padding: 4px 12px; border-radius: 99px; }
.bb-price-parcel { font-size: 13px; color: var(--green-dark); font-weight: 800; }
.bb-price-parcel em { font-style: normal; background: #DCFCE7; padding: 2px 8px; border-radius: 6px; }

/* cta */
.bb-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 18px 16px;
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.bb-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.bb-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,107,0.5); }
.bb-cta:active { transform: scale(0.98); }
.bb-cta small { display: block; font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); margin-top: 3px; }

.bb-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.bb-trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #475569; font-weight: 700; }
.bb-trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.bb-social { text-align: center; font-size: 12px; font-weight: 700; color: #94A3B8; padding: 8px; background: var(--cream); border-radius: 10px; }
.bb-social strong { color: var(--coral); }

/* ===== STRIP SOCIAL ===== */
.social-strip {
  background: var(--navy);
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.strip-item {
  text-align: center;
  color: #fff;
  flex: 1;
  max-width: 160px;
  position: relative;
}
.strip-item + .strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.strip-num { font-family: 'Fredoka One', cursive; font-size: 30px; color: var(--sun); line-height: 1; }
.strip-label { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 700; margin-top: 2px; }

/* ===== BANNER CRIANÇA ===== */
.banner-wrap { position: relative; overflow: hidden; max-height: 440px; z-index: 1; }
.banner-wrap img { width: 100%; max-height: 440px; object-fit: cover; display: block; }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,41,59,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 40px 60px;
}
.banner-text { color: #fff; max-width: 420px; }
.banner-text h2 { font-family: 'Fredoka One', cursive; font-size: 36px; line-height: 1.2; margin-bottom: 10px; }
.banner-text p { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.banner-btn {
  display: inline-block;
  background: var(--sun);
  color: var(--navy);
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: transform 0.2s;
}
.banner-btn:hover { transform: scale(1.05); }
@media (max-width: 600px) {
  .banner-overlay { padding: 24px 24px; }
  .banner-text h2 { font-size: 22px; }
  .banner-text p { font-size: 13px; }
}

/* ===== TRILÍNGUE SECTION ===== */
.tri-section {
  background: linear-gradient(135deg, #F0FFF4 0%, #EFF6FF 50%, #FFFBEB 100%);
  padding: 64px 24px;
  position: relative;
  z-index: 1;
}
.tri-inner { max-width: 1100px; margin: 0 auto; }
.sec-eyebrow { text-align: center; font-size: 13px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; color: var(--teal-dark); }
.sec-title { font-family: 'Fredoka One', cursive; font-size: 38px; color: var(--navy); text-align: center; margin-bottom: 10px; line-height: 1.2; }
@media (max-width: 600px) { .sec-title { font-size: 28px; } }
.sec-sub { text-align: center; font-size: 15px; font-weight: 700; color: #475569; margin-bottom: 48px; }

.tri-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .tri-cards { grid-template-columns: 1fr; } }
.tri-card {
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.tri-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.tri-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
}
.tri-card.pt { background: #F0FFF4; border: 2px solid #86EFAC; }
.tri-card.pt::before { background: #22C55E; }
.tri-card.en { background: #EFF6FF; border: 2px solid #93C5FD; }
.tri-card.en::before { background: #3B82F6; }
.tri-card.es { background: #FFFBEB; border: 2px solid #FCD34D; }
.tri-card.es::before { background: #F59E0B; }
.tri-flag { font-size: 56px; margin-bottom: 14px; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.tri-lang { font-family: 'Fredoka One', cursive; font-size: 26px; margin-bottom: 8px; }
.tri-card.pt .tri-lang { color: #166534; }
.tri-card.en .tri-lang { color: #1E40AF; }
.tri-card.es .tri-lang { color: #92400E; }
.tri-words { font-size: 13px; font-weight: 800; color: #475569; margin-bottom: 16px; }
.tri-examples { display: flex; flex-direction: column; gap: 8px; }
.tri-ex {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}
.tri-ex .emoji { font-size: 18px; flex-shrink: 0; }
.tri-ex .word { color: var(--navy); }
.tri-ex .transl { color: #94A3B8; font-size: 12px; margin-left: auto; }

/* ===== COMO FUNCIONA ===== */
.how-section { background: #fff; padding: 64px 24px; position: relative; z-index: 1; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; gap: 32px; } }
.how-img { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid #fff; }
.how-img img { width: 100%; display: block; }
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.how-step { display: flex; gap: 18px; align-items: flex-start; }
.how-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.how-num.c1 { background: var(--coral); }
.how-num.c2 { background: var(--teal); }
.how-num.c3 { background: var(--purple); }
.how-num.c4 { background: var(--sun-dark); }
.how-content strong { display: block; font-family: 'Fredoka One', cursive; font-size: 19px; color: var(--navy); margin-bottom: 4px; }
.how-content p { font-size: 14px; color: #475569; line-height: 1.6; font-weight: 700; }

/* ===== ESPECIFICAÇÕES ===== */
.specs-section {
  background: var(--navy);
  padding: 64px 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.specs-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(78,205,196,0.08);
}
.specs-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,217,61,0.06);
}
.specs-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.specs-section .sec-title { color: #fff; }
.specs-section .sec-sub { color: rgba(255,255,255,0.6); }
.specs-grid-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .specs-grid-wrap { grid-template-columns: 1fr; gap: 32px; } }
.specs-img { border-radius: 24px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
.specs-img img { width: 100%; display: block; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px 14px;
  transition: background 0.2s;
}
.spec-card:hover { background: rgba(255,255,255,0.12); }
.spec-icon { font-size: 22px; margin-bottom: 6px; display: block; }
.spec-lbl { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.spec-val { font-size: 14px; color: #fff; font-weight: 800; }

/* ===== TODAS AS CORES ===== */
.colors-section { padding: 64px 24px; background: var(--cream); position: relative; z-index: 1; }
.colors-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.colors-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
  position: relative;
}
.colors-img-wrap img { width: 100%; display: block; }
.colors-img-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30,41,59,0.85);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 99px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ===== REVIEWS ===== */
.reviews-section { background: #fff; padding: 64px 24px; position: relative; z-index: 1; }
.reviews-inner { max-width: 1080px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.rev-card {
  background: var(--cream);
  border: 2px solid #FFE49A;
  border-radius: 22px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,0.12); flex-shrink: 0; }
.rev-name { font-weight: 900; font-size: 15px; color: var(--navy); }
.rev-city { font-size: 12px; color: #94A3B8; font-weight: 700; }
.rev-stars { color: var(--sun-dark); font-size: 16px; letter-spacing: 1px; margin-bottom: 10px; }
.rev-text { font-size: 14px; color: #475569; line-height: 1.65; font-weight: 700; }
.rev-verified {
  font-size: 11px;
  color: var(--green-dark);
  font-weight: 800;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rev-verified::before { content: "✓"; background: var(--green); color: #fff; border-radius: 50%; width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); padding: 64px 24px; position: relative; z-index: 1; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 2px solid #FFE49A;
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--coral); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: #FFFBF0; }
.faq-arrow {
  width: 30px;
  height: 30px;
  background: var(--cream2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
  color: var(--coral);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--coral); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  font-weight: 700;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFD93D 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-final::before {
  content: '🌟';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: -40px;
  left: -40px;
  transform: rotate(-20deg);
}
.cta-final::after {
  content: '🎉';
  position: absolute;
  font-size: 180px;
  opacity: 0.05;
  bottom: -40px;
  right: -40px;
  transform: rotate(20deg);
}
.cta-final h2 { font-family: 'Fredoka One', cursive; font-size: 42px; color: #fff; margin-bottom: 12px; line-height: 1.2; }
@media (max-width: 600px) { .cta-final h2 { font-size: 28px; } }
.cta-final p { color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 700; margin-bottom: 28px; }
.cta-price-final {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 24px;
  padding: 20px 40px;
  margin-bottom: 28px;
}
.cpf-from { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: line-through; font-weight: 700; }
.cpf-val { font-family: 'Fredoka One', cursive; font-size: 56px; color: #fff; line-height: 1; }
.cpf-parcel { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 800; margin-top: 4px; }
.cta-final-btn {
  display: inline-block;
  background: #fff;
  color: var(--coral);
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  padding: 18px 48px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 24px;
}
.cta-final-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.cta-trust-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-trust-item { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.cta-trust-item::before { content: "✓"; font-weight: 900; color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-logo { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--sun); margin-bottom: 8px; }
footer p { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.footer-langs { display: flex; justify-content: center; gap: 8px; margin: 14px 0; font-size: 24px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--sun); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP ===== */
.wha-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wha-bubble {
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.wha-btn {
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s;
  animation: pulse-wha 2.5s infinite;
}
.wha-btn:hover { transform: scale(1.1); }
@keyframes pulse-wha {
  0%,100%{ box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%{ box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}
.wha-btn svg { width: 34px; height: 34px; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-mob { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 2px solid #FFE49A; padding: 12px 16px; gap: 12px; align-items: center; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
@media (max-width: 900px) { .sticky-mob { display: flex; } }
.sticky-mob .sm-price { flex: 1; }
.sticky-mob .sm-from { font-size: 11px; color: #94A3B8; text-decoration: line-through; font-weight: 700; }
.sticky-mob .sm-val { font-family: 'Fredoka One', cursive; font-size: 24px; color: var(--green-dark); line-height: 1; }
.sm-btn {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,107,107,0.4);
}

/* ===== FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== CONFETTI PARTICLES ===== */
.confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.conf {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: fall linear infinite;
  opacity: 0.7;
}
@keyframes fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
