:root {
  --green: #006644;
  --red: #bb0000;
  --gold: #d4af37;
  --ink: #1f2933;
  --muted: #52606d;
  --light: #f5f7f6;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--ink); line-height: 1.65; background: var(--white); }
a { color: var(--green); }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; background: var(--white); color: #000; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 10px; top: 10px; }
.site-header { background: var(--white); border-bottom: 1px solid #e4e7eb; position: sticky; top: 0; z-index: 20; }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: block; width: 136px; height: 50px; object-fit: contain; }
.nav-list { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.nav-list > li { position: relative; }
.nav-list a { text-decoration: none; color: var(--ink); font-weight: 600; }
.nav-list a:hover { color: var(--red); }
.submenu { display: none; position: absolute; left: 0; top: 100%; min-width: 265px; padding: 10px; background: var(--white); border: 1px solid #e4e7eb; border-radius: 8px; box-shadow: 0 12px 28px rgba(31,41,51,.14); list-style: none; }
.submenu li a { display: block; padding: 8px 10px; white-space: nowrap; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { display: block; }
.hero { color: var(--white); background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.38)), var(--hero) center/cover; padding: 104px 0; }
.hero-content { max-width: 760px; }
.eyebrow { color: #f3d875; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
h1 { font-size: clamp(2.25rem, 5vw, 3.8rem); line-height: 1.12; margin-bottom: 20px; }
.hero p { font-size: 1.16rem; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 999px; background: var(--gold); color: #111; text-decoration: none; font-weight: 700; }
.btn-secondary { background: var(--white); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.breadcrumbs { padding: 18px 0; font-size: .92rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.section { padding: 70px 0; }
.section-alt { background: var(--light); }
.content-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 54px; align-items: start; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.2; margin-bottom: 18px; }
h3 { color: var(--green); font-size: 1.25rem; margin: 28px 0 8px; }
p + p { margin-top: 14px; }
.check-list { margin: 20px 0 0 20px; }
.check-list li { margin-bottom: 10px; }
.card { background: var(--white); padding: 28px; border-radius: 10px; box-shadow: 0 8px 28px rgba(31,41,51,.09); }
.card h2 { font-size: 1.45rem; }
.service-links { list-style: none; }
.service-links li + li { border-top: 1px solid #e4e7eb; }
.service-links a { display: block; padding: 12px 0; font-weight: 600; text-decoration: none; }
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.overview-card { display: flex; flex-direction: column; }
.overview-card p { flex: 1; }
.overview-card .text-link { display: inline-block; margin-top: 18px; font-weight: 700; }
.faq { max-width: 850px; }
.faq article { padding: 20px 0; border-bottom: 1px solid #d9e2ec; }
.faq h3 { margin-top: 0; }
.cta { text-align: center; background: var(--green); color: var(--white); }
.cta p { max-width: 720px; margin: 0 auto; }
.cta .actions { justify-content: center; }
.site-footer { background: #080808; color: var(--white); text-align: center; padding: 34px 0; }
.site-footer a { color: var(--white); }
.footer-links { margin-top: 12px; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 54px; height: 54px; border-radius: 50%; box-shadow: 0 5px 18px rgba(0,0,0,.25); }
.whatsapp-float img { display: block; width: 54px; height: 54px; }

@media (max-width: 780px) {
  .header-inner { flex-direction: column; align-items: center; padding: 10px 0; gap: 8px; }
  .logo { height: 42px; width: auto; }
  nav { width: 100%; }
  .nav-list { gap: 8px 14px; justify-content: center; }
  .nav-list a { font-size: .85rem; }
  .submenu { left: 50%; right: auto; transform: translateX(-50%); min-width: min(265px, calc(100vw - 30px)); }
  .content-grid { grid-template-columns: 1fr; }
  .hero { padding: 76px 0; }
  .section { padding: 54px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 30px, 1120px); }
  .nav-list { gap: 6px 10px; }
  .nav-list a { font-size: .78rem; }
  .hero { padding: 62px 0; }
}
