:root {
  --ink: #fff8df;
  --text: #f4edda;
  --muted: #beb49a;
  --line: rgba(213, 184, 71, .22);
  --soft-line: rgba(226, 232, 240, .12);
  --soft: #111216;
  --brand: #a28d07;
  --brand-dark: #08080a;
  --gold: #d5b847;
  --gold-soft: #f2dc83;
  --steel: #7d8799;
  --panel: #101116;
  --panel-2: #17191f;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --white: #ffffff;
  --shadow: 0 24px 56px rgba(0, 0, 0, .30);
  --radius: 8px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #0b0c10;
  font-family: "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.site-container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(213, 184, 71, .2);
  background: rgba(8, 8, 10, .96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}
.site-header-inner {
  display: flex;
  min-height: 72px;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding-block: 8px;
}
.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 780;
  letter-spacing: 0;
}
.site-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: drop-shadow(0 0 12px rgba(213, 184, 71, .18));
}
.site-brand-copy { display: grid; line-height: 1.04; }
.site-brand-copy strong { color: var(--ink); font-size: 1rem; }
.site-brand-copy small { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.site-nav {
  order: 3;
  display: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  color: #e7ddbd;
  font-size: .91rem;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a { display: inline-flex; align-items: center; gap: 7px; letter-spacing: 0; }
.site-nav a:hover { color: var(--gold-soft); }
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius);
  cursor: pointer;
  list-style: none;
  letter-spacing: 0;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
}
.nav-dropdown[open] summary, .nav-dropdown summary:hover { color: var(--gold-soft); }
.subnav {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 45;
  display: grid;
  min-width: 282px;
  gap: 4px;
  border: 1px solid rgba(213, 184, 71, .24);
  border-radius: var(--radius);
  background: rgba(8, 8, 10, .99);
  padding: 10px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .38);
}
.subnav a { display: flex; border-radius: 6px; padding: 10px 11px; color: #eadfbd; white-space: nowrap; }
.subnav a:hover { background: rgba(213, 184, 71, .12); color: var(--white); }
.mobile-menu {
  position: relative;
  margin-left: auto;
}
.mobile-menu summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(213, 184, 71, .28);
  border-radius: var(--radius);
  background: rgba(213, 184, 71, .08);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker,
.mobile-services summary::-webkit-details-marker { display: none; }
.mobile-menu summary:hover {
  border-color: rgba(213, 184, 71, .52);
  background: rgba(213, 184, 71, .13);
}
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  width: min(328px, calc(100vw - 32px));
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  gap: 4px;
  border: 1px solid rgba(213, 184, 71, .24);
  border-radius: var(--radius);
  background: rgba(8, 8, 10, .99);
  padding: 10px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .44);
}
.mobile-menu:not([open]) .mobile-menu-panel { display: none; }
.mobile-menu-panel a,
.mobile-services summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 11px;
  color: #e9dfc0;
  font-weight: 750;
}
.mobile-services summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
}
.mobile-menu-panel a:hover,
.mobile-services summary:hover {
  background: rgba(213, 184, 71, .12);
  color: var(--white);
}
.mobile-service-links {
  display: grid;
  gap: 2px;
  margin: 2px 0 4px;
  padding: 4px 0 4px 19px;
}
.mobile-service-links a {
  min-height: 38px;
  padding-block: 8px;
  color: #cfc39f;
}
.mobile-menu-panel .button-whatsapp {
  width: 100%;
  margin-top: 4px;
}
.nav-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-weight: 740;
  line-height: 1.15;
  text-align: center;
}
.button-primary { background: var(--gold); color: #111; box-shadow: 0 14px 30px rgba(213, 184, 71, .18); }
.button-primary:hover { background: #e5ca5d; }
.button-secondary { border-color: rgba(213, 184, 71, .26); background: rgba(255, 255, 255, .08); color: var(--ink); }
.button-secondary:hover { border-color: rgba(213, 184, 71, .48); background: rgba(213, 184, 71, .12); }
.button-whatsapp {
  min-height: 42px;
  gap: 6px;
  border-color: var(--whatsapp);
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 8px 14px;
  box-shadow: 0 14px 28px rgba(37, 211, 102, .22);
}
.button-whatsapp:hover { background: #1fbd5b; border-color: #1fbd5b; }
.button-whatsapp::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: -4px;
  background: url("../images/whatsapp.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
}
.site-header > .button-whatsapp,
.site-header-inner > .button-whatsapp { display: none; flex: 0 0 auto; min-height: 46px; padding-inline: 16px; white-space: nowrap; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 184, 71, .18);
  background: #08080a;
  color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: right center;
  background-size: min(760px, 58vw) auto;
  background-repeat: no-repeat;
  opacity: .36;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 8, 10, .98) 0%, rgba(13, 14, 18, .92) 52%, rgba(13, 14, 18, .62) 100%);
}
.hero-grid { display: flex; min-height: 500px; align-items: center; padding-block: 58px; }
.hero-grid > div { min-width: 0; max-width: 100%; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 5px;
  background: url("../images/amaros-icone.png") center / cover no-repeat;
  filter: drop-shadow(0 0 5px rgba(213, 184, 71, .24));
}
.hero h1 {
  max-width: 810px;
  margin: 0;
  font-size: 3.65rem;
  line-height: 1.05;
  font-weight: 720;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.hero p:not(.eyebrow) { max-width: 690px; margin: 20px 0 0; color: #e9dfc0; font-size: 1.07rem; opacity: .95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.section { padding-block: 64px; background: #0b0c10; }
.section-muted { background: var(--soft); }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card {
  border: 1px solid rgba(213, 184, 71, .18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 25, 31, .98), rgba(13, 14, 18, .99));
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .20);
}
.card h2, .card h3 { margin: 0; color: var(--ink); font-size: 1.18rem; line-height: 1.25; }
.card p, .section-copy p, .contact-card p { color: var(--muted); }
.card-link { display: inline-flex; width: fit-content; margin-top: 10px; color: var(--gold-soft); font-weight: 750; }
.card-link:hover { color: var(--white); }

