:root{
  --bg: #ffffff;
  --surface: #f6f8fb;
  --text: #0b1220;
  --muted: #55637a;
  --line: #e3e8f2;
  --brand: #1a73e8;
  --brand-2: #00a2ff;
  --ok: #1f9d55;
  --shadow: 0 12px 40px rgba(11,18,32,.08);
  --radius: 18px;
  --container: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--brand)}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand__mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: radial-gradient(120% 120% at 10% 10%, var(--brand-2), var(--brand));
  color:#fff;
  box-shadow: var(--shadow);
}
.brand__text{font-size:18px}
.nav__menu{display:flex; align-items:center; gap:18px}
.nav__menu a{font-weight:600; color:var(--muted)}
.nav__menu a.btn{color:#fff}
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 14px;
  padding:10px 12px;
}
.nav__bars{
  display:block;
  width:18px; height:12px;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 100%/100% 2px;
  background-repeat:no-repeat;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color:#fff;
  font-weight:800;
  border:0;
  box-shadow: var(--shadow);
}
.btn--ghost{
  background:transparent;
  color: var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--sm{padding:10px 14px; font-weight:800}
.hero{
  padding:56px 0 24px;
  background: radial-gradient(80% 80% at 30% 10%, rgba(26,115,232,.12), rgba(255,255,255,0));
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.kicker{color:var(--brand); font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:12px}
h1{font-size:48px; line-height:1.1; margin:10px 0 10px}
.lede{font-size:18px; color:var(--muted); margin:0 0 22px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  font-size:12px; font-weight:800;
  background: #fff;
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius: 999px;
  color: var(--muted);
}
.section{padding:40px 0}
.section--alt{background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{display:flex; justify-content:space-between; align-items:flex-end; gap:14px; margin-bottom:18px}
.section__head h2{margin:0; font-size:28px; line-height:1.2}
.section__head p{margin:0; color:var(--muted)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:18px}
.muted{color:var(--muted)}
.small{font-size:13px}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:10px
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 999px;
  padding:8px 10px;
  font-weight:800;
  color:var(--muted);
  font-size:12px;
}
.badge__dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(31,157,85,.12);
}
.review{
  display:flex; flex-direction:column; gap:10px;
}
.review__stars{letter-spacing:2px}
.review__meta{display:flex; gap:8px; flex-wrap:wrap; color:var(--muted); font-weight:700; font-size:13px}
.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
}
.table th, .table td{padding:12px 12px; border-bottom:1px solid var(--line); text-align:left}
.table th{background: #f9fbff; color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase}
.table tr:last-child td{border-bottom:0}
.notice{
  border-left: 4px solid var(--brand);
  background: #f4f9ff;
  border-radius: 12px;
  padding:14px 14px;
  color: var(--muted);
}
.footer{
  padding:34px 0 18px;
  border-top:1px solid var(--line);
  background: #fff;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:18px;
}
.footer__title{margin:0 0 10px}
.footer__links{list-style:none; padding:0; margin:0; display:grid; gap:8px}
.footer__links a{color:var(--muted); font-weight:600}
.footer__links a:hover{color:var(--brand)}
.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius: 999px;
  background: #0bbd5a;
  color:#fff;
  font-weight:900;
  box-shadow: var(--shadow);
}
.whatsapp-float:hover{filter:brightness(.98); color:#fff}
.whatsapp-float__text{display:inline}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}

.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{font-weight:800; font-size:13px}
input, textarea, select{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  font:inherit;
  background:#fff;
}
textarea{min-height:120px; resize:vertical}
.help{color:var(--muted); font-size:13px}
.callout{
  display:flex; gap:10px; align-items:flex-start;
  border:1px dashed rgba(26,115,232,.45);
  background: rgba(26,115,232,.06);
  border-radius: var(--radius);
  padding:14px;
  color: var(--muted);
}
@media (max-width: 900px){
  h1{font-size:40px}
  .hero__grid{grid-template-columns:1fr; }
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right:20px;
    top:66px;
    background:#fff;
    border:1px solid var(--line);
    border-radius: 18px;
    padding:12px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
  .whatsapp-float__text{display:none}
}

.btn[aria-disabled="true"]{
  opacity:.6;
  cursor:not-allowed;
  pointer-events:none;
}
