
:root{
  --green:#30B051;
  --red:#F6484F;
  --orange:#F2842A;
  --blue:#47BCEA;
  --purple:#7f4de1;
  --navy:#122a63;
  --text:#20385f;
  --muted:#5f6f86;
  --soft:#f4fbff;
  --shadow:0 18px 42px rgba(23,67,128,.14);
  --shadow-soft:0 10px 24px rgba(23,67,128,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Nunito",system-ui,sans-serif;
  background:#fff;
  color:var(--text);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1240px,92vw);margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:14px 0 0;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
}
.nav-shell{
  background:#fff;
  border-radius:0 0 34px 34px;
  box-shadow:var(--shadow-soft);
}
.nav{
  min-height:92px;
  display:flex;
  align-items:center;
  gap:24px;
  padding:0 28px;
}
.brand{display:flex;align-items:center;min-width:250px}
.brand img{width:250px;height:auto;object-fit:contain}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
  margin-left:auto;
  color:var(--navy);
  font-weight:900;
  font-size:15px;
}
.nav-links a{position:relative;padding:10px 0}
.nav-links a.active{color:var(--green)}
.nav-links a.active::after,
.nav-links a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:4px;
  background:var(--green);
  border-radius:999px;
}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  color:var(--navy);
  font-size:34px;
  margin-left:auto;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:15px 28px;
  font-weight:900;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-green{
  background:linear-gradient(180deg,#35c662,#12a340);
  color:#fff;
  box-shadow:0 14px 28px rgba(48,176,81,.24);
}
.btn-outline{
  color:var(--blue);
  background:#fff;
  border:3px solid var(--blue);
}
.nav-cta{margin-left:8px}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#edf9ff 52%,#ffffff 100%);
  padding:44px 0 26px;
}
.shape,.decorative,.doodle{
  position:absolute;
  pointer-events:none;
}
.shape{
  border-radius:50%;
  opacity:.95;
}
.shape-red-left{
  width:290px;
  height:290px;
  left:-220px;
  top:70px;
  background:linear-gradient(180deg,rgba(246,72,79,.62),rgba(246,72,79,.38));
}
.shape-smile-left{
  width:130px;
  height:130px;
  left:-20px;
  bottom:24px;
  display:grid;
  place-items:center;
  opacity:.92;
}
.shape-smile-left img{width:130px;height:auto;object-fit:contain}
.shape-blue-right{
  width:150px;
  height:285px;
  right:-86px;
  top:10px;
  border-radius:999px;
  background:rgba(71,188,234,.95);
}
.shape-orange-right{
  width:84px;
  height:84px;
  right:-22px;
  bottom:148px;
  background:rgba(242,132,42,.95);
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:45% 55%;
  align-items:center;
  gap:26px;
}
.hero-copy{
  position:relative;
  z-index:2;
  padding-left:24px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:12px 20px;
  margin:0 0 22px;
  background:#ffe6ad;
  color:#88540c;
  font-weight:900;
  font-size:15px;
}
.hero h1{
  font-family:"Baloo 2",system-ui,sans-serif;
  color:var(--blue);
  font-size:clamp(56px,7vw,104px);
  line-height:.86;
  margin:0 0 16px;
  letter-spacing:-1px;
}
.lead{
  max-width:560px;
  margin:0 0 24px;
  color:var(--navy);
  font-size:clamp(23px,2.7vw,35px);
  line-height:1.18;
  font-weight:900;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}
