@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root{
  --dark:#2f2f2f;
  --dark2:#3a3a3a;
  --white:#ffffff;
  --bg:#f6f7f9;
  --text:#2b2b2b;
  --muted:#777;
  --line: rgba(0,0,0,.12);

  --accent:#00a6a6;     /* turquesa */
  --accent2:#00c2c2;
  --btn:#00a6a6;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:1180px;margin:0 auto;padding:0 16px}

/* =========================
   Topbar (escura, fixa)
========================= */
.topbar{
  position:sticky; top:0; z-index:50;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{display:flex; gap:12px; align-items:center}
.brand-mark{
  width:84px;height:84px;border-radius:999px;
  display:grid; place-items:center;
  background: var(--accent);
  color:#fff;
  font-weight:900;
  box-shadow: 0 8px 18px rgba(0,166,166,.25);
}
.brand-title{font-weight:800; letter-spacing:.2px; color:#fff}
.brand-sub{font-size:12px;color: rgba(255,255,255,.72)}

.menu{display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:flex-end}
.menu a{font-size:14px; color: rgba(255,255,255,.84)}
.menu a:hover{color:#fff}
.menu .btn.small{margin-left:6px}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 6px;
  background: var(--btn);
  color:#fff;
  font-weight:700;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 24px rgba(0,166,166,.18);
}
.btn:hover{filter:brightness(1.05)}
.btn.small{padding:9px 12px; border-radius:6px}
.btn.ghost{
  background: transparent;
  color: var(--accent);
  border:1px solid var(--accent);
  box-shadow:none;
}
.btn.ghost:hover{background: rgba(0,166,166,.08)}
.btn.full{width:100%}

/* =========================
   Hero (foto + overlay)
========================= */
.hero{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:flex-end;
  background: #111;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-bg, url('assets/img/im1.jpg'));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity .6s ease;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.70));
}
.hero-inner{
  position:relative;
  width:100%;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
  padding: 56px 0 36px;
  z-index:1;
}
.hero h1{
  font-size: 44px;
  line-height: 1.08;
  margin:0 0 12px;
  color:#fff;
  font-weight:800;
}
.hero p{
  margin:0 0 18px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  max-width: 720px;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero .btn.ghost{color:#fff; border-color:rgba(255,255,255,.65)}
.hero .btn.ghost:hover{background: rgba(255,255,255,.10)}

.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  font-size:13px;
  color:#fff;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(0,0,0,.18);
}

.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:16px;
  backdrop-filter: blur(6px);
}
.hero-card-title{font-weight:800; margin-bottom:8px; color:#fff}
.hero-card ul{margin:0 0 14px 18px; color: rgba(255,255,255,.88)}
.hero-card li{margin:6px 0}

/* =========================
   Sections (CLARAS)
========================= */
.section{padding:56px 0; background: var(--bg)}
.section.alt{background: #fff}

.section-head{
  text-align:center;
  margin-bottom:28px;
}
.section-head h2{
  margin:0 0 8px;
  font-size: 34px;
  letter-spacing:.5px;
  font-weight:800;
  color: var(--accent);
  text-transform: uppercase;
}
.section-head p{
  margin:0 auto;
  color: var(--muted);
  max-width: 760px;
  font-size: 14.5px;
}

/* =========================
   Cards / grids
========================= */
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px; font-size:18px; font-weight:800; color:#333}
.muted{color: var(--muted)}
.tiny{margin-top:10px; font-size:12px; color: var(--muted)}

.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,166,166,.06);
  color: #2f6f6f;
}
.price{
  margin-top:14px;
  font-weight:900;
  font-size:16px;
  color:#222;
}
.card-actions{margin-top:14px}
.card-top{min-height:64px}
.card-mid{min-height:76px}

/* =========================
   Steps (Como funciona)
========================= */
.steps{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:14px;
}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
  text-align:left;
}
.step span{
  width:34px;height:34px;
  border-radius: 8px;
  display:grid; place-items:center;
  background: rgba(0,166,166,.12);
  color: var(--accent);
  border:1px solid rgba(0,166,166,.25);
  font-weight:900;
}
.step b{display:block; margin-top:10px; font-weight:800}
.step small{display:block; color:var(--muted); margin-top:4px}

/* =========================
   FAQ
========================= */
.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  margin:10px auto;
  max-width: 980px;
  box-shadow: var(--shadow);
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{color:var(--muted); margin:8px 0 0}

/* =========================
   Contact
========================= */
.contact{display:flex; gap:12px; flex-wrap:wrap; justify-content:center}

/* =========================
   Footer
========================= */
.footer{
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 18px 0;
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap
}
.footer .muted{color: rgba(255,255,255,.65)}

/* =========================
   WhatsApp float
========================= */
#wafloat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color:#fff;
  display:grid;
  place-items:center;
  font-size: 22px;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  z-index: 99;
  border: 2px solid rgba(255,255,255,.65);
}
#wafloat:hover{filter:brightness(1.05)}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .menu{gap:10px}
}

/* Logo no topo (2x) */
.brand-mark{
  background: transparent !important;
  box-shadow: none !important;
  width: 108px !important;
  height: 108px !important;
  border-radius: 10px !important;
  padding: 0 !important;
}
.brand-mark img{
  width: 108px;
  height: 108px;
  object-fit: contain;
  display:block;
}

