:root{
  --bg:#f4f7fb;

  --dark:#0b2c4d;      /* azul escuro */
  --accent:#1f6cff;   /* azul principal */
  --soft:#4fc3ff;     /* azul claro */

  --muted:#6c86a5;
  --white:#ffffff;

  --radius:14px;
  --max-width:1100px;
  --container-pad:24px;
  font-size:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  background:var(--bg);
  color:#123;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.logo-img{
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:24px;
}

/* header */
.site-header{
  background:transparent;
  padding:18px 0;
}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.logo{margin:0;font-size:20px;color:var(--dark);font-weight:700}
.tag{margin:0;font-size:12px;color:var(--muted)}

/* buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  font-weight:600;
  text-decoration:none;
}
.btn-primary{
  background:var(--accent);
  color:var(--dark);
  box-shadow:0 6px 18px rgba(21,60,57,0.12);
}
.btn-outline{
  background:transparent;
  color:var(--dark);
  border:2px solid rgba(21,60,57,0.06);
}
.btn-ghost{
  background:transparent;
  color:var(--dark);
}

/* HERO */
.hero{
  padding:64px 0;
  background:linear-gradient(180deg, #ffffff 0%, #fbfbfb 50%);
}
.hero-grid{display:grid;grid-template-columns:1fr 460px;gap:32px;align-items:center}
.hero-content h2{font-size:32px;margin:0 0 12px;color:var(--dark)}
.lead{color:var(--muted);margin:0 0 18px}
.hero-ctas{display:flex;gap:12px;align-items:center;margin-bottom:18px}
.quick-benefits{display:flex;gap:16px;padding:0;margin:0;list-style:none;font-weight:600;color:var(--muted)}

/* hero media circular */
.hero-media{display:flex;justify-content:center}
.media-decor{position:relative;width:350px;height:350px;border-radius:10%;background:var(--accent);display:flex;align-items:center;justify-content:center;overflow:visible}
.hero-photo{width:78%;border-radius:10%;box-shadow:0 10px 30px rgba(0,0,0,0.12);transform:translateY(10px)}
.dot{position:absolute;border-radius:50%;background:var(--white);opacity:0.9}
.dot-1{width:46px;height:46px;right:-18px;top:60%}
.dot-2{width:26px;height:26px;left:12px;bottom:-10px}

/* Sections */
.section-dark{background:var(--dark);color:var(--white);padding:48px 0}
.section-grid{display:grid;grid-template-columns:1fr 560px;gap:28px;align-items:center}
.embed-wrap{background:#000;border-radius:12px;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,0.35)}
.embed-wrap iframe{width:100%;height:320px;border:0;display:block}

/* values */
.section-values{padding:48px 0}
.center{text-align:center}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px}
.value{background:#fff;padding:20px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.06);text-align:left}
.value .icon{font-size:22px;margin-bottom:8px}

/* how */
.how .steps{list-style:none;padding:0;margin:18px auto 0;display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.how .steps li{background:rgba(255,255,255,0.06);padding:16px;border-radius:10px;text-align:left;font-weight:600}

/* testimonials */
.testimonials{padding:48px 0}
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
blockquote{background:rgba(21,60,57,0.06);padding:18px;border-radius:10px;color:var(--muted)}

/* pricing */
.section-pricing .pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:20px}
.card{background:var(--white);padding:20px;border-radius:12px;text-align:center;box-shadow:0 10px 30px rgba(0,0,0,0.06)}
.card.featured{background:var(--dark);color:var(--white);transform:translateY(-8px)}

/* final cta */
.final-cta{padding:48px 0}
.cta-grid{display:grid;grid-template-columns:1fr 380px;gap:28px;align-items:center}
.cta-image img{width:100%;border-radius:10%;max-width:320px;box-shadow:0 10px 30px rgba(0,0,0,0.12)}

/* footer */
.site-footer{padding:24px 0;font-size:14px;color:rgba(255,255,255,0.8)}
.footer-inner{display:flex;justify-content:space-between;align-items:center}

/* responsivity */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; text-align:center}
  .media-decor{width:320px;height:320px}
  .section-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .how .steps{grid-template-columns:repeat(2,1fr)}
  .test-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .cta-grid{grid-template-columns:1fr}
}
@media (max-width:520px){
  .media-decor{width:260px;height:260px}
  .embed-wrap iframe{height:200px}
  .hero-content h2{font-size:24px}
  .quick-benefits{flex-direction:column;align-items:center}
}

.section-pillars .pillars-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  margin-top:40px;
}

.pillar{
  background:#ffffff;
  color:#0b2c4d;
  padding:28px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.pillar .icon{
  font-size:36px;
  margin-bottom:12px;
}


/* RESPONSIVO MOBILE */
@media (max-width: 768px){

  body{
    overflow-x:hidden;
  }

  .container{
    padding-left:16px;
    padding-right:16px;
  }

  /* HEADER */
  .header-inner{
    flex-direction:column;
    gap:12px;
  }

  /* HERO */
  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-content h2{
    font-size:26px;
  }

  .lead{
    font-size:16px;
  }

  .hero-ctas{
    flex-direction:column;
    gap:12px;
  }

  .hero-media{
    margin-top:24px;
  }

  .hero-photo{
    max-width:100%;
    height:auto;
  }

  /* VALUES */
  .values-grid{
    grid-template-columns:1fr;
  }

  /* PILLARS */
  .pillars-grid{
    grid-template-columns:1fr;
  }

  /* VIDEO */
  .section-grid{
    grid-template-columns:1fr;
    gap:24px;
    text-align:center;
  }

  /* HOW */
  .steps{
    padding-left:0;
  }

  .steps li{
    margin-bottom:16px;
  }

  /* TESTEMUNHOS */
  .test-grid{
    grid-template-columns:1fr;
  }

  /* CTA */
  .cta-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-image img{
    max-width:100%;
    height:auto;
    margin-top:24px;
  }

  /* BOTÕES */
  .btn{
    width:100%;
  }

}


.whatsapp-float{
  position:fixed;
  width:58px;
  height:58px;
  bottom:22px;
  right:22px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  z-index:9999;
  transition:.3s ease;
}

.whatsapp-float img{
  width:30px;
  height:30px;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}


@media(max-width:600px){
  .whatsapp-float{
    width:52px;
    height:52px;
    bottom:18px;
    right:18px;
  }
}
