/* styles.css — final limpo */

/* =========================
   1) TOKENS / VARIÁVEIS
   ========================= */
:root{
  --max: 1040px;
  --radius: 18px;
  --radius-lg: 24px;
  --gap: 14px;

  --bg: #f5f6f8;
  --text: rgba(15,15,20,.92);
  --muted: rgba(20,20,28,.68);
  --border: rgba(0,0,0,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.10);

  --row: 120px; /* mosaic row height */

  /* Palette */
  --c-greenteal: #52A38C;
  --c-sage:      #DAE39E;
  --c-rust:      #D67559;
  --c-lilac:     #8496D7;
  --c-olive:     #5E6D53;
  --c-purple:    #9F77A5;
  --c-butter:    #DAD495;

  --c-white:     #FFFEFC;
  --c-gray-1:    #E1E4ED;
  --c-gray-2:    #818181;
  --c-black:     #161616;

  /* Parents split tokens */
  --ps-max: 1100px;
  --ps-radius: 22px;
  --ps-shadow: 0 18px 40px rgba(10, 20, 30, .10);
  --ps-border: rgba(20, 30, 40, .10);

  --ps-text: #101828;
  --ps-muted: rgba(16, 24, 40, .70);

  --ps-accent: #52A38C;
  --ps-accent-2: #3B82F6;
}

/* =========================
   2) BASE
   ========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: #fff; /* fundos são dados por secção */
}

h1,h2,h3{ color: rgba(10,10,14,.95); }
p{ color: var(--text); }

a{ color: inherit; }

.brand img {
  height: clamp(28px, 3vw, 40px);
  width: auto;
}

/* Acessibilidade */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   3) LAYOUT GLOBAL: BANDS FULL-WIDTH
   ========================= */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0;
}

@media (max-width: 980px) {
  .container{
  padding: 5%;
}
}

.band{
  padding: 0;
}

.band--white{
  background: #fff;
}

.band--light{
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(56,199,147,.08), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(132,150,215,.08), transparent 55%),
    linear-gradient(#fbfcfe, #fbfcfe);
}

.band--tint{
  background:
    radial-gradient(820px 420px at 30% 10%, rgba(218,212,149,.22), transparent 55%),
    radial-gradient(720px 420px at 80% 35%, rgba(52,185,127,.10), transparent 55%),
    linear-gradient(var(--bg), var(--bg));
}

.band--dark{
  background: rgba(15,15,20,.92);
  color: #fff;
}
.band--dark h1,
.band--dark h2,
.band--dark h3{ color:#fff; }
.band--dark p{ color: rgba(255,255,255,.84); }

/* Headings de secções */
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 28px);
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* =========================
   4) TOPBAR
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(245,246,248,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
@media (max-width: 980px) {

  .topbar {
    padding: 16px;
  }

  .nav {
    gap: 12px;
  }

  .nav a:not(.cta-parents) {
    display: none;
  }

  .cta-parents {
    display: inline-flex;
  }
}
.mobile-only {
  display: none;
}

@media (max-width: 980px) {

  .nav a[href="index.html#beneficios"],
  .nav a[href="index.html#como"],
  .nav .cta {
    display: none;
  }

  .cta-parents {
    display: inline-flex;
  }
}

.brand{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
  color: rgba(10,10,14,.92);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand:hover{
  opacity: .85;
}


.nav{ display:flex; gap: 10px; flex-wrap: wrap; }
.nav a{
  color: rgba(15,15,20,.82);
  text-decoration:none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}
.nav a:hover{ background: rgba(0,0,0,.06); }
.nav a.cta{
  background: rgba(15,15,20,.92);
  border-color: rgba(15,15,20,.92);
  color: #fff;
}


.nav a.cta-parents{
  /* background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-greenteal) 100%); */
  background: var(--c-greenteal);
  border: 1px solid var(--c-greenteal);
  color:#fff;
}




/* =========================
   5) BOTÕES
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 750;
  font-size: 14px;
  color: rgba(15,15,20,.88);
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  transition: transform .14s ease, background .14s ease, box-shadow .14s ease;
}
.btn:hover{ background: rgba(0,0,0,.06); }
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: var(--c-greenteal);
  border-color:1px solid var(--c-greenteal);
  color:#fff;
}

.btn.primary:hover{ box-shadow: 0 14px 32px rgba(0,0,0,.14); }

/* =========================
   6) HERO + MOSAIC
   ========================= */
.hero-wrap{
  position: relative;
  padding: 20px 18px 34px;
  min-height: 760px;
  background: var(--bg);
  
}
@media (max-width: 700px){
  .hero-wrap{ margin-bottom: 100px; }
}

#benefits{
  padding-top: 5%;
  padding-bottom: 5%;
}
.mosaic{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: var(--row);
  gap: var(--gap);
  position: relative;
  z-index: 0;
}

.tile{
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow:hidden;
  position: relative;
  filter: brightness(.96) contrast(1.02) saturate(.98);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.tile::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(700px 260px at 50% 10%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.12));
}

