/* ============================================
   BRINQUEDOS PAES — Landing Page
   Design: Vibrante-Profissional B2B
   Paleta: Laranja #FF6B2B | Navy #1A3C5E | Ouro #FFD700
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=DM+Sans:wght@300;400;500;700&family=Nunito:wght@400;600;800;900&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --orange:   #FF6B2B;
  --orange-d: #E85520;
  --navy:     #1A3C5E;
  --navy-d:   #0F2840;
  --gold:     #FFD700;
  --green:    #2ECC71;
  --bg:       #F8F4EF;
  --white:    #FFFFFF;
  --text:     #1A1A2E;
  --text-sm:  #556070;
  --radius:   16px;
  --shadow:   0 8px 32px rgba(26,60,94,.12);
  --shadow-lg:0 24px 64px rgba(26,60,94,.18);
  --transition: .35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
.display { font-family: 'Fredoka One', cursive; }
.nunito  { font-family: 'Nunito', sans-serif; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }
.tag {
  display: inline-block;
  background: rgba(255,107,43,.12);
  color: var(--orange);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag--light { background: rgba(255,255,255,.15); color: var(--gold); }
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-sm);
  max-width: 560px;
}
.section-sub--center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-gold   { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,107,43,.35);
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,43,.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid rgba(26,60,94,.12);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-wpp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-wpp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-lg { padding: 20px 44px; font-size: 1.1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(26,60,94,.1);
  padding: 14px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .navbar__logo { color: var(--navy); }
.navbar__logo span { color: var(--gold); }
.navbar__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar__links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.navbar.scrolled .navbar__links a { color: var(--text-sm); }
.navbar__links a:hover { color: var(--orange); }
.navbar__cta { display: flex; gap: 12px; align-items: center; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 60%, #1e5282 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,215,0,.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,107,43,.12) 0%, transparent 50%);
}
.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--gold);
  animation: float 6s ease-in-out infinite;
}
.bubble:nth-child(1)  { width:80px;  height:80px;  top:15%; left:8%;  animation-delay:0s; }
.bubble:nth-child(2)  { width:120px; height:120px; top:65%; left:2%;  animation-delay:1s; }
.bubble:nth-child(3)  { width:60px;  height:60px;  top:35%; right:12%;animation-delay:2s; }
.bubble:nth-child(4)  { width:200px; height:200px; top:5%;  right:5%; animation-delay:.5s; background:var(--orange); }
.bubble:nth-child(5)  { width:40px;  height:40px;  bottom:20%; right:20%;animation-delay:1.5s; }

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

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.25);
  color: var(--gold);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .05em;
}
.hero__badge::before { content:'✦'; font-size:.7rem; }
.hero__title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title .highlight {
  color: var(--gold);
  position: relative;
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero__playground-icon {
  font-size: 120px;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.hero__card-label { font-size: .75rem; color: var(--text-sm); font-family:'Nunito',sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom: 8px; }
.hero__card-value { font-family:'Fredoka One',cursive; font-size: 1.5rem; color: var(--navy); }
.hero__card-value span { color: var(--green); font-size: 1rem; font-family:'Nunito',sans-serif; font-weight:800; }
.hero__bars { display: flex; gap: 8px; align-items: flex-end; margin-top: 12px; }
.hero__bar {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 4px 4px 0 0;
  transition: height .5s ease;
}
.hero__bar:nth-child(1){height:30px}
.hero__bar:nth-child(2){height:45px}
.hero__bar:nth-child(3){height:60px}
.hero__bar:nth-child(4){height:80px}
.hero__bar:nth-child(5){height:100px; background: linear-gradient(to top,var(--green),#5eed9a)}

/* ============================================
   PROBLEMA → SOLUÇÃO
   ============================================ */
.problem { padding: 80px 0; background: var(--white); }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem__arrow {
  font-size: 3rem;
  text-align: center;
  color: var(--orange);
}
.problem__box {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px;
  border-left: 4px solid var(--orange);
}
.problem__box--solution { border-left-color: var(--green); }
.problem__box h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.problem__list { display: flex; flex-direction: column; gap: 12px; }
.problem__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
}
.problem__item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   BENEFÍCIOS
   ============================================ */