.hero-pills span{
  background:#fff;
  border-radius:999px;
  padding:12px 18px;
  box-shadow:var(--shadow-soft);
  color:var(--navy);
  font-weight:900;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.hero-collage{
  position:relative;
  min-height:540px;
  transform:translateX(-10px);
}
.hero-blob{
  position:absolute;
  width:54%;
  height:38%;
  right:0;
  bottom:34px;
  border-radius:46% 54% 45% 55%;
  background:var(--blue);
}
.hero-collage img{
  position:absolute;
  object-fit:cover;
  border-radius:50%;
  border:11px solid #fff;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero-main{
  width:56%;
  aspect-ratio:1/1;
  left:10%;
  top:0;
}
.hero-top-right{
  width:27%;
  aspect-ratio:1/1;
  right:7%;
  top:58px;
}
.hero-bottom-left{
  width:25%;
  aspect-ratio:1/1;
  left:17%;
  bottom:28px;
}
.hero-bottom-right{
  width:29%;
  aspect-ratio:1/1;
  right:3%;
  bottom:44px;
}

/* Brand iconography */
.icon-sun{
  width:114px;
  height:114px;
  left:28px;
  top:96px;
  opacity:.88;
  display:grid;
  place-items:center;
}
.icon-sun img{width:114px;height:114px;object-fit:contain}
.icon-cloud{
  width:152px;
  height:90px;
  right:6%;
  top:98px;
  opacity:.88;
  display:grid;
  place-items:center;
}
.icon-cloud img{width:152px;height:90px;object-fit:contain}
.doodle{
  width:90px;
  height:40px;
  border-radius:50%;
  opacity:.8;
}
.doodle-red{
  right:50%;
  top:300px;
  border-top:5px dashed var(--red);
  transform:rotate(35deg);
}
.doodle-green{
  right:24%;
  bottom:132px;
  border-top:5px solid var(--green);
  transform:rotate(22deg);
}
.doodle-orange{
  right:7%;
  bottom:95px;
  border-top:4px dashed var(--orange);
  transform:rotate(55deg);
}

.about{
  padding:44px 0 32px;
  background:#fff;
}
.about-card{
  display:grid;
  grid-template-columns:1fr .95fr;
  align-items:center;
  gap:36px;
  border-radius:30px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  padding:34px;
}
.about-copy{
  position:relative;
  padding-left:74px;
}
.about-copy::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:48px;
  height:70px;
  border-left:10px solid var(--green);
  border-bottom:10px solid var(--green);
  border-radius:22px;
  transform:rotate(18deg);
}
.section-label,
.section-kicker{
  margin:0 0 10px;
  color:var(--green);
  font-weight:900;
  font-size:15px;
}
.about h2,
.section-heading h2,
.personalization h2,
.values h2,
.contact h2{
  font-family:"Baloo 2",system-ui,sans-serif;
  color:var(--navy);
  line-height:.98;
}
.about h2{
  font-size:36px;
  margin:0 0 14px;
}
.about p{
  color:var(--muted);
  font-weight:800;
  line-height:1.55;
  margin:0 0 10px;
}
.about-photo-wrap img{
  width:100%;
  height:230px;
  border-radius:24px;
  object-fit:cover;
}