/* size helpers */
.w1{ grid-column: span 2; }
.w2{ grid-column: span 3; }
.h1{ grid-row: span 2; }
.h2{ grid-row: span 3; }

/* spotlight */
.hero-wrap::before{
  content:"";
  position:absolute;
  inset: 0;
  z-index: 1;
  pointer-events:none;
  /*background:
    radial-gradient(780px 440px at 50% 52%,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.70) 45%,
      rgba(255,255,255,0) 74%);*/
}

/* card */
.hero-card{
  max-width: min(var(--max), 92vw);
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;

  padding: 26px 26px 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.05;
  color: rgba(10,10,14,.95);
}

.lead{
  margin: 0 0 16px;
  max-width: 68ch;
  font-size: 16px;
  color: rgba(20,20,28,.75);
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.micro{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(20,20,28,.55);
}
.micro.subtle{ margin-top: 10px; }

/* =========================
   7) PARENTS SPLIT (full width)
   ========================= */
.parents-split{
  padding: clamp(28px, 5vw, 64px) 18px;
  color: var(--ps-text);
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(56,199,147,.10), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(59,130,246,.08), transparent 55%),
    linear-gradient(#fff, #fff);
}

.ps-wrap{
  max-width: var(--ps-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.ps-media{ position: relative; }
.ps-collage{ position: relative; height: clamp(360px, 48vw, 520px); }

.ps-photo{
  position: absolute;
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow);
  background: #fff;
}
.ps-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.ps-photo--top{
  width: min(280px, 78%);
  height: min(340px, 72%);
  top: 0;
  left: 0;
}

.ps-photo--bottom{
  width: min(340px, 88%);
  height: min(240px, 60%);
  bottom: 0;
  left: 18%;
}

.ps-collage::before{
  content:"";
  position:absolute;
  inset: 22px 10% 26px 10%;
  border-radius: calc(var(--ps-radius) + 10px);
  background: linear-gradient(135deg, rgba(16,24,40,.04), rgba(16,24,40,.02));
  border: 1px solid rgba(20,30,40,.06);
  z-index: -1;
}

.ps-kicker{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ps-accent);
  letter-spacing: .2px;
}
.grey{
  color: #78827b;
}

.ps-title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.ps-lead{
  margin: 0 0 22px;
  color: var(--ps-muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 52ch;
}

#partners .ps-lead{
  max-width: 100%;
}

.ps-points{
  display: grid;
  gap: 14px;
  margin: 10px 0 0;
}
.ps-point{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(20,30,40,.08);
  box-shadow: 0 10px 26px rgba(10, 20, 30, .06);
  backdrop-filter: blur(6px);
}
.ps-point h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.ps-point p{
  margin: 0;
  color: var(--ps-muted);
  line-height: 1.6;
  font-size: 15.5px;
}

/* =========================
   8) BENEFÍCIOS / TWO-COL + CHECKS + MINI-CARDS
   ========================= */
.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.big{
  margin: 10px 0 14px;
  color: rgba(20,20,28,.75);
  font-size: 15px;
  max-width: 70ch;
}

.checks{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.checks li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(20,20,28,.80);
}
.check{
  width: 22px; height: 22px;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  color: var(--c-greenteal);
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}

.inline-cta{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.benefits {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px 0px;
}

.mini-proof{
  display:grid;
  gap: 12px;
}

.mini-card{
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  background: var(--c-greenteal);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mini-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
}
.mini-card h3{ margin: 0 0 6px; font-size: 15px; color:#fff; }
.mini-card p{ margin: 0; color: rgba(255,255,255,.86); font-size: 14px; }

/* =========================
   9) CATEGORIAS (CARDS COM FOTO)
   ========================= */
/* 6 cards numa só linha (scroll horizontal) */
.cat-grid{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr); /* largura de cada card */
  gap: 14px;

  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cat-card{
  scroll-snap-align: start;
}

/* opcional: scrollbar mais discreta */
.cat-grid::-webkit-scrollbar{ height: 10px; }
.cat-grid::-webkit-scrollbar-track{ background: rgba(0,0,0,.06); border-radius: 999px; }
.cat-grid::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.18); border-radius: 999px; }


.cat-card{
  display:flex;
  flex-direction: column;
  text-decoration:none;
  border-radius: 20px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.cat-photo{
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.20));
}

