
:root{
  --navy:#152a6a;
  --navy-deep:#10235b;
  --red:#ff4a3d;
  --orange:#ff8a00;
  --yellow:#ffbe1a;
  --green:#17a84b;
  --green-dark:#11843a;
  --blue:#2a8ee7;
  --bg:#fcfbf8;
  --bg-soft:#fffdf9;
  --text:#20305c;
  --muted:#5b688e;
  --border:#e8e4dd;
  --shadow:0 16px 45px rgba(24,42,106,.08);
  --shadow-soft:0 10px 25px rgba(24,42,106,.08);
  --shadow-strong:0 18px 40px rgba(24,42,106,.12);
  --radius-lg:30px;
  --radius-md:22px;
  --radius-sm:16px;
  --container:min(1180px, calc(100% - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Nunito',system-ui,-apple-system,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,239,196,.35), transparent 30%),
    radial-gradient(circle at bottom right, rgba(85,209,120,.12), transparent 28%),
    var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
.page-wrap{overflow:hidden}
.container{width:var(--container);margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(24,42,106,.08);
}
.header-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand img{
  width:118px;
  height:auto;
}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1;
}
.site-nav a{
  font-weight:800;
  color:var(--navy);
  position:relative;
  transition:.25s ease;
}
.site-nav a:hover,
.site-nav a.active{color:var(--red)}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-9px;
  margin:auto;
  width:0;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--red),var(--yellow));
  transition:.25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after{width:100%}

.menu-toggle{
  display:none;
  width:48px;height:48px;
  border:none;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  width:22px;height:2.5px;
  background:var(--navy);
  border-radius:999px;
  transition:.25s ease;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:56px;
  padding:14px 24px;
  border-radius:18px;
  font-weight:800;
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-strong);
}
.btn-whatsapp{
  background:linear-gradient(180deg, #20c45a 0%, #14963f 100%);
  color:#fff;
  box-shadow:0 14px 30px rgba(23,168,75,.28);
}
.btn-icon{
  width:22px;height:22px;display:inline-flex;
}
.btn-icon svg{
  width:100%;height:100%;
}

.hero{
  position:relative;
  padding:62px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:42px;
}
.eyebrow,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.86rem;
  font-weight:900;
  color:var(--red);
}
.hero-copy h1,
.section-heading h2,
.footer-cta-card h3{
  font-family:'Baloo 2', cursive;
  margin:8px 0 12px;
  line-height:.94;
  color:var(--navy);
}
.hero-copy h1{font-size:clamp(2.6rem, 5vw, 5.2rem)}
.section-heading h2{font-size:clamp(2.1rem, 3.5vw, 3.4rem)}
.footer-cta-card h3{font-size:clamp(2rem, 3vw, 2.9rem)}
.accent-red{color:var(--red)}
.accent-yellow{color:var(--yellow)}
.rainbow-text{
  background:linear-gradient(90deg,var(--orange),var(--yellow),var(--green),var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-divider{
  display:flex;
  align-items:center;
  gap:10px;
  margin:24px 0 20px;
}
.hero-divider span{
  width:88px;
  max-width:24vw;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--red),var(--yellow));
}
.hero-divider i{
  font-style:normal;
  color:#ff3049;
  font-size:1.15rem;
}
.hero-copy p,
.section-heading p,
.highlight-box p,
.social-note p,
.footer-cta-card p,
.footer-brand p,
.footer-col p{
  margin:0;
  font-size:1.14rem;
  line-height:1.7;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:34px 0 18px;
}
.trust-copy{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-weight:700;
}
.lock{font-size:1.12rem}

.hero-visual{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:8% 6% 10%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.96), rgba(255,255,255,.74)),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.96));
  border:1px solid rgba(24,42,106,.07);
  border-radius:44px;
  box-shadow:var(--shadow);
}
.hero-visual img{
  position:relative;
  z-index:1;
  width:min(100%, 520px);
  filter:drop-shadow(0 20px 35px rgba(0,0,0,.12));
}

.wave-separator{
  position:absolute;
  left:0; right:0; bottom:-2px;
  line-height:0;
}
.wave-separator svg{
  display:block;width:100%;height:125px;
}
.wave-separator path{
  fill:#fff;
  stroke:rgba(26,163,80,.4);
  stroke-width:1.5;
}

