
:root {
  --bg: #f7f8fb;
  --bg-soft: #f3f5fa;
  --ink: #1e2433;
  --muted: #5c657e;
  --line: rgba(255, 255, 255, 0.62);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow: 0 18px 44px rgba(22, 35, 76, 0.11);
  --radius: 22px;
  --radius-btn: 14px;
  --brand-orange: #F88818;
  --brand-orange-2: #FE8E1F;
  --brand-accent-a: #FCAB31;
  --brand-accent-b: #F9914E;
  --whatsapp: #25D366;
  --focus: #F88818;
  --maxw: 1480px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(980px 440px at 8% -8%, rgba(176, 169, 255, 0.13), transparent 72%),
    radial-gradient(760px 360px at 95% 8%, rgba(138, 188, 255, 0.12), transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  min-height: 100vh;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 10px; }
.container { width: min(var(--maxw), calc(100% - 48px)); margin: 0 auto; }
.glass {
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.top { position: sticky; top: 10px; z-index: 80; padding: 10px 0 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px; border-radius: 18px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.nav-link { padding: 8px 9px; border-radius: 11px; color: #3a4461; font-size: .84rem; white-space: nowrap; }
.nav-link:hover, .nav-link.is-active { background: rgba(255, 255, 255, .55); color: #273153; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: var(--radius-btn); padding: 12px 16px;
  font-weight: 700; line-height: 1; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: #fff; background: linear-gradient(140deg, var(--brand-orange), var(--brand-orange-2)); box-shadow: 0 10px 24px rgba(248, 136, 24, .25); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(248, 136, 24, .3); }
.btn-whatsapp { color: #114726; background: rgba(37, 211, 102, .14); border-color: rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: rgba(37, 211, 102, .2); }
.btn-soft { color: #3a4461; background: rgba(255,255,255,.58); border-color: rgba(255,255,255,.68); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.68); border-radius: 14px; background: rgba(255,255,255,.58); position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 999px; background: #35405f; transition: transform .22s ease, top .22s ease, opacity .18s ease; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.drawer-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(30, 36, 51, .22); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 100; width: min(360px, calc(100vw - 34px)); height: 100vh;
  padding: 18px; transform: translateX(104%); transition: transform .26s ease;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,248,251,.9));
  box-shadow: -18px 0 46px rgba(22, 35, 76, .16);
  border-left: 1px solid rgba(255,255,255,.74);
  display: flex; flex-direction: column; gap: 16px;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.drawer-head img { height: 28px; width: auto; }
.drawer-links { display: grid; gap: 8px; }
.drawer-links a { padding: 13px 12px; border-radius: 14px; color: #303a59; background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.72); font-weight: 700; }
.drawer-links a.is-active { color: #7b470b; border-color: rgba(248,136,24,.26); background: rgba(248,136,24,.08); }
.drawer-cta { margin-top: auto; display: grid; gap: 10px; }
.drawer-cta p { margin: 0; color: #5e6a90; line-height: 1.45; font-size: .9rem; }
.hero { padding: 24px 0 12px; }
.hero-card { border-radius: 28px; padding: 54px 48px 46px; position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; top: -140px; right: -80px; width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle, rgba(248, 136, 24, .13) 0%, rgba(248,136,24,0) 70%); pointer-events: none; }
.hero-center { display: grid; justify-items: center; text-align: center; position: relative; }
.hero-top { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.56); border: 1px solid rgba(255,255,255,.66); color: #465072; font-size: .84rem; }
.hero-top::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: linear-gradient(140deg, var(--brand-accent-a), var(--brand-accent-b)); }
.hero-logo img { max-width: 300px; width: 100%; height: auto; display: block; margin: 16px auto 8px; }
.claim { margin: 0 auto; font-size: clamp(2.55rem, 5.4vw, 5.7rem); line-height: .98; letter-spacing: 0; max-width: 11.5ch; position: relative; }
.claim::after { content: ""; position: absolute; left: 50%; bottom: -12px; width: 180px; height: 5px; border-radius: 999px; background: linear-gradient(90deg, var(--brand-orange), var(--brand-accent-b)); opacity: .95; transform: translateX(-50%); }
.hero-lead { margin: 26px auto 0; max-width: 780px; color: var(--muted); line-height: 1.62; font-size: clamp(1rem, 1.55vw, 1.18rem); }
.hero-bridge { margin: 12px auto 0; max-width: 820px; color: #4a557a; line-height: 1.62; border-left: 0; padding: 0; font-size: clamp(.98rem, 1.45vw, 1.12rem); }
.hero-services { margin: 26px auto 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; width: min(980px, 100%); }
.hero-services li { border-radius: 999px; border: 1px solid rgba(255,255,255,.72); background: rgba(255,255,255,.58); padding: 10px 13px; color: #35405f; font-weight: 700; font-size: .9rem; line-height: 1.25; }
.hero-points { margin: 22px auto 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: min(980px, 100%); text-align: left; }
.hero-points li, .mini-note { border-radius: 13px; border: 1px solid rgba(255,255,255,.68); background: rgba(255,255,255,.54); padding: 12px; font-size: .91rem; color: #36405f; line-height: 1.42; }
.hero-center .cta-row { justify-content: center; margin-top: 24px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cta-copy { margin: 14px 0 0; color: #59658c; font-size: .89rem; line-height: 1.45; }
.trust-strip { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.trust-chip { border-radius: 999px; border: 1px solid rgba(255,255,255,.72); background: rgba(255,255,255,.58); padding: 8px 11px; color: #46537a; font-size: .82rem; }
.hero-side { border-radius: var(--radius); border: 1px solid rgba(255,255,255,.72); background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.5)); padding: 26px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.7); text-align: left; }
.subhero-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  color: #1f293f;
}
.subhero-lead {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  max-width: 82ch;
  color: #4f5b80;
  line-height: 1.55;
  font-size: 1rem;
}
.hero-side > p,
.hero-side > .editorial-copy { grid-column: 1 / -1; max-width: 86ch; }
.hero-side h3, h3 { margin: 0; font-size: 1rem; letter-spacing: 0; color: #2b3555; }
.hero-side p, .card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.info-card {
  grid-column: 1;
  grid-row: 4;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.58);
  padding: 13px;
  display: grid;
  gap: 10px;
}
.info-card strong { color: #2b3555; font-size: .94rem; }
.info-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.info-card li { color: #3f4a6f; font-size: .88rem; line-height: 1.38; }
.info-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-orange);
  margin-right: 8px;
  transform: translateY(-1px);
}
.hero-mini-grid { grid-column: 1 / -1; grid-row: 5; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.hero-mini-grid span {
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.56);
  padding: 10px;
  color: #3b4668;
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.32;
}
.mini-steps { grid-column: 2; grid-row: 4; margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.mini-steps li { display: grid; grid-template-columns: 24px 1fr; gap: 9px; align-items: start; color: #3f4a6f; font-size: .9rem; line-height: 1.4; }
.mini-steps li span, .step-no { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 9px; font-weight: 700; color: #7b470b; background: linear-gradient(140deg, rgba(252,171,49,.28), rgba(249,145,78,.22)); }
.mini-steps li span { width: 24px; height: 24px; font-size: .78rem; }
.section { padding: 13px 0; }
.section-card { border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden; }
.section-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.26), transparent 38%);
}
.section-card > * { position: relative; z-index: 1; }
.section-head { display: grid; gap: 8px; margin-bottom: 14px; }
.section-head h1, .section-head h2 { margin: 0; font-size: clamp(1.24rem, 2.6vw, 1.95rem); letter-spacing: 0; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.55; max-width: 76ch; }
.statement-band { border-radius: 18px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.66); background: linear-gradient(130deg, rgba(255,255,255,.75), rgba(255,255,255,.5)); display: grid; grid-template-columns: 1.1fr .9fr; }
.statement-main { padding: 18px; display: grid; gap: 10px; border-right: 1px solid rgba(255,255,255,.6); }
.statement-main strong { font-size: clamp(1.1rem, 2.8vw, 1.62rem); letter-spacing: 0; line-height: 1.25; color: #2a3556; }
.statement-main p, .statement-side p { margin: 0; color: var(--muted); line-height: 1.52; }
.statement-side { padding: 18px; display: grid; align-content: center; gap: 10px; background: radial-gradient(circle at 80% 20%, rgba(248,136,24,.12), transparent 54%), linear-gradient(140deg, rgba(252,171,49,.09), rgba(255,255,255,.52)); }
.statement-pill { width: fit-content; border-radius: 999px; padding: 7px 10px; font-size: .8rem; color: #6a461b; background: rgba(255,255,255,.74); border: 1px solid rgba(248,136,24,.24); }
.steps, .grid-2, .grid-3, .grid-4, .grid-5, .faq-grid, .principles, .service-grid { display: grid; gap: 10px; }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3, .principles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5, .service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card { border-radius: 16px; border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.56); padding: 16px; display: grid; gap: 8px; align-content: start; box-shadow: 0 10px 26px rgba(22,35,76,.045); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(22,35,76,.075); border-color: rgba(248,136,24,.22); }
.card h3 { display: flex; align-items: center; gap: 9px; }
.card h3::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--brand-orange), var(--brand-accent-b));
  box-shadow: 0 0 0 5px rgba(248,136,24,.1);
}
.card h3 a { color: inherit; }
.card h3 a:hover { color: #7b470b; }
.card ul, .plain-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; color: #455174; line-height: 1.45; font-size: .92rem; }
.card li::before, .plain-list li::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--brand-orange); margin-right: 8px; vertical-align: middle; transform: translateY(-1px); }
.bullet-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.bullet-list li { border-radius: 14px; border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.53); padding: 11px; color: #384462; font-size: .93rem; line-height: 1.45; }
.bullet-list li::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--brand-orange); margin-right: 9px; vertical-align: middle; transform: translateY(-1px); }
details { border-radius: 14px; border: 1px solid rgba(255,255,255,.66); background: rgba(255,255,255,.56); padding: 0 12px; }
summary { list-style: none; cursor: pointer; padding: 13px 0; font-weight: 600; color: #2d3755; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: #6b769c; font-size: 1.1rem; }
details[open] summary::after { content: "-"; }
details p { margin: 0; padding: 0 0 13px; color: var(--muted); line-height: 1.52; font-size: .92rem; }
.notice { border-radius: 16px; padding: 14px; border: 1px solid rgba(248, 136, 24, .22); background: linear-gradient(130deg, rgba(252,171,49,.11), rgba(255,255,255,.5)); color: #4f3820; line-height: 1.48; font-size: .92rem; margin-top: 12px; }
.editorial-copy { display: grid; gap: 12px; color: #46527a; line-height: 1.62; max-width: 86ch; }
.editorial-copy p { margin: 0; }
.callout-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; align-items: stretch; }
.callout-panel {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.68);
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.48));
  padding: 18px;
  display: grid;
  gap: 10px;
}
.callout-panel strong { color: #2a3556; font-size: 1.15rem; line-height: 1.25; }
.callout-panel p { margin: 0; color: var(--muted); line-height: 1.55; }
.page-hero { padding: 24px 0 12px; }
.page-hero .section-card { padding: 28px; }
.eyebrow { width: fit-content; border-radius: 999px; padding: 7px 10px; font-size: .82rem; color: #6a461b; background: rgba(255,255,255,.68); border: 1px solid rgba(248,136,24,.24); }
.page-title { margin: 10px 0 0; font-size: clamp(1.85rem, 4vw, 3rem); line-height: 1.08; letter-spacing: 0; max-width: 15ch; }
.page-lead { margin: 14px 0 0; color: var(--muted); line-height: 1.6; max-width: 74ch; }
.cta-panel { border-radius: 18px; padding: 18px; border: 1px solid rgba(255,255,255,.66); background: linear-gradient(130deg, rgba(255,255,255,.76), rgba(255,255,255,.5)); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cta-panel p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; max-width: 70ch; }
.to-top { position: fixed; right: 16px; bottom: 18px; width: 46px; height: 46px; border: 0; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; z-index: 70; color: #fff; background: linear-gradient(140deg, var(--brand-orange), var(--brand-orange-2)); box-shadow: 0 12px 26px rgba(248, 136, 24, .3); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .22s ease, transform .22s ease, box-shadow .2s ease; }
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top svg, .wa-float svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2.3; fill: none; }
.wa-float { position: fixed; left: 16px; bottom: 18px; z-index: 70; min-height: 46px; display: inline-flex; align-items: center; gap: 8px; border-radius: 14px; padding: 11px 13px; color: #114726; background: rgba(37, 211, 102, .88); box-shadow: 0 12px 26px rgba(37, 211, 102, .22); font-weight: 800; }
footer { padding: 16px 0 30px; }
.footer { border-radius: 18px; padding: 18px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.footer-main { display: grid; gap: 10px; justify-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-links a { border-radius: 10px; border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.5); padding: 8px 10px; color: #505d84; font-size: .86rem; }
.muted { margin: 8px 0 0; color: #667298; font-size: .85rem; line-height: 1.5; max-width: 78ch; }
.footer-disclaimer { grid-column: 1 / -1; margin: 0; color: #667298; font-size: .78rem; line-height: 1.45; max-width: 92ch; }
.legal-layout { max-width: 980px; }
.legal-layout section { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(80, 101, 160, .12); }
.legal-layout section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-layout h2 { margin: 0 0 10px; font-size: 1.15rem; }
.legal-layout h3 { margin: 14px 0 6px; }
.legal-layout p, .legal-layout li, .kv div { color: #46527a; line-height: 1.58; }
.kv { display: grid; gap: 6px; }
.legal-layout a { color: #7b470b; font-weight: 700; }
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 980px) {
  .statement-band { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: 1fr; }
  .info-card, .mini-steps, .hero-mini-grid { grid-column: 1; grid-row: auto; }
  .statement-main { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.6); }
  .steps, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .principles, .service-grid, .grid-5 { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr 1fr; }
  .faq-grid, .grid-2, .bullet-list { grid-template-columns: 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(var(--maxw), calc(100% - 18px)); }
  .top { top: 6px; }
  .nav { padding: 10px; }
  .hero-card, .section-card, .page-hero .section-card { padding: 18px; }
  .claim { font-size: clamp(2.15rem, 13vw, 3.45rem); }
  .hero-logo img { max-width: 230px; }
  .hero-points, .steps, .grid-4 { grid-template-columns: 1fr; }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .cta-row .btn, .cta-panel .btn { width: 100%; }
  .page-title { max-width: 100%; }
  .to-top { right: 12px; bottom: 14px; }
  .wa-float { left: 12px; bottom: 14px; width: 46px; justify-content: center; padding: 0; }
  .wa-float span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .to-top, .drawer, .drawer-backdrop, .menu-toggle span { transition: none; }
}