.cat-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.cat-body h3{
  margin: 0;
  font-size: 16px;
  color: rgba(10,10,14,.95);
}

.cat-body p{
  margin: 0;
  color: rgba(20,20,28,.70);
  font-size: 14px;
  line-height: 1.35;
}

/* =========================
   10) STEPS
   ========================= */
.grid{ display:grid; gap: 14px; }

.steps{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.step-num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  background: var(--c-greenteal);
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 10px;
  color: var(--c-white);
}
.step h3{ margin: 0 0 6px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); font-size: 14px; }

/* =========================
   11) WAITLIST / FORM (em banda escura)
   ========================= */
.cta-box{
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.form{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form input{
  flex: 1 1 260px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: #fff;
  outline: none;
}
.form input::placeholder{ color: rgba(255,255,255,.55); }
.form button{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
  color: rgba(15,15,20,.92);
  font-weight: 850;
  cursor: pointer;
}
.form button:hover{ opacity: .92; }

/* =========================
   12) FOOTER
   ========================= */
.footer{
  padding: 18px 0 26px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  color: rgba(15,15,20,.55);
  font-size: 13px;
}
.footer a{ color: rgba(15,15,20,.55); text-decoration:none; }
.footer a:hover{ text-decoration: underline; }
.dot{ opacity: .5; }

.footer-inner{
  display:flex;
  gap: 10px;
  align-items:center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 80%;
  margin-left:10%;
  margin-right:10%;
}

.footer-links a {
  color: #7d7d7d;
  text-decoration: none;
  transition: all .2s ease;
}

.footer-links a:hover {
  color: #111;
}

.social-link {
  font-size: 1.1rem;
}
.social-link:hover {
  transform: translateY(-1px);
}
.socials {
  display: flex;
  gap: 20px;
  margin-left: 6px;
}

/* =========================
   13) IMAGE MAPPING (TILES)
   ========================= */
.t01{ background-image: url("images/activities/pexels-anastasia-shuraeva-8467270.jpg"); }
.t02{ background-image: url("images/activities/pexels-artempodrez-6941690.jpg"); }
.t03{ background-image: url("images/activities/pexels-brett-sayles-1154180.jpg"); }
.t04{ background-image: url("images/activities/pexels-cottonbro-4705616.jpg"); }
.t05{ background-image: url("images/activities/pexels-cottonbro-4708904.jpg"); }
.t06{ background-image: url("images/activities/pexels-cottonbro-5801563.jpg"); }
.t07{ background-image: url("images/activities/pexels-cottonbro-7186287.jpg"); }
.t08{ background-image: url("images/activities/pexels-cottonbro-7207554.jpg"); }
.t09{ background-image: url("images/activities/pexels-cottonbro-7988962.jpg"); }
.t10{ background-image: url("images/activities/pexels-cottonbro-9644667.jpg"); }
.t11{ background-image: url("images/activities/pexels-gustavo-fring-5888283.jpg"); }
.t12{ background-image: url("images/activities/pexels-gustavo-fring-5888285.jpg"); }
.t13{ background-image: url("images/activities/pexels-kampus-8941639.jpg"); }
.t14{ background-image: url("images/activities/pexels-kindelmedia-9044049.jpg"); }
.t15{ background-image: url("images/activities/pexels-mart-production-8471931.jpg"); }
.t16{ background-image: url("images/activities/pexels-nataliaolivera-30594012.jpg"); }
.t17{ background-image: url("images/activities/pexels-pavel-daniyuk-7521307.jpg"); }
.t18{ background-image: url("images/activities/pexels-rdne-8223924.jpg"); }
.t19{ background-image: url("images/activities/pexels-ron-lach-10638115.jpg"); }
.t20{ background-image: url("images/activities/pexels-shvetsa-11368512.jpg"); }
.t21{ background-image: url("images/activities/pexels-tima-miroshnichenko-7047304.jpg"); }
.t22{ background-image: url("images/activities/pexels-yankrukov-8519721.jpg"); }
.t23{ background-image: url("images/activities/pexels-yankrukov-8612893.jpg"); }

/* =========================
   HOW IT WORKS — MOCKUP MODERNO
   ========================= */

.how-mockup{
  position: relative;
  overflow: hidden;
}

/* um toque extra ao fundo desta banda (opcional mas fica lindo) */
.how-mockup::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto -80px;
  height: 320px;
  background:
    radial-gradient(520px 220px at 15% 70%, rgba(56,199,147,.18), transparent 60%),
    radial-gradient(520px 260px at 85% 40%, rgba(132,150,215,.16), transparent 60%);
  pointer-events:none;
}

.how-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  position: relative;
}