.programs{
  padding:48px 0 54px;
  background:#fff;
}
.section-heading{
  text-align:center;
  max-width:900px;
  margin:0 auto 32px;
}
.section-heading h2{
  font-size:clamp(34px,4vw,52px);
  margin:0 0 8px;
}
.section-heading p{
  margin:0;
  color:var(--muted);
  font-weight:800;
}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.program-card{
  min-height:350px;
  border-radius:28px;
  padding:28px 22px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(18,42,99,.05);
}
.program-card.blue{background:linear-gradient(135deg,#f4faff,#eaf5ff)}
.program-card.green{background:linear-gradient(135deg,#f7fff6,#eef9ee)}
.program-card.orange{background:linear-gradient(135deg,#fff8f0,#fff0de)}
.program-card.purple{background:linear-gradient(135deg,#fbf7ff,#f2ecff)}
.card-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}
.card-icon svg{display:block;flex-shrink:0}
.card-icon-img{
  width:58px;
  height:58px;
  object-fit:contain;
  display:block;
}
.card-house::before{
  content:"";
  width:28px;
  height:24px;
  border:4px solid var(--blue);
  border-top:0;
  border-radius:4px;
  transform:translateY(8px);
}
.card-house::after{
  content:"";
  position:absolute;
  width:26px;
  height:26px;
  border-left:4px solid var(--blue);
  border-top:4px solid var(--blue);
  transform:rotate(45deg) translate(-2px,-5px);
}
.card-smile::before{
  content:"";
  width:34px;
  height:22px;
  border-bottom:5px solid var(--green);
  border-radius:50%;
}
.card-clock::before{
  content:"";
  width:32px;
  height:32px;
  border:5px solid var(--orange);
  border-radius:50%;
}
.card-clock::after{
  content:"";
  position:absolute;
  width:15px;
  height:5px;
  background:var(--orange);
  transform:rotate(0deg) translate(5px,0);
}
.card-ball::before{
  content:"";
  width:34px;
  height:34px;
  border:5px solid var(--purple);
  border-radius:50%;
}
.program-card h3{
  font-family:"Baloo 2",system-ui,sans-serif;
  font-size:27px;
  margin:0 0 6px;
  line-height:1;
}
.blue h3{color:var(--blue)}
.green h3{color:var(--green)}
.orange h3{color:var(--orange)}
.purple h3{color:var(--purple)}
.age{
  color:var(--navy);
  font-weight:900;
  margin:0 0 14px;
}
.program-card p{
  color:#2c3f5f;
  font-weight:750;
  line-height:1.45;
}
.meta{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  font-size:13.5px;
  font-weight:900;
  margin:16px 0 14px;
}
.meta span{
  background:rgba(255,255,255,.75);
  border-radius:999px;
  padding:8px 10px;
}
.tag{
  display:inline-flex;
  border-radius:999px;
  padding:9px 14px;
  color:#fff;
  font-size:13.5px;
  font-weight:900;
}
.blue-tag{background:var(--blue)}
.green-tag{background:var(--green)}
.orange-tag{background:var(--orange)}
.purple-tag{background:var(--purple)}

.personalization{
  padding:54px 0;
  background:linear-gradient(135deg,#effaff,#fff);
}
.personalization-grid{
  display:grid;
  grid-template-columns:1fr .45fr .95fr;
  align-items:center;
  gap:28px;
}
.personalization h2{
  font-size:36px;
  margin:0 0 12px;
}
.personalization p{
  color:var(--muted);
  font-weight:800;
  line-height:1.5;
}
.group-photo img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:22px;
}
.group-boxes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.group-boxes div{
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow-soft);
  padding:24px;
  border:3px dashed rgba(71,188,234,.28);
}
.group-boxes strong{
  display:block;
  font-family:"Baloo 2";
  color:var(--red);
  font-size:26px;
  line-height:1;
}
.group-boxes span{
  display:block;
  margin-top:8px;
  color:var(--navy);
  font-weight:900;
}

.values{
  padding:46px 0;
  background:#fff;
}
.values-box{
  display:grid;
  grid-template-columns:.75fr 1.45fr;
  gap:28px;
  align-items:center;
  background:linear-gradient(135deg,#f5fbff,#fff);
  border-radius:30px;
  padding:28px;
}
.values h2{
  margin:0;
  font-size:34px;
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.values-grid div{
  background:#fff;
  border-radius:20px;
  padding:16px 10px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  color:var(--navy);
  font-weight:900;
}
.mini-icon{
  display:block;
  width:42px;
  height:42px;
  margin:0 auto 8px;
  border-radius:50%;
  background:#edf8ff;
  position:relative;
}
.heart::before{content:"";position:absolute;inset:11px;background:var(--red);border-radius:50% 50% 45% 45%;transform:rotate(45deg)}
.smile::before{content:"";position:absolute;width:24px;height:16px;left:9px;top:8px;border-bottom:4px solid var(--orange);border-radius:50%}
.leaf::before{content:"";position:absolute;width:24px;height:16px;left:9px;top:13px;background:var(--green);border-radius:50% 0 50% 0}
.bulb::before{content:"";position:absolute;width:20px;height:20px;left:11px;top:8px;border:4px solid var(--green);border-radius:50%}
.shield::before{content:"";position:absolute;width:22px;height:28px;left:10px;top:7px;background:var(--blue);clip-path:polygon(50% 0,100% 20%,85% 85%,50% 100%,15% 85%,0 20%)}
.search::before{content:"";position:absolute;width:18px;height:18px;left:8px;top:8px;border:4px solid var(--orange);border-radius:50%}
.search::after{content:"";position:absolute;width:15px;height:4px;background:var(--orange);right:7px;bottom:9px;transform:rotate(45deg)}

.gallery{
  padding:44px 0 56px;
  background:#fff;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.gallery-grid img{
  width:100%;
  height:145px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}

/* Value icons (brand) */
.value-icon{
  display:block;
  width:40px;
  height:40px;
  object-fit:contain;
  margin:0 auto 8px;
}
.value-icon-cloud{
  width:52px;
  height:32px;
  margin-bottom:16px;
}

/* Contact decorativo */
.contact{
  padding:42px 0 62px;
  background:#fff;
  position:relative;
}
.contact-deco-flower{
  position:absolute;
  width:80px;
  right:5%;
  top:-30px;
  opacity:.30;
  pointer-events:none;
  animation:floatSoft 10s ease-in-out infinite;
  animation-delay:.5s;
}
.contact-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,#eef9ff,#fff);
  border-radius:28px;
  padding:34px 42px;
}
.contact h2{
  font-size:42px;
  margin:0 0 6px;
}
.contact p{
  margin:0 0 16px;
  color:var(--navy);
  font-weight:800;
}
.contact-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.contact-pills span{
  background:#fff;
  border-radius:999px;
  padding:9px 13px;
  color:var(--navy);
  font-weight:900;
}

.footer{
  background:#edf9ff;
  padding:28px 0 14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(3,1fr);
  gap:24px;
}
.footer img{width:170px}
.footer p{margin:6px 0;color:#4c6785;font-weight:800;font-size:14px}
.copyright{text-align:center;margin:16px 0 0;color:#65809b;font-size:12px}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@keyframes floatSoft{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(8px,-10px,0)}
}
@keyframes photoFloat{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-8px,0)}
}
.shape,.doodle,.decorative{animation:floatSoft 8s ease-in-out infinite}
.hero-main,.hero-top-right,.hero-bottom-left,.hero-bottom-right{animation:photoFloat 7s ease-in-out infinite}
.hero-top-right{animation-delay:.3s}
.hero-bottom-left{animation-delay:.6s}
.hero-bottom-right{animation-delay:.9s}

@media (prefers-reduced-motion: reduce){
  .shape,.doodle,.decorative,.hero-main,.hero-top-right,.hero-bottom-left,.hero-bottom-right{animation:none!important}
}

@media (max-width:1100px){
  .hero-grid,.about-card,.personalization-grid,.values-box,.contact-box{grid-template-columns:1fr}
  .hero-copy{text-align:center;padding-left:0}
  .hero-pills,.hero-actions{justify-content:center}
  .hero-collage{min-height:500px}
  .hero-main{width:48%;left:24%}
  .hero-top-right{width:24%;right:13%}
  .hero-bottom-left{width:23%;left:24%}
  .hero-bottom-right{width:25%;right:16%}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:repeat(3,1fr)}
  .about-copy{padding-left:0}
  .about-copy::before{display:none}
}
@media (max-width:900px){
  .nav{padding:0 18px}
  .brand{min-width:auto}
  .brand img{width:220px}
  .menu-toggle{display:block}
  .nav-links{
    display:none;
    position:absolute;
    left:4vw;
    right:4vw;
    top:104px;
    flex-direction:column;
    gap:10px;
    padding:18px;
    background:#fff;
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-cta{display:none}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .container{width:min(94vw,500px)}
  .hero h1{font-size:62px}
  .lead{font-size:23px}
  .btn{width:100%}
  .shape-red-left{left:-245px}
  .icon-cloud{display:none}
  .hero-collage{min-height:360px}
  .hero-main{width:68%;left:0;top:12px}
  .hero-top-right{width:33%;right:4%;top:10px}
  .hero-bottom-left{width:33%;left:8%;bottom:0}
  .hero-bottom-right{width:37%;right:0;bottom:22px}
  .cards-grid,.gallery-grid,.values-grid,.group-boxes{grid-template-columns:1fr}
  .contact-box{padding:26px}
  .contact h2{font-size:34px}
  .brand img{width:190px}
  .footer-grid{grid-template-columns:1fr}
}


/* Guaranteed visible SVG icons */
.card-goal-svg svg{
  width:44px;
  height:44px;
  display:block;
}
.card-goal-svg .goal-frame{
  fill:none;
  stroke:var(--purple);
  stroke-width:6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.card-goal-svg .goal-net{
  fill:none;
  stroke:var(--purple);
  stroke-width:2.6;
  stroke-linecap:round;
  opacity:.42;
}
.card-goal-svg .goal-ball{
  fill:#fff;
  stroke:var(--purple);
  stroke-width:5;
}

.contact-copy{
  position:relative;
  padding-left:0;
}
.contact-logo{
  margin-bottom:16px;
}
.contact-logo img{
  width:180px;
  height:auto;
  object-fit:contain;
}
.group-single{
  grid-column:1/-1;
}
@media (max-width:1100px){
  .contact-copy{
    padding-left:0;
    text-align:center;
  }
  .contact-logo{
    display:flex;
    justify-content:center;
  }
}
