﻿:root {
  --navy: #12304a;
  --ink: #17212b;
  --muted: #5b6773;
  --line: #dde5ec;
  --soft: #f4f7f6;
  --green: #2f8f5b;
  --green-dark: #17633f;
  --orange: #f28c35;
  --cream: #fffaf1;
  --white: #fff;
  --shadow: 0 18px 48px rgba(18, 48, 74, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--navy); color: #fff; padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 12px; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.topbar { background: var(--navy); color: #e8f2f0; font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav-wrap { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); letter-spacing: .01em; }
.brand-mark { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(135deg, var(--green), var(--orange)); display: grid; place-items: center; color: #fff; font-weight: 900; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a, .drop-toggle { font-weight: 700; color: #243547; background: transparent; border: 0; padding: 10px 0; cursor: pointer; font: inherit; }
.dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: -24px;
  width: 620px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dropdown:focus-within .dropdown-panel, .dropdown:hover .dropdown-panel { display: grid; }
.dropdown-panel h3 { margin: 0 0 8px; font-size: 14px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; }
.dropdown-panel a { display: block; padding: 6px 0; font-weight: 650; color: var(--ink); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; min-height: 44px; padding: 12px 18px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-ghost { color: var(--green-dark); border-color: rgba(47,143,91,.3); background: rgba(47,143,91,.06); }
.menu-button { display: none; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; font-weight: 800; color: var(--navy); }
.hero { background: linear-gradient(120deg, #fff 0%, #f5faf7 55%, #fff3df 100%); padding: 78px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: .98; color: var(--navy); letter-spacing: 0; }
.hero p.lead, .page-hero .lead { font-size: clamp(18px, 2vw, 21px); color: #435260; max-width: 690px; margin: 20px 0 0; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px; border-radius: 8px; }
.hero-card img { aspect-ratio: 16 / 11; width: 100%; height: auto; object-fit: cover; border-radius: 6px; }
.trust-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 26px; }
.trust-item { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 6px; padding: 12px; font-weight: 750; color: #274056; font-size: 14px; }
section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-cream { background: var(--cream); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 30px; }
.section-head h2, .page-section h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: 0; }
.section-head p, .page-section > p { max-width: 680px; color: var(--muted); margin: 10px 0 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 8px 28px rgba(18,48,74,.06); }
.card h2, .card h3 { margin: 0 0 10px; color: var(--navy); font-size: 22px; line-height: 1.18; }
.card p { color: var(--muted); margin: 0 0 16px; }
.card ul, .text-block ul { padding-left: 19px; color: var(--muted); margin: 12px 0 0; }
.image-card { padding: 0; overflow: hidden; }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card .card-body { padding: 20px; }
.feature-list { display: grid; gap: 12px; }
.feature-list li { list-style: none; padding: 12px 14px; border: 1px solid var(--line); background: #fff; border-radius: 6px; color: #304557; font-weight: 700; }
.process { counter-reset: step; }
.process .card { position: relative; padding-top: 54px; }
.process .card::before { counter-increment: step; content: counter(step); position: absolute; top: 18px; left: 22px; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.page-hero { padding: 64px 0; background: linear-gradient(120deg, #f5faf7, #fff); border-bottom: 1px solid var(--line); }
.crumb { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.text-block { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.material-table { display: grid; gap: 14px; }
.material-row { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.material-row strong { color: var(--navy); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: #fff; border: 0; padding: 18px 20px; font: inherit; font-weight: 850; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
label { font-weight: 800; color: #26394b; }
input, select, textarea { width: 100%; border: 1px solid #cfd8df; border-radius: 6px; padding: 12px 13px; font: inherit; color: var(--ink); background: #fff; }
textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: 14px; margin: 8px 0 0; }
.visual-slot { min-height: 320px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(135deg, #eaf5f1, #fff7e8); display: grid; place-items: center; padding: 28px; text-align: center; color: var(--navy); }
.visual-slot strong { font-size: 28px; line-height: 1.1; display: block; margin-bottom: 10px; }
.cta-band { background: var(--navy); color: #fff; padding: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { margin: 0 0 8px; color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-band p { margin: 0; color: #d6e2eb; max-width: 680px; }
footer { background: #0f2435; color: #dbe8ef; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 28px; }
footer h3 { color: #fff; margin: 0 0 12px; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
footer a { display: block; color: #dbe8ef; padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 18px; color: #aac0ce; font-size: 14px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 12; box-shadow: var(--shadow); }
:focus-visible { outline: 3px solid rgba(242,140,53,.65); outline-offset: 3px; }
@media (max-width: 900px) {
  .topbar .container { flex-direction: column; gap: 3px; }
  .menu-button { display: inline-flex; }
  .nav { position: absolute; inset: 74px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 6px; }
  .nav.open { display: flex; }
  .dropdown-panel { position: static; width: 100%; box-shadow: none; padding: 10px 0; border: 0; grid-template-columns: 1fr; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .section-head, .cta-band { display: block; }
  .cta-band .section-actions { margin-top: 18px; }
  .material-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero, section { padding: 48px 0; }
  .trust-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .whatsapp-float { left: 14px; right: 14px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}