.benefits { padding: 96px 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(26,60,94,.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,107,43,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-card__icon { background: var(--orange); transform: scale(1.1) rotate(5deg); }
.benefit-card__title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.benefit-card__desc { font-size: .9rem; color: var(--text-sm); line-height: 1.65; }

/* ============================================
   COMO FUNCIONA
   ============================================ */
.how { padding: 96px 0; background: var(--navy); color: var(--white); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.how__step { text-align: center; padding: 0 16px; position: relative; }
.how__step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(255,107,43,.35);
}
.how__step-icon { font-size: 1.6rem; }
.how__step-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.how__step-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================
   PRODUTOS
   ============================================ */
.products { padding: 96px 0; background: var(--white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.product-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(26,60,94,.07);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.product-card__thumb--orange { background: linear-gradient(135deg,#FFF3EE,#FFE0D0); }
.product-card__thumb--blue   { background: linear-gradient(135deg,#EEF4FF,#D0E0FF); }
.product-card__thumb--green  { background: linear-gradient(135deg,#EEFFF4,#D0FFE0); }
.product-card__thumb--yellow { background: linear-gradient(135deg,#FFFFF0,#FFFFE0); }
.product-card__thumb--purple { background: linear-gradient(135deg,#F4EEFF,#E0D0FF); }
.product-card__thumb--red    { background: linear-gradient(135deg,#FFEEF0,#FFD0D8); }
.product-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .7rem;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-card__body { padding: 24px; }
.product-card__title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-card__desc { font-size: .88rem; color: var(--text-sm); line-height: 1.6; margin-bottom: 16px; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-card__tag {
  background: rgba(26,60,94,.07);
  color: var(--text-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ============================================
   PÚBLICO-ALVO (SEGMENTOS)
   ============================================ */
.segments { padding: 96px 0; }
.segments__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.segment-card {
  border-radius: 20px;
  padding: 32px 28px;
  background: var(--white);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.segment-card:hover {
  border-color: var(--orange);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
.segment-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.segment-card__title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.segment-card__desc { font-size: .88rem; color: var(--text-sm); line-height: 1.6; }
.segment-card__gain {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(46,204,113,.1);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: #1a8a4a;
}
.segment-card__gain::before { content: '📈 '; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials { padding: 96px 0; background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card__quote {
  font-size: 3rem;
  color: var(--orange);
  font-family: 'Fredoka One', cursive;
  line-height: .8;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: .95rem;
  color: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-card__role { font-size: .78rem; color: var(--text-sm); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 12px; }

/* ============================================
   SOBRE
   ============================================ */
.about { padding: 96px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  background: linear-gradient(135deg,var(--orange),var(--gold));
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about__visual::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.about__visual-icon { font-size: 100px; margin-bottom: 24px; }
.about__visual-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.about__visual-sub { color: rgba(255,255,255,.8); font-size: .9rem; }
.about__highlights { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about__highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__highlight-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,107,43,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about__highlight-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.about__highlight-text { font-size: .88rem; color: var(--text-sm); }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 96px 0; background: var(--white); }
.faq__list { margin-top: 56px; max-width: 800px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 16px; }
.faq__item {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,60,94,.06);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq__question:hover { color: var(--orange); }
.faq__chevron {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,107,43,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq__item.open .faq__chevron { transform: rotate(180deg); background: var(--orange); color: var(--white); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer-inner {
  padding: 0 28px 24px;
  font-size: .95rem;
  color: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   CONTATO
   ============================================ */
.contact { padding: 96px 0; background: var(--navy); color: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem,4vw,2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact__info p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact__detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact__detail-label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; }
.contact__detail-value { font-size: .95rem; color: rgba(255,255,255,.85); }

/* Formulário */
.form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__group--full { grid-column: 1/-1; }
.form__label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,.35); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(255,107,43,.2);
}
.form__select { cursor: pointer; }
.form__select option { background: var(--navy); color: var(--white); }
.form__textarea { height: 120px; resize: vertical; }
.form__submit { display: flex; gap: 16px; flex-wrap: wrap; }
.form__message {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  display: none;
}
.form__message--success { background: rgba(46,204,113,.15); border: 1px solid rgba(46,204,113,.3); color: #4ade80; }
.form__message--error   { background: rgba(255,107,43,.15);  border: 1px solid rgba(255,107,43,.3);  color: #fca572; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 96px 0;
  background: linear-gradient(135deg,var(--orange),var(--orange-d));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-final__content { position: relative; z-index: 1; }
.cta-final__title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem,4vw,3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-final__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand-logo span { color: var(--gold); }
.footer__brand-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer__col-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.wpp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wpp-float__bubble {
  background: var(--white);
  border-radius: 16px 16px 0 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  max-width: 220px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px) scale(.95);
  transition: var(--transition);
  pointer-events: none;
}
.wpp-float:hover .wpp-float__bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.wpp-float__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  position: relative;
}
.wpp-float__btn:hover { transform: scale(1.1); background: #1ebe5d; }
.wpp-float__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.2);
  animation: pulse-wpp 2s ease-in-out infinite;
}
@keyframes pulse-wpp {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--orange),var(--gold));
  z-index: 2000;
  width: 0;
  transition: width .1s linear;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 110px;
  right: 36px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
  border: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange); transform: translateY(-2px); }

/* ============================================
   COUNTER NUMBERS
   ============================================ */
.counter { transition: var(--transition); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-d);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benefits__grid     { grid-template-columns: repeat(2,1fr); }
  .products__grid     { grid-template-columns: repeat(2,1fr); }
  .how__steps         { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .how__steps::before { display: none; }
  .footer__grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar__links, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero__grid        { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__desc, .hero__cta { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero__stats       { grid-template-columns: repeat(3,1fr); }
  .hero__visual      { display: none; }
  .problem__grid     { grid-template-columns: 1fr; }
  .problem__arrow    { transform: rotate(90deg); }
  .benefits__grid    { grid-template-columns: 1fr; }
  .how__steps        { grid-template-columns: 1fr; }
  .products__grid    { grid-template-columns: 1fr; }
  .segments__grid    { grid-template-columns: 1fr 1fr; }
  .testimonials__grid{ grid-template-columns: 1fr; }
  .about__grid       { grid-template-columns: 1fr; }
  .contact__grid     { grid-template-columns: 1fr; }
  .form__row         { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; }
  .footer__bottom    { flex-direction: column; text-align: center; }
  .wpp-float         { bottom: 20px; right: 20px; }
  .back-top          { bottom: 90px; right: 24px; }
}

@media (max-width: 480px) {
  .segments__grid { grid-template-columns: 1fr; }
  .hero__stats    { grid-template-columns: 1fr 1fr; }
}