.how-kicker{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(16,24,40,.75);
}

.how-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.how-sub{
  margin: 0 0 18px;
  color: rgba(20,20,28,.72);
  max-width: 60ch;
  line-height: 1.6;
}

.how-steps{
  display: grid;
  gap: 12px;
  margin: 18px 0 18px;
}

/* cards “glass” */
.how-step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}

.how-step h3{
  margin: 0 0 4px;
  font-size: 16px;
}
.how-step p{
  margin: 0;
  color: rgba(20,20,28,.70);
  font-size: 14px;
  line-height: 1.45;
}

.how-badge{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;

  background: linear-gradient(135deg, var(--c-greenteal), var(--c-sage));
  box-shadow: 0 12px 26px rgba(59,130,246,.18);
}

.how-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* RIGHT side */
.how-visual{
  display:flex;
  justify-content: right;
}

.phone-card{
  position: relative;
  width: min(420px, 92%);
  padding: 14px;

}

.phone-img{
  width: 60%;
  height: auto;
  display: block;
}

/* glow por trás */
.phone-glow{
  position:absolute;
  inset: 14px;
  border-radius: 26px;
  z-index: -1;
  filter: blur(18px);
  
}

/* Responsive */
@media (max-width: 980px){
  .how-grid{
    grid-template-columns: 1fr;
  }
  .how-visual{
    order: 2;
    margin-top: 10px;
  }
}

/* =========================
   14) RESPONSIVO
   ========================= */