.split-section { border-top: 1px solid rgba(213, 184, 71, .14); background: #101116; }
.split-grid { display: grid; gap: 20px; padding-block: 48px; }
.split-grid h2 { margin: 0; color: var(--ink); font-size: 2.2rem; line-height: 1.14; }
.split-grid p { margin: 0; color: #d8cfb6; font-size: 1.05rem; }

.seo-section { border-top: 1px solid rgba(213, 184, 71, .14); background: #0b0c10; padding-block: 58px; }
.section-head { max-width: 720px; margin-bottom: 22px; }
.section-head h2, .areas-inner h2 { margin: 0; color: var(--ink); font-size: 2.45rem; line-height: 1.12; font-weight: 700; }
.signal-grid { display: grid; gap: 14px; }
.signal-card {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(213, 184, 71, .18);
  border-radius: var(--radius);
  background: #17191f;
  padding: 18px;
}
.signal-card h3 { margin: 0; color: var(--ink); font-size: 1.08rem; line-height: 1.25; font-weight: 700; }
.signal-card p { margin: 0; color: var(--muted); }
.signal-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid rgba(213, 184, 71, .26);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(213, 184, 71, .15), rgba(125, 135, 153, .08));
  padding: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}
.signal-cta h3 { max-width: 700px; margin: 0; color: var(--ink); font-size: 1.55rem; line-height: 1.18; }
.signal-cta p { max-width: 760px; margin: 8px 0 0; color: #ded4b7; font-size: 1.02rem; }

.areas-section {
  border-top: 1px solid rgba(213, 184, 71, .14);
  background: linear-gradient(135deg, #08080a 0%, #15171c 100%);
  padding-block: 54px;
}
.areas-inner { display: grid; gap: 20px; }
.areas-inner p { color: var(--muted); }
.areas-list { display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.areas-list span,
.areas-list a {
  border: 1px solid rgba(213, 184, 71, .24);
  border-radius: 999px;
  background: rgba(213, 184, 71, .08);
  padding: 7px 10px;
  color: #e9dfc0;
  font-size: .92rem;
  line-height: 1.2;
  text-decoration: none;
}
.areas-list a:hover {
  border-color: rgba(37, 211, 102, .62);
  background: rgba(37, 211, 102, .12);
  color: var(--white);
}

.service-faq-section { border-top: 1px solid rgba(213, 184, 71, .14); background: #0b0c10; padding-block: 58px; }
.service-faq-list { display: grid; gap: 12px; }
.service-faq-item { border: 1px solid rgba(213, 184, 71, .18); border-radius: var(--radius); background: #17191f; padding: 18px; }
.service-faq-item h3 { margin: 0; color: var(--ink); font-size: 1.08rem; line-height: 1.25; }
.service-faq-item p { margin: 8px 0 0; color: var(--muted); }
.related-services-section { border-top: 1px solid rgba(213, 184, 71, .14); background: #101116; padding-block: 46px; }
.related-services { display: grid; gap: 18px; }
.related-services h2 { margin: 0; color: var(--ink); font-size: 2.1rem; line-height: 1.15; }
.related-service-links { display: flex; flex-wrap: wrap; gap: 9px; }
.related-service-links a { border: 1px solid rgba(213, 184, 71, .28); border-radius: 999px; background: rgba(213, 184, 71, .1); padding: 9px 12px; color: #e9dfc0; font-weight: 650; }
.related-service-links a:hover { border-color: rgba(213, 184, 71, .55); color: var(--white); }

.cta-band { border-top: 1px solid rgba(213, 184, 71, .14); background: #17191f; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-block: 42px; }
.cta-inner h2 { margin: 0; color: var(--ink); font-size: 1.55rem; }
.cta-inner p { margin: 8px 0 0; color: var(--muted); }

.contact-hero { border-bottom: 1px solid rgba(213, 184, 71, .14); background: linear-gradient(135deg, #08080a 0%, #17191f 70%, #0b0c10 100%); color: var(--ink); }
.contact-hero-inner { padding-block: 58px; }
.contact-hero h1 { margin: 0; font-size: 3.15rem; line-height: 1.08; }
.contact-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.contact-grid { display: grid; gap: 24px; padding-block: 52px; }
.lead-form, .contact-card { border: 1px solid rgba(213, 184, 71, .18); border-radius: var(--radius); background: #17191f; padding: 22px; box-shadow: 0 18px 36px rgba(0, 0, 0, .18); }
.lead-form { display: grid; gap: 14px; }
.form-intro h2 { margin: 0; color: var(--ink); font-size: 1.35rem; line-height: 1.2; font-weight: 700; }
.form-intro p { margin: 8px 0 0; color: var(--muted); }
.form-row { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 6px; color: var(--ink); font-weight: 700; }
.lead-form input, .lead-form textarea { width: 100%; border: 1px solid rgba(213, 184, 71, .3); border-radius: var(--radius); background: #0b0c10; padding: 12px 13px; color: var(--ink); }
.lead-form textarea { min-height: 142px; resize: vertical; }
.lead-form .button-primary { width: 100%; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.notice { border-radius: var(--radius); padding: 12px 14px; font-weight: 700; }
.notice-success { background: #e8fbf2; color: #145233; }
.notice-warning { background: #fff6db; color: #684700; }
.contact-actions { display: grid; gap: 10px; margin-top: 22px; }
.contact-actions .button { width: 100%; }
.button-outline { border-color: rgba(213, 184, 71, .26); color: var(--ink); background: rgba(213, 184, 71, .08); }

.blog-list { display: grid; gap: 16px; }
.blog-card-public { display: grid; gap: 18px; align-items: start; border: 1px solid rgba(213, 184, 71, .18); border-radius: var(--radius); background: #17191f; padding: 22px; box-shadow: 0 18px 36px rgba(0, 0, 0, .18); }
.blog-card-public span { display: inline-flex; margin-bottom: 10px; color: var(--gold-soft); font-size: .78rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.blog-card-public h2 { margin: 0; color: var(--ink); font-size: 1.75rem; line-height: 1.18; font-weight: 700; }
.blog-card-public h2 a:hover { color: var(--gold-soft); }
.blog-card-public p { max-width: 760px; margin: 10px 0 0; color: var(--muted); }
.blog-card-public .button { width: fit-content; }
.article-hero h1 { max-width: 900px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; color: var(--muted); font-size: .94rem; font-weight: 650; }
.article-meta span { border: 1px solid rgba(213, 184, 71, .24); border-radius: 999px; background: rgba(213, 184, 71, .08); padding: 6px 10px; }
.article-content { max-width: 820px; }
.article-content section + section { margin-top: 34px; }
.article-content h2 { margin: 0 0 12px; color: var(--ink); font-size: 2rem; line-height: 1.2; font-weight: 700; }
.article-content p { margin: 0 0 16px; color: #d8cfb6; font-size: 1.06rem; }
.article-content ul { margin: 0 0 16px; padding-left: 22px; color: #d8cfb6; }
.article-content li + li { margin-top: 8px; }
.not-found { padding-block: 88px; text-align: center; }
.not-found h1 { margin: 0; color: var(--ink); font-size: 3rem; }
.not-found p { color: var(--muted); }

.site-footer { border-top: 1px solid rgba(213, 184, 71, .14); background: #050507; color: var(--white); }
.footer-grid { display: grid; gap: 26px; padding-block: 40px; }
.site-footer-logo { width: auto; max-width: 170px; max-height: 170px; border-radius: var(--radius); object-fit: contain; }
.site-footer p { color: rgba(255, 255, 255, .72); }
.footer-service-links { display: grid; gap: 8px; margin-top: 12px; color: rgba(255, 255, 255, .72); }
.footer-service-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .66); font-size: .92rem; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding-block: 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; }
.alos-credit { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .74); font-weight: 650; white-space: nowrap; }
.alos-credit img { width: 72px; height: auto; max-height: 32px; object-fit: contain; }
.alos-credit:hover { color: var(--white); }
.w3c-badge { display: inline-flex; min-height: 30px; align-items: center; border: 1px solid rgba(255, 255, 255, .22); border-radius: 6px; padding: 5px 8px; color: rgba(255, 255, 255, .78); font-size: .78rem; font-weight: 650; }
.w3c-badge:hover { border-color: rgba(255, 255, 255, .42); color: var(--white); }
.whatsapp-floating { position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 35; display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center; border-radius: 999px; background: var(--whatsapp); box-shadow: 0 18px 42px rgba(37, 211, 102, .34); }
.whatsapp-floating::before { content: ""; width: 46px; height: 46px; background: url("../images/whatsapp.png") center / contain no-repeat; filter: brightness(0) invert(1); }
.whatsapp-floating:hover { background: #1fbd5b; transform: translateY(-1px); }
[hidden] { display: none !important; }

@media (min-width: 1060px) {
  .site-nav { order: 0; display: flex; width: auto; gap: 20px; overflow: visible; padding-bottom: 0; }
  .site-header-inner { flex-wrap: nowrap; padding-block: 0; }
  .mobile-menu { display: none; }
  .site-header-inner > .button-whatsapp { display: inline-flex; }
}

@media (min-width: 760px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .signal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .areas-inner { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .service-faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-services { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .blog-card-public { grid-template-columns: minmax(0, 1fr) auto; }
  .split-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .contact-grid { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
}

@media (max-width: 760px) {
  .hero h1 { font-size: 2.45rem; }
  .section-head h2, .areas-inner h2 { font-size: 2rem; }
  .split-grid h2, .related-services h2, .article-content h2 { font-size: 1.72rem; }
  .contact-hero h1 { font-size: 2.35rem; }
  .blog-card-public h2 { font-size: 1.45rem; }
}

@media (max-width: 520px) {
  .site-header-inner { min-height: 64px; gap: 8px 10px; }
  .site-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .site-brand-copy small { display: none; }
  .site-header-inner > .button-whatsapp { width: 42px; min-height: 42px; flex-basis: 42px; padding: 0; font-size: 0; }
  .site-header-inner > .button-whatsapp::before { width: 27px; height: 27px; flex-basis: 27px; margin-left: 0; }
  .hero-grid { min-height: 440px; padding-block: 40px; }
  .hero::before { background-position: center bottom; background-size: 118vw auto; opacity: .22; }
  .hero::after { background: linear-gradient(180deg, rgba(8, 8, 10, .98) 0%, rgba(12, 13, 17, .95) 66%, rgba(12, 13, 17, .82) 100%); }
  .hero h1 { font-size: 2.15rem; }
  .hero-actions .button, .cta-inner .button { width: 100%; }
  .whatsapp-floating { display: none; width: 54px; height: 54px; right: 14px; bottom: 14px; }
  .whatsapp-floating::before { width: 40px; height: 40px; }
  .subnav { left: -52px; min-width: min(300px, calc(100vw - 32px)); }
}