.section{
  position:relative;
  padding:88px 0;
}
.section-about,
.section-social{
  background:#fff;
}
.section-heading{
  max-width:820px;
  margin:0 auto 40px;
  text-align:center;
}
.section-heading p{margin-top:10px}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.feature-card{
  background:var(--bg-soft);
  border:1px solid rgba(24,42,106,.06);
  box-shadow:var(--shadow-soft);
  border-radius:26px;
  padding:24px 18px;
  text-align:center;
  transition:.25s ease;
}
.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-strong);
}
.feature-icon{
  width:86px;height:86px;
  margin:0 auto 16px;
  border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(180deg,#ffffff,#f6f3ea);
  box-shadow:inset 0 -8px 20px rgba(255,200,72,.18), 0 10px 25px rgba(24,42,106,.08);
  font-size:2.5rem;
}
.feature-card h3{
  margin:0 0 6px;
  color:var(--navy);
  font-size:1.45rem;
  line-height:1.2;
  font-family:'Baloo 2', cursive;
}
.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:1rem;
}

.highlight-box{
  margin-top:30px;
  padding:24px 28px;
  border:2px solid rgba(23,168,75,.28);
  border-radius:26px;
  background:linear-gradient(180deg,#fff,#fcfffd);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  box-shadow:0 12px 30px rgba(23,168,75,.08);
}
.highlight-icon{font-size:2.4rem}

.social-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.social-card{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 18px;
  border-radius:24px;
  background:linear-gradient(180deg,#fff,#fffdfa);
  border:1px solid rgba(24,42,106,.08);
  box-shadow:
    0 18px 45px rgba(24,42,106,.11),
    0 5px 12px rgba(24,42,106,.05),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow:hidden;
}
.social-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  border-radius:24px 0 0 24px;
  background:var(--navy);
  opacity:.88;
}
.social-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 24px 55px rgba(24,42,106,.16),
    0 8px 20px rgba(24,42,106,.08);
}
.social-card.instagram::before{background:linear-gradient(180deg,#feda75,#d62976,#4f5bd5)}
.social-card.youtube::before{background:#ff0000}
.social-card.tiktok::before{background:linear-gradient(180deg,#25F4EE,#111,#FE2C55)}
.social-card.pinterest::before{background:#E60023}

.social-icon-wrap{
  width:62px;height:62px;
  flex:0 0 62px;
  display:grid;place-items:center;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 30px rgba(24,42,106,.09);
}
.social-icon-img{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
}
.social-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:0;
}
.social-copy strong{
  font-size:1.45rem;
  color:var(--navy);
  font-family:'Baloo 2', cursive;
  line-height:1;
}
.social-copy span{
  font-size:.98rem;
  color:var(--muted);
  font-weight:700;
}
.social-arrow{
  margin-left:auto;
  color:var(--navy);
  font-size:2rem;
  line-height:1;
  transform:translateX(0);
  transition:transform .25s ease;
}
.social-card:hover .social-arrow{transform:translateX(4px)}

.social-note{
  margin:40px auto 0;
  max-width:420px;
  text-align:center;
}
.social-note img{
  width:150px;
  margin:0 auto 8px;
}

.footer-cta{
  position:relative;
  padding:10px 0 0;
  background:#fff;
}
.footer-cta-card{
  background:
    radial-gradient(circle at left top, rgba(255,235,176,.45), transparent 30%),
    radial-gradient(circle at right bottom, rgba(95,215,117,.18), transparent 32%),
    linear-gradient(180deg,#ffffff,#fffaf0);
  border:1px solid rgba(24,42,106,.07);
  box-shadow:var(--shadow);
  border-radius:36px;
  padding:30px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer-cta-card p{max-width:700px}

.site-footer{
  position:relative;
  margin-top:48px;
  background:
    linear-gradient(180deg,#fff 0%, #fefdf8 42%, #ffffff 42%, #ffffff 100%);
}
.footer-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr .95fr;
  gap:28px;
  padding:60px 0 34px;
  border-top:1px solid rgba(24,42,106,.08);
}
.footer-brand img{
  width:140px;
  margin-bottom:12px;
}
.footer-col h4{
  margin:0 0 14px;
  color:var(--navy);
  font-family:'Baloo 2', cursive;
  font-size:1.45rem;
}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-col a,
.footer-col p{
  color:var(--muted);
  line-height:1.7;
}
.footer-col a:hover{color:var(--green)}
.footer-bottom{
  background:linear-gradient(90deg,var(--navy-deep),#17347f);
  color:#fff;
}
.footer-bottom-inner{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-weight:700;
  font-size:.95rem;
}

.footer-decor{
  position:absolute;
  left:0; right:0;
  top:-84px;
  height:120px;
  pointer-events:none;
}
.footer-decor-left, .footer-decor-right{position:absolute;top:0}
.footer-decor-left{left:0;width:280px}
.footer-decor-right{right:0;width:240px}
.hill{
  position:absolute;
  bottom:0;
  display:block;
  background:#119a35;
  border-radius:120px 120px 0 0;
}
.footer-decor-left .hill-1{left:0;width:100px;height:42px}
.footer-decor-left .hill-2{left:68px;width:132px;height:54px}
.footer-decor-right .hill-1{right:0;width:138px;height:64px}
.flower{
  position:absolute;
  font-size:1.8rem;
}
.footer-decor-left .flower{left:152px;top:8px}
.footer-decor-right .flower{left:10px;top:-6px}


/* Ícones oficiais das redes em PNG */
.social-card.instagram:hover{border-color:rgba(214,41,118,.28)}
.social-card.youtube:hover{border-color:rgba(255,0,0,.25)}
.social-card.tiktok:hover{border-color:rgba(0,0,0,.28)}
.social-card.pinterest:hover{border-color:rgba(230,0,35,.25)}

/* Catálogo */
.section-catalog{
  padding:82px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255,190,26,.16), transparent 25%),
    radial-gradient(circle at 90% 70%, rgba(23,168,75,.13), transparent 28%),
    #fffaf1;
}
.catalog-card{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  align-items:center;
  gap:54px;
  padding:46px;
  border-radius:38px;
  background:#fff;
  border:1px solid rgba(24,42,106,.08);
  box-shadow:0 24px 65px rgba(24,42,106,.12);
}
.catalog-visual{
  min-height:300px;
  display:grid;
  place-items:center;
  position:relative;
}
.catalog-visual::before{
  content:"";
  position:absolute;
  width:270px;
  height:270px;
  border-radius:50%;
  background:linear-gradient(145deg, rgba(255,190,26,.3), rgba(23,168,75,.18));
}
.catalog-stack{
  position:relative;
  width:230px;
  height:230px;
}
.catalog-sheet{
  position:absolute;
  inset:18px;
  display:grid;
  place-items:center;
  border-radius:28px;
  font-family:'Baloo 2', cursive;
  font-size:3.2rem;
  font-weight:800;
  color:#fff;
  border:8px solid #fff;
  box-shadow:0 18px 34px rgba(24,42,106,.18);
}
.sheet-one{
  background:#ff4a3d;
  transform:rotate(-10deg) translate(-22px,10px);
}
.sheet-two{
  background:#17a84b;
  transform:rotate(8deg) translate(22px,6px);
}
.sheet-three{
  background:#2a8ee7;
  transform:rotate(-1deg);
}
.catalog-copy h2{
  margin:8px 0 14px;
  font-family:'Baloo 2', cursive;
  font-size:clamp(2.2rem,4vw,3.6rem);
  line-height:1;
  color:var(--navy);
}
.catalog-copy p{
  margin:0 0 26px;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.7;
}
.btn-catalog{
  background:linear-gradient(180deg,#20c45a,#11843a);
  color:#fff;
  box-shadow:0 16px 34px rgba(23,168,75,.28);
}
.catalog-btn-icon{
  width:24px;
  height:24px;
  display:inline-flex;
}
.catalog-btn-icon svg{
  width:100%;
  height:100%;
}
.catalog-copy small{
  display:block;
  margin-top:12px;
  color:var(--muted);
  font-weight:700;
}


/* Ajuste geral de fundo: sem imagens decorativas */
html,
body{
  background:#f7f9fc;
}

.page-wrap{
  background:#f7f9fc;
}

.hero{
  background:#ffffff;
}

.section-about{
  background:#f8fafc;
}

.section-catalog{
  background:#eef8f1;
}

.section-social{
  background:#ffffff;
}

.footer-cta{
  background:#ffffff;
}

.site-footer{
  margin-top:0;
  background:#f8fafc;
  border-top:1px solid rgba(24,42,106,.08);
}

.footer-grid{
  padding-top:48px;
  background:transparent;
  border-top:none;
}

.footer-bottom{
  border-top:none;
}

.footer-decor,
.footer-decor-left,
.footer-decor-right,
.hill,
.flower{
  display:none !important;
}

/* Mantém os cards claros e legíveis */
.hero-visual::before{
  background:#ffffff;
}

.feature-card,
.social-card,
.catalog-card,
.footer-cta-card{
  background:#ffffff;
}

/* Evita espaços vazios no rodapé */
.footer-brand img{
  margin-top:0;
}

.footer-grid{
  align-items:start;
}