@media (max-width: 1100px){
  .mosaic{ grid-template-columns: repeat(8, minmax(0,1fr)); }
  .steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .two-col{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px){
  .ps-wrap{ grid-template-columns: 1fr; }
  .ps-photo--bottom{ left: 10%; }
}

@media (max-width: 820px){
  .mosaic{ grid-template-columns: repeat(6, minmax(0,1fr)); }
  .hero-wrap{ min-height: 860px; }
  .hero-card{ top: 56%; }
}

@media (max-width: 520px){
  .mosaic{ grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
  .w1{ grid-column: span 2; }
  .w2{ grid-column: span 4; }

  .hero-card{
    position: relative;
    left:auto; top:auto; transform:none;
    margin: 14px auto 0;
  }
  .hero-wrap{ min-height: auto; padding-bottom: 18px; }

  .steps{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: 1fr; }
  .cat-photo{ height: 170px; }
}


/* =========================
   FORMS — Gleedot (Netlify)
   ========================= */

.form-shell{
  max-width: 860px;
}

.glee-form{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

.band--dark .glee-form{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.field{ margin-bottom: 14px; }

.field label{
  display:block;
  font-size: 13px;
  font-weight: 800;
  color: rgba(16,24,40,.85);
  margin: 0 0 7px;
}

.glee-form input[type="text"],
.glee-form input[type="email"],
.glee-form input[type="tel"],
.glee-form select,
.glee-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  color: rgba(10,10,14,.95);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
}

.glee-form textarea{ resize: vertical; }

.glee-form input:focus,
.glee-form select:focus,
.glee-form textarea:focus{
  border-color: rgba(52,185,127,.55);
  box-shadow: 0 0 0 5px rgba(52,185,127,.14);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 700px){
  .grid-2{ grid-template-columns: 1fr; }
}

.fieldset{
  margin: 14px 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.68);
}

.fieldset legend{
  padding: 0 8px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(16,24,40,.85);
}

.hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(20,20,28,.60);
}

/* Chips */
.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  cursor: pointer;
  user-select: none;
  font-weight: 750;
  font-size: 13px;
  color: rgba(15,15,20,.86);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.chip input{ accent-color: var(--c-greenteal); }

.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

/* Radios */
.radios{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.radio{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  font-weight: 800;
  font-size: 13px;
}

.radio input{ accent-color: var(--c-greenteal); }

/* Submit line */
.form-actions{
  display:flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.fineprint{
  margin: 12px 2px 0;
  font-size: 12px;
  color: rgba(20,20,28,.60);
}
.fineprint a{
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Honeypot hidden */
.hp{ display:none; }

/* =========================
   HERO — mobile com mais identidade
   ========================= */
@media (max-width: 520px){

  /* tiles mais pequenos => vê-se mais fotos */
  :root{
    --row: 56px;
    --gap: 9px;
  }

  .hero-wrap{
    padding: 12px 14px 18px;
    min-height: auto;
    background: var(--bg);
  }

  /* MOSAIC: mais baixo, mais fotos, menos lavado */
  .mosaic{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: 600px;     /* mais alto que antes = mais fotos */
    overflow: hidden;
    border-radius: 22px;
  }

  .tile{
    border-radius: 16px;
    filter: brightness(1.02) contrast(1.06) saturate(1.08); /* mais cor */
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
  }

  /* reduz o overlay escuro de cada tile */
  .tile::after{
    background:
      radial-gradient(520px 220px at 50% 10%, rgba(255,255,255,.12), rgba(255,255,255,0) 55%),
      linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.08));
  }

  /* SPOTLIGHT: menos branco, mais “glow”
  .hero-wrap::before{
    background:
      radial-gradient(520px 340px at 50% 40%,
        rgba(255,255,255,.78) 0%,
        rgba(255,255,255,.52) 46%,
        rgba(255,255,255,0) 78%);
  } */

  /* HERO CARD: centrada e mais pequena */
  .hero-card{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -300px auto 0; /* sobe e fica “no meio”, não lá em baixo */
    padding: 16px 14px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
    /* text-align: center;    TEXTO CENTRADO */
  }

  .hero-card h1{
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }

  /* garante estilo do texto mesmo sem class="lead" */
  .hero-card p{
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.45;
    color: rgba(20,20,28,.74);
  }

  /* botões em coluna, alinhados ao centro */
  .hero-actions,
  .actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
    justify-items: center;
  }

  .btn{
    width: 100%;
    max-width: 340px;     /* fica centrado e “premium” */
    justify-content: center;
    padding: 12px 14px;
  }
}

.blog-section {
  padding: 50px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.blog-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: #15151f;
}

#blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 30, 0.08);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(20, 20, 30, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(20, 20, 30, 0.08);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #15151f;
}

.blog-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 12px;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #15151f;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  .blog-section {
    padding: 56px 20px;
  }

  #blog-posts {
    grid-template-columns: 1fr;
  }
}

.article-page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  font-family: Inter, system-ui, sans-serif;
  color: #15151f;
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.7;
}



#article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 48px;
}

.article-page h1 {
  font-size: clamp(2.1rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 760px;
}

#article-content {
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.8;
  color: #353535;
}

#article-content p {
  margin-bottom: 24px;
}

#article-content h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 18px;
  color: #111;
}

#article-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  font-weight: 650;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #111;
}
#article-content strong {
  color: #111;
  font-weight: 600;
}

#article-content ul,
#article-content ol {
  padding-left: 20px;
  margin-bottom: 32px;
}

#article-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .article-page {
    padding: 32px 20px 80px;
  }

  .article-page h1 {
    max-width: 100%;
    margin-bottom: 24px;
  }

  #article-image {
    border-radius: 18px;
    margin-bottom: 36px;
  }

  #article-content {
    line-height: 1.75;
  }
}

.logo-strip {
  padding: 28px 0 12px;
  overflow: hidden;
}

.logo-strip p {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

.logo-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  /*filter: grayscale(1);*/
}
.logo-track img:hover {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  /*filter: grayscale(1);*/
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.eyebrow {
  font-weight: 600;
  color: #78827b;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #15151f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #f6f7f5;
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;

  min-height: 620px;
  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  isolation: isolate;
  contain: paint;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card.first {
  background: rgba(82, 163, 140, 0.2);
}

.feature-card.second {
  background: rgba(218, 227, 158, 0.1);
}

.feature-card.third {
  background: rgba(151, 127, 185, 0.1);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
  z-index: 5;
}

.feature-copy h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #15151f;
}

.feature-copy p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #666;
  max-width: 280px;
}

.feature-card img {
  width: 100%;
  max-width: 250px;
  margin: 5px auto 0;
  display: block;

  transform: translateY(12px);
  pointer-events: none;
  backface-visibility: hidden;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card img {
    max-width: 240px;
  }
}

.search-cta {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px 100px;
  text-align: center;
}

.search-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.landing-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(20, 20, 30, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(20, 20, 30, 0.08);
}

.landing-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  font-size: 1rem;
  background: transparent;
}

.landing-search button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--c-greenteal);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 640px) {
  .landing-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .landing-search button {
    width: 100%;
  }
}

.legal-page{
  padding:120px 24px 80px;
}

.legal-container{
  max-width:900px;
  margin:0 auto;
}

.legal-container h1{
  margin-bottom:12px;
}

.legal-updated{
  opacity:.7;
  margin-bottom:40px;
}

.legal-container section{
  margin-bottom:40px;
}

.legal-container h2{
  margin-bottom:16px;
}

.legal-container p{
  line-height:1.7;
  margin-bottom:16px;
}

.legal-container ul{
  padding-left:24px;
  margin-bottom:16px;
}

.legal-container li{
  margin-bottom:8px;
  line-height:1.7;
}