:root {
  --bg: #061422;
  --bg-deep: #04101c;
  --bg-soft: #0a1b2f;
  --panel: #10223b;
  --panel-2: #132944;
  --line: rgba(151, 183, 225, 0.2);
  --line-strong: rgba(151, 183, 225, 0.35);
  --text: #f4f7fb;
  --muted: #9aabc1;
  --muted-2: #71839a;
  --blue: #4b73e6;
  --blue-bright: #5d84f1;
  --blue-soft: #7fa0ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(43, 91, 165, 0.18), transparent 34%),
    linear-gradient(180deg, #061422 0%, #071728 45%, #061321 100%);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; background: white; color: #061422; border-radius: 8px; transition: .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  height: 98px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(143, 178, 224, .08);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(4, 16, 28, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(143, 178, 224, .12);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: headerDrop .28s ease;
}
@keyframes headerDrop { from { transform: translateY(-100%); } }

.nav-wrap { display: grid; grid-template-columns: 320px 1fr auto; align-items: center; gap: 34px; }
.brand {
  width: 310px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-prominent {
  padding: 12px 16px 12px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13,29,49,.86), rgba(7,21,36,.72));
  border: 1px solid rgba(136,169,223,.16);
  box-shadow: 0 18px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06);
}
.brand-emblem {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-emblem img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(27, 72, 165, .28));
}
.brand-text { display: flex; flex-direction: column; gap: 5px; }
.brand-text strong {
  color: #f7fbff;
  font: 800 15px/1.04 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.brand-text small {
  color: #c2d2e5;
  font: 600 10px/1.2 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.main-nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.main-nav a {
  position: relative;
  padding: 34px 0 26px;
  color: #e5ecf5;
  font: 700 12px/1 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s;
}
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.phone-button {
  min-width: 176px;
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3d61c2, #5a7ff0);
  box-shadow: 0 12px 30px rgba(34, 76, 167, .28), inset 0 1px 0 rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s, box-shadow .2s;
}
.phone-button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(34, 76, 167, .38); }
.phone-button svg { width: 17px; height: 17px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061321;
  padding-bottom: 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(31, 88, 154, .12), transparent 32%),
    linear-gradient(90deg, rgba(4,14,24,.96) 0%, rgba(4,14,24,.82) 34%, rgba(4,14,24,.28) 64%, rgba(4,14,24,.34) 100%);
  z-index: 2;
}
.hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(1,8,14,.12), rgba(2,12,20,.08)); }
.hero-inner { position: relative; z-index: 4; padding-top: 110px; }
.hero-copy { width: 44%; max-width: 620px; padding-top: 40px; }
.hero h1 {
  margin: 0;
  font: 800 clamp(44px, 7vw, 76px)/.92 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.hero h1 span { color: var(--blue-bright); }
.hero-copy > p { margin: 22px 0 0; color: #d3dce8; font-size: 25px; line-height: 1.4; max-width: 620px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }

.slideshow { position: absolute; overflow: hidden; }
.slide-item { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease-in-out; }
.slide-item.is-active { opacity: 1; }
.slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-slideshow { inset: 0; width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.03) contrast(1.05) brightness(1.02); transform: scale(1.01); }
.hero-slide-1 img { object-position: 62% center; }
.hero-slide-2 img { object-position: 69% center; }
.hero-slide-3 img { object-position: 72% center; }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,13,23,.12), rgba(3,13,23,.4));
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .025em;
  font: 700 12px/1 "Montserrat", sans-serif;
  transition: transform .2s, box-shadow .2s, filter .2s, background .2s;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.07); }
.button-primary { color: white; background: linear-gradient(135deg, #3e65cb, #5179e4); box-shadow: 0 12px 25px rgba(27, 74, 172, .28), inset 0 1px 0 rgba(255,255,255,.18); }
.button-secondary { color: white; background: rgba(10,24,40,.75); border: 1px solid rgba(137,171,217,.2); }
.button svg { width: 17px; height: 17px; }
.video-link { display: inline-flex; align-items: center; gap: 13px; color: #f3f7fb; font: 700 12px/1 "Montserrat", sans-serif; text-transform: uppercase; }
.video-link svg { width: 38px; height: 38px; color: var(--blue-soft); transition: transform .2s; }
.video-link:hover svg { transform: scale(1.08); }

.featured-section { position: relative; z-index: 5; margin-top: 34px; padding: 48px 0 56px; }
.featured-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 20px;
  background: #0c1b2f;
  border: 1px solid rgba(151, 183, 225, .28);
  box-shadow: var(--shadow);
}
.featured-slideshow { inset: 0 0 0 42%; }
.featured-slide img { filter: saturate(1.02) contrast(1.05) brightness(1); }
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #112138 0%, #112138 34%, rgba(14,31,52,.82) 48%, rgba(8,21,35,.03) 76%, rgba(5,16,28,.10) 100%);
}
.featured-content { position: relative; z-index: 2; width: 54%; padding: 42px 0 38px 38px; }
.eyebrow, .section-kicker, .breadcrumbs { margin: 0; color: #7f9ed0; text-transform: uppercase; letter-spacing: .08em; font: 700 11px/1.2 "Montserrat", sans-serif; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow-icon { color: var(--blue-bright); }
.featured-content h2 { margin: 24px 0 0; font: 700 34px/1.05 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; }
.featured-content h2 strong { display: inline-block; margin-top: 4px; color: var(--blue-bright); font-size: 52px; line-height: 1; }
.featured-lead { margin: 20px 0 0; color: #edf3fb; font-size: 18px; line-height: 1.5; }
.featured-description { width: 89%; margin: 17px 0 0; color: #b6c3d2; font-size: 14px; line-height: 1.7; }
.feature-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0 24px; }
.feature-points > div { min-height: 72px; padding-right: 12px; border-right: 1px solid rgba(137,171,217,.12); }
.feature-points > div:last-child { border-right: 0; }
.feature-points span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(90,131,225,.58); border-radius: 50%; color: var(--blue-soft); }
.feature-points svg { width: 17px; height: 17px; }
.feature-points p { margin: 8px 0 0; color: #dbe4ef; font-size: 11px; line-height: 1.35; }
.button-wide { min-width: 305px; }

.services-section { padding: 10px 0 46px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; margin-bottom: 28px; }
.section-heading h2, .method-header h2, .contact-copy h2, .page-hero h1, .cta-band h2, .detail-panel h2 { margin: 10px 0 0; font: 700 30px/1.2 "Montserrat", sans-serif; letter-spacing: -.02em; }
.section-heading > p { width: 45%; margin: 0 0 10px; color: #b0bed0; font-size: 13px; line-height: 1.7; }
.heading-line { display: block; width: 52px; height: 3px; margin-top: 14px; background: var(--blue); border-radius: 99px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 365px; background: linear-gradient(180deg, #142a47, #10223a); border: 1px solid rgba(151,183,225,.19); border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.18); transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(98,139,235,.52); box-shadow: 0 24px 55px rgba(0,0,0,.3); }
.service-image { position: relative; height: 160px; overflow: hidden; background: #0a1728; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,23,40,.06), rgba(11,29,49,.22)); pointer-events: none; }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) brightness(.98) contrast(1.03); transition: transform .65s ease, filter .35s ease; }
.service-card:hover .service-image img { transform: scale(1.04); filter: saturate(1.02) brightness(1) contrast(1.05); }
.service-body { position: relative; padding: 52px 20px 22px; }
.service-icon { position: absolute; top: -28px; left: 20px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #263f72, #34599d); border: 1px solid rgba(141,172,230,.24); box-shadow: 0 12px 25px rgba(0,0,0,.25); color: #dbe6ff; }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 0; font: 700 17px/1.25 "Montserrat", sans-serif; text-transform: uppercase; }
.service-card p { min-height: 63px; margin: 13px 0 17px; color: #aebbd0; font-size: 12px; line-height: 1.58; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; color: #88a7f4; font: 700 11px/1 "Montserrat", sans-serif; text-transform: uppercase; }
.service-card a svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card a:hover svg { transform: translateX(4px); }

.trust-section { padding: 0 0 28px; }
.trust-panel { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); align-items: stretch; overflow: hidden; border: 1px solid rgba(140,175,223,.23); border-radius: 14px; background: linear-gradient(90deg, #102746, #0f294d); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.trust-intro { padding: 32px 30px; }
.trust-intro h2 { margin: 10px 0 0; font: 700 20px/1.35 "Montserrat", sans-serif; }
.trust-item { position: relative; padding: 24px 18px; text-align: center; border-left: 1px solid rgba(151,183,225,.16); }
.trust-item svg { width: 35px; height: 35px; color: #89a8f4; stroke-width: 1.45; }
.trust-item h3 { margin: 13px 0 0; font: 700 12px/1 "Montserrat", sans-serif; text-transform: uppercase; }
.trust-item p { margin: 10px auto 0; max-width: 145px; color: #aab8ca; font-size: 10px; line-height: 1.55; }

.method-section { padding: 64px 0 76px; background: linear-gradient(180deg, rgba(5,17,30,.2), rgba(7,21,37,.72)); border-top: 1px solid rgba(132,168,216,.08); }
.method-header { text-align: center; }
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 32px; }
.method-step { position: relative; padding: 26px 24px 24px; border: 1px solid rgba(145,179,224,.16); border-radius: 12px; background: rgba(14,34,58,.52); }
.method-step span { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(88,128,226,.48); border-radius: 50%; color: #8ca9f5; font: 700 12px/1 "Montserrat", sans-serif; }
.method-step h3 { margin: 19px 0 0; font: 700 15px/1.2 "Montserrat", sans-serif; }
.method-step p { margin: 10px 0 0; color: #a9b7c8; font-size: 12px; line-height: 1.6; }

.contact-section { padding: 60px 0 40px; background: linear-gradient(90deg, #071827, #071626 46%, #061422); border-top: 1px solid rgba(137,171,217,.1); }
.contact-grid { display: grid; grid-template-columns: 330px 1fr; gap: 65px; }
.contact-copy { padding: 12px 46px 0 10px; border-right: 1px solid rgba(143,178,224,.22); }
.contact-copy > p:not(.section-kicker) { margin: 18px 0 0; color: #aebbc9; font-size: 12px; line-height: 1.7; }
.contact-copy address { margin-top: 28px; font-style: normal; }
.contact-copy address a, .contact-copy address p { display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 10px; margin: 0 0 17px; color: #dfe8f3; font-size: 12px; line-height: 1.55; }
.contact-copy address span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(49,83,134,.4); color: #b9cdf5; }
.contact-copy address svg { width: 14px; height: 14px; }
.contact-form { padding-top: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; margin-bottom: 18px; color: #e8eef7; font: 700 10px/1.2 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 9px; padding: 0 15px; border: 1px solid rgba(143,178,224,.22); border-radius: 6px; outline: none; color: #eef4fb; background: #0b1b2f; font: 400 12px/1.3 "Inter", sans-serif; transition: border-color .2s, box-shadow .2s;
}
.contact-form input, .contact-form select { height: 46px; }
.contact-form textarea { min-height: 104px; padding-top: 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #6f8096; }
.contact-form select { color: #8291a5; appearance: none; background-image: linear-gradient(45deg, transparent 50%, #91a0b4 50%), linear-gradient(135deg, #91a0b4 50%, transparent 50%); background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(92,132,233,.8); box-shadow: 0 0 0 3px rgba(73,113,220,.12); }
.contact-form .invalid { border-color: #e26a77; box-shadow: 0 0 0 3px rgba(226,106,119,.1); }
.submit-button { width: 100%; min-height: 46px; }
.form-security { margin: 9px 0 0; color: #788aa1; font-size: 9px; }
.form-security svg { width: 11px; height: 11px; color: #8eaaf2; vertical-align: -2px; }
.form-status { min-height: 20px; margin-top: 10px; color: #8fb0ff; font-size: 12px; }

.site-footer-extended { border-top: 1px solid rgba(143,178,224,.08); background: #04101b; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 46px 0 26px; }
.footer-brand-head { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand-head img { width: 62px; height: 62px; border-radius: 50%; }
.footer-brand-head strong { display: block; font: 800 18px/1.1 "Montserrat", sans-serif; margin-bottom: 8px; }
.footer-brand-head p { margin: 0; color: #a8b7cb; font-size: 13px; line-height: 1.7; max-width: 320px; }
.footer-cta { margin-top: 20px; }
.footer-col h4 { margin: 0 0 16px; font: 700 12px/1 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: .06em; color: #dce7f5; }
.footer-col a, .footer-col p { display: block; margin: 0 0 10px; color: #8ea1ba; font-size: 13px; line-height: 1.6; }
.footer-col a:hover { color: #dce7f5; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #66798f; font-size: 10px; border-top: 1px solid rgba(143,178,224,.08); }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 20; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg,#3564c6,#4d7ae6); box-shadow: 0 16px 38px rgba(25,68,163,.45); transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 24px; height: 24px; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js-enabled .reveal.visible { opacity: 1; transform: none; }

/* Internal pages */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #061321;
}
.service-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--page-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(.95) brightness(.95) contrast(1.03);
  transform: scale(1.05);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,14,24,.93) 0%, rgba(4,14,24,.78) 44%, rgba(4,14,24,.28) 100%);
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; padding-top: 110px; }
.breadcrumbs { color: #97add1; margin-bottom: 18px; }
.breadcrumbs a { text-transform: none; letter-spacing: 0; font-family: "Inter", sans-serif; font-size: 12px; }
.breadcrumbs span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); text-transform: uppercase; margin: 0; }
.page-hero-text { margin: 18px 0 0; max-width: 650px; color: #d5deea; font-size: 18px; line-height: 1.65; }
.page-hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.page-section { padding: 60px 0; }
.alt-section { background: linear-gradient(180deg, rgba(8,21,37,.54), rgba(9,26,45,.75)); border-top: 1px solid rgba(132,168,216,.08); border-bottom: 1px solid rgba(132,168,216,.08); }
.detail-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 24px; }
.detail-panel, .detail-side .detail-badge, .info-card {
  border: 1px solid rgba(145,179,224,.16);
  border-radius: 16px;
  background: rgba(14,34,58,.58);
  box-shadow: 0 16px 42px rgba(0,0,0,.16);
}
.detail-panel { padding: 28px; }
.detail-panel p { color: #adc0d5; font-size: 14px; line-height: 1.75; }
.bullet-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.bullet-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.bullet-list svg { color: #83a7ff; margin-top: 2px; }
.detail-side { display: grid; gap: 18px; }
.detail-badge { padding: 22px; }
.detail-badge strong { display: block; margin-bottom: 8px; font: 700 16px/1.2 "Montserrat", sans-serif; }
.detail-badge p { margin: 0; color: #adc0d5; line-height: 1.7; font-size: 13px; }
.service-page-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.info-card { padding: 26px; }
.info-card h3 { margin: 0 0 10px; font: 700 20px/1.2 "Montserrat", sans-serif; }
.info-card p { margin: 0; color: #adc0d5; font-size: 14px; line-height: 1.75; }
.cta-band { padding: 46px 0 60px; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 28px 32px; border-radius: 18px; border: 1px solid rgba(145,179,224,.16);
  background: linear-gradient(90deg, rgba(16,39,70,.88), rgba(15,41,77,.92));
}
.cta-band h2 { max-width: 620px; }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: 290px 1fr auto; gap: 18px; }
  .brand { width: 280px; }
  .main-nav { gap: 24px; }
  .main-nav a { font-size: 11px; }
  .featured-content { width: 58%; }
  .featured-slideshow { inset-inline-start: 46%; }
}

@media (max-width: 980px) {
  .site-header { height: 84px; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .brand { width: 240px; min-height: 68px; }
  .brand-prominent { padding: 10px 12px; }
  .brand-emblem { width: 52px; height: 52px; }
  .brand-emblem img { width: 50px; height: 50px; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { font-size: 8px; }
  .main-nav {
    position: fixed; inset: 84px 0 auto 0; display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 26px; background: rgba(4,16,28,.98); border-bottom: 1px solid rgba(143,178,224,.14);
    transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .28s, opacity .28s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid rgba(143,178,224,.09); }
  .main-nav a::after { display: none; }
  .phone-button { display: none; }
  .menu-toggle { width: 44px; height: 42px; display: grid; place-content: center; gap: 5px; border: 1px solid rgba(143,178,224,.23); border-radius: 7px; color: white; background: rgba(11,28,48,.6); }
  .menu-toggle span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 690px; padding-bottom: 28px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,14,24,.97) 0%, rgba(4,14,24,.82) 56%, rgba(4,14,24,.38) 100%); }
  .hero-slideshow { inset: 0; width: 100%; }
  .hero-copy { width: 72%; max-width: 620px; }
  .hero-slide-1 img { object-position: 64% center; }
  .hero-slide-2 img { object-position: 72% center; }
  .hero-slide-3 img { object-position: 75% center; }
  .hero-copy > p { font-size: 21px; }
  .featured-section { margin-top: 24px; padding-top: 32px; }
  .featured-content { width: 66%; }
  .featured-slideshow { inset-inline-start: 50%; }
  .featured-overlay { background: linear-gradient(90deg, #112138 0%, #112138 46%, rgba(14,31,52,.80) 62%, rgba(5,16,28,.18) 100%); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .trust-panel { grid-template-columns: repeat(2,1fr); }
  .trust-intro { grid-column: 1 / -1; text-align: center; border-bottom: 1px solid rgba(151,183,225,.16); }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-left: 0; }
  .method-grid, .service-page-cards { grid-template-columns: repeat(2,1fr); }
  .contact-grid, .detail-grid, .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .contact-copy { padding: 0; border-right: 0; }
  .page-hero { min-height: 500px; }
  .page-hero-overlay { background: linear-gradient(90deg, rgba(4,14,24,.92) 0%, rgba(4,14,24,.74) 58%, rgba(4,14,24,.34) 100%); }
  .cta-band-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand { width: 210px; }
  .hero { min-height: 620px; padding-bottom: 22px; }
  .hero-slideshow { inset: 0; width: 100%; opacity: .88; }
  .hero-copy { width: 100%; }
  .hero-slide-1 img { object-position: 66% center; }
  .hero-slide-2 img { object-position: 76% center; }
  .hero-slide-3 img { object-position: 79% center; }
  .hero-copy > p { font-size: 17px; max-width: 400px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .featured-section { margin-top: 18px; padding-top: 26px; }
  .featured-card { min-height: 690px; }
  .featured-slideshow { inset: 0; opacity: .50; }
  .featured-overlay { background: linear-gradient(180deg, rgba(13,31,53,.96) 0%, rgba(13,31,53,.93) 55%, rgba(7,20,34,.55) 100%); }
  .featured-content { width: 100%; padding: 30px 22px; }
  .featured-content h2 strong { font-size: clamp(34px, 10vw, 44px); }
  .featured-description { width: 100%; }
  .feature-points { grid-template-columns: repeat(2,1fr); }
  .feature-points > div { border-right: 0; }
  .button-wide { width: 100%; min-width: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading > p { width: 100%; }
  .services-grid, .method-grid, .service-page-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-image { height: 190px; }
  .service-card p { min-height: auto; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid rgba(151,183,225,.14); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero { min-height: 530px; }
  .page-hero-text { font-size: 16px; }
  .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { padding: 18px 0; }
  .floating-whatsapp { right: 15px; bottom: 15px; }
}

/* =========================================================
   TEMA PRETO, DOURADO E CLARO — inspirado na nova referência
   ========================================================= */
:root {
  --bg: #f3ecdf;
  --bg-deep: #090705;
  --bg-soft: #1b150f;
  --panel: #fffaf0;
  --panel-2: #eadcc4;
  --line: rgba(153, 103, 21, .24);
  --line-strong: rgba(234, 167, 18, .55);
  --text: #17110b;
  --muted: #6c6257;
  --muted-2: #8a7c6a;
  --blue: #eaa712;
  --blue-bright: #f2b51c;
  --blue-soft: #ffd46a;
  --shadow: 0 30px 80px rgba(64, 40, 9, .18);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 84% 12%, rgba(234, 167, 18, .14), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #f4eadb 48%, #eee1cd 100%);
}

.skip-link { background: #f2b51c; color: #100c08; }

.site-header {
  border-bottom-color: rgba(234, 167, 18, .20);
  background: linear-gradient(90deg, rgba(8,7,5,.86), rgba(21,16,10,.82));
}
.site-header.scrolled {
  background: rgba(12, 9, 6, .95);
  border-bottom-color: rgba(234, 167, 18, .30);
  box-shadow: 0 12px 40px rgba(0,0,0,.26);
}
.brand-prominent {
  background: linear-gradient(135deg, rgba(36,26,15,.96), rgba(12,9,6,.92));
  border-color: rgba(234,167,18,.42);
  box-shadow: 0 18px 38px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,211,105,.10);
}
.brand-emblem img { filter: drop-shadow(0 10px 18px rgba(234,167,18,.30)); }
.brand-text strong { color: #fff8e9; }
.brand-text small { color: #e7c77f; }
.main-nav a { color: #f0e8d9; }
.main-nav a::after { background: #f2b51c; }
.main-nav a:hover, .main-nav a.active { color: #ffc94a; }
.phone-button {
  color: #151009;
  background: linear-gradient(135deg, #e29a08, #ffc93d);
  box-shadow: 0 12px 30px rgba(234,167,18,.28), inset 0 1px 0 rgba(255,255,255,.35);
}
.phone-button:hover { box-shadow: 0 16px 36px rgba(234,167,18,.42); }

.hero { background: #080705; }
.hero::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(234,167,18,.12), transparent 30%),
    linear-gradient(90deg, rgba(7,5,3,.92) 0%, rgba(12,9,6,.74) 38%, rgba(10,8,6,.18) 68%, rgba(4,4,4,.28) 100%);
}
.hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12)); }
.hero h1 { color: #fffaf0; }
.hero h1 span { color: #f2b51c; text-shadow: 0 8px 28px rgba(234,167,18,.18); }
.hero-copy > p { color: #f2eadf; }
.hero-slide img { filter: saturate(.96) contrast(1.08) brightness(1.08); }
.hero-slide::after { background: linear-gradient(180deg, rgba(7,5,2,.02), rgba(10,7,3,.20)); }
.video-link { color: #fff4df; }
.video-link svg { color: #ffc94a; }

.button-primary {
  color: #171009;
  background: linear-gradient(135deg, #e39a08, #ffc83c);
  box-shadow: 0 12px 25px rgba(180,112,6,.28), inset 0 1px 0 rgba(255,255,255,.36);
}
.button-secondary {
  color: #fff7e9;
  background: rgba(21,16,10,.84);
  border-color: rgba(234,167,18,.42);
}

.featured-section {
  background: linear-gradient(180deg, #fff9ee 0%, #f4ead9 100%);
}
.featured-card {
  background: #16110c;
  border-color: rgba(234,167,18,.56);
  box-shadow: 0 30px 72px rgba(95,59,7,.22);
}
.featured-slide img { filter: saturate(.88) contrast(1.05) brightness(.92) sepia(.06); }
.featured-overlay {
  background: linear-gradient(90deg, #16110c 0%, #1d160e 36%, rgba(29,22,14,.90) 50%, rgba(18,13,8,.12) 78%, rgba(7,5,3,.28) 100%);
}
.eyebrow, .section-kicker, .breadcrumbs { color: #b77b09; }
.eyebrow-icon { color: #f2b51c; }
.featured-content h2, .featured-lead { color: #fff9ef; }
.featured-content h2 strong { color: #ffc43a; }
.featured-description { color: #dfd2c1; }
.feature-points > div { border-right-color: rgba(255,202,74,.18); }
.feature-points span {
  border-color: rgba(242,181,28,.65);
  color: #ffc94a;
  background: rgba(234,167,18,.08);
}
.feature-points p { color: #f3eadb; }

.services-section {
  color: #17110b;
  background:
    radial-gradient(circle at 12% 20%, rgba(234,167,18,.08), transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #f3e8d7 100%);
}
.section-heading h2 { color: #1a130c; }
.section-heading > p { color: #655a4f; }
.heading-line { background: linear-gradient(90deg, #d38e07, #ffc83d); }
.service-card {
  color: #17110b;
  background: linear-gradient(180deg, #fffdf8, #f1e3cc);
  border-color: rgba(176,115,12,.28);
  box-shadow: 0 18px 40px rgba(90,56,8,.12);
}
.service-card:hover {
  border-color: rgba(234,167,18,.76);
  box-shadow: 0 24px 55px rgba(102,63,6,.20);
}
.service-image { background: #21180f; }
.service-image::after { background: linear-gradient(180deg, rgba(25,16,8,.02), rgba(56,35,12,.16)); }
.service-icon {
  color: #161008;
  background: linear-gradient(145deg, #ffc83c, #d68b04);
  border-color: rgba(255,232,165,.78);
  box-shadow: 0 12px 25px rgba(104,61,4,.24);
}
.service-card h3 { color: #1d150d; }
.service-card p { color: #685b4c; }
.service-card a { color: #a96900; }

.trust-section {
  background: linear-gradient(180deg, #f3e8d7 0%, #eadbc3 100%);
  padding-top: 14px;
}
.trust-panel {
  color: #fff9ef;
  border-color: rgba(234,167,18,.42);
  background: linear-gradient(90deg, #17110b, #2c2115);
  box-shadow: 0 18px 50px rgba(76,45,4,.18);
}
.trust-intro .section-kicker { color: #f2b51c; }
.trust-intro h2 { color: #fffaf0; }
.trust-item { border-left-color: rgba(255,203,73,.18); }
.trust-item svg { color: #ffc94a; }
.trust-item h3 { color: #fff7e6; }
.trust-item p { color: #d7c8b5; }

.method-section {
  color: #19120b;
  background:
    radial-gradient(circle at 85% 15%, rgba(234,167,18,.09), transparent 28%),
    linear-gradient(180deg, #fffaf1, #efe0ca);
  border-top-color: rgba(184,121,11,.18);
}
.method-header h2 { color: #19120b; }
.method-step {
  color: #19120b;
  border-color: rgba(174,112,8,.24);
  background: rgba(255,253,248,.90);
  box-shadow: 0 16px 36px rgba(92,55,5,.10);
}
.method-step span {
  border-color: rgba(221,144,5,.60);
  color: #8f5b00;
  background: #fff1c9;
}
.method-step h3 { color: #1c140c; }
.method-step p { color: #6a5c4e; }

.contact-section {
  color: #1b140d;
  background:
    linear-gradient(90deg, rgba(255,250,241,.96), rgba(239,223,199,.96)),
    radial-gradient(circle at 85% 20%, rgba(234,167,18,.10), transparent 30%);
  border-top-color: rgba(173,111,8,.22);
}
.contact-copy { border-right-color: rgba(165,105,7,.25); }
.contact-copy h2 { color: #181109; }
.contact-copy > p:not(.section-kicker) { color: #655a4d; }
.contact-copy address a, .contact-copy address p { color: #2b2016; }
.contact-copy address span {
  background: linear-gradient(145deg, #ffc83c, #dc9107);
  color: #171009;
}
.contact-form label { color: #3a2918; }
.contact-form input, .contact-form select, .contact-form textarea {
  color: #21180f;
  background: rgba(255,253,248,.96);
  border-color: rgba(156,100,9,.28);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9b8a75; }
.contact-form select { color: #786851; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(218,145,10,.82);
  box-shadow: 0 0 0 3px rgba(234,167,18,.14);
}
.form-security { color: #746755; }
.form-security svg, .form-status { color: #a76b00; }

.site-footer-extended {
  color: #f5ead8;
  border-top-color: rgba(234,167,18,.26);
  background:
    radial-gradient(circle at 18% 18%, rgba(234,167,18,.10), transparent 24%),
    linear-gradient(180deg, #15100b, #080604);
}
.footer-brand-head strong { color: #ffc63a; }
.footer-brand-head p { color: #cdbda8; }
.footer-col h4 { color: #ffc63a; }
.footer-col a, .footer-col p { color: #c7b7a3; }
.footer-col a:hover { color: #fff2d7; }
.footer-bottom { color: #9c8b75; border-top-color: rgba(234,167,18,.18); }
.floating-whatsapp {
  color: #151009;
  background: linear-gradient(135deg, #df9506, #ffc83d);
  box-shadow: 0 16px 38px rgba(135,81,4,.34);
}

/* Páginas internas em versão clara */
.service-page { background: linear-gradient(180deg, #fffaf2, #eee0ca); color: #181109; }
.page-hero { background: #0b0805; color: #fffaf1; }
.service-hero::before { filter: saturate(.80) brightness(.78) contrast(1.06) sepia(.08); }
.page-hero-overlay {
  background: linear-gradient(90deg, rgba(7,5,3,.94) 0%, rgba(19,13,7,.80) 48%, rgba(9,7,5,.34) 100%);
}
.breadcrumbs { color: #e1b84e; }
.page-hero h1 { color: #fff8e8; }
.page-hero-text { color: #e7dac7; }
.page-section { background: #fffaf2; }
.alt-section {
  background: linear-gradient(180deg, #f1e4d0, #ead9bf);
  border-color: rgba(169,108,7,.18);
}
.detail-panel, .detail-side .detail-badge, .info-card {
  color: #19120b;
  border-color: rgba(166,105,7,.25);
  background: rgba(255,253,248,.96);
  box-shadow: 0 16px 42px rgba(93,55,6,.10);
}
.detail-panel h2, .detail-badge strong, .info-card h3 { color: #1b130b; }
.detail-panel p, .detail-badge p, .info-card p { color: #6b5d4d; }
.bullet-list svg { color: #bd7900; }
.cta-band { background: #f0e2cc; }
.cta-band-inner {
  color: #fff9ef;
  border-color: rgba(234,167,18,.40);
  background: linear-gradient(90deg, #17110b, #342517);
}
.cta-band-inner .section-kicker { color: #f2b51c; }
.cta-band h2 { color: #fff9ef; }

@media (max-width: 980px) {
  .main-nav {
    background: rgba(13,10,7,.98);
    border-bottom-color: rgba(234,167,18,.24);
  }
  .main-nav a { border-bottom-color: rgba(234,167,18,.10); }
  .menu-toggle {
    color: #ffc83c;
    background: rgba(20,15,9,.92);
    border-color: rgba(234,167,18,.40);
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(7,5,3,.94) 0%, rgba(16,11,6,.78) 56%, rgba(10,8,5,.30) 100%);
  }
  .featured-overlay {
    background: linear-gradient(90deg, #17110b 0%, #21180f 46%, rgba(28,20,12,.86) 62%, rgba(7,5,3,.22) 100%);
  }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-left-color: rgba(255,203,73,.18); }
}

@media (max-width: 640px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(7,5,3,.93) 0%, rgba(14,10,6,.76) 62%, rgba(8,6,4,.34) 100%);
  }
  .featured-overlay {
    background: linear-gradient(180deg, rgba(23,17,11,.97) 0%, rgba(30,22,13,.94) 56%, rgba(10,7,4,.62) 100%);
  }
  .trust-item { border-top-color: rgba(255,203,73,.16); }
}


/* Ajuste extra: fundos mais escuros e quentes, mantendo boa legibilidade */
.featured-section {
  background: linear-gradient(180deg, #2b2016 0%, #21170f 100%);
}

.services-section {
  color: #f6efe3;
  background:
    radial-gradient(circle at 12% 20%, rgba(234,167,18,.07), transparent 22%),
    linear-gradient(180deg, #2c2117 0%, #20160f 100%);
}
.services-section .section-kicker,
.method-section .section-kicker,
.contact-section .section-kicker,
.page-section .section-kicker,
.alt-section .section-kicker {
  color: #e7b43a;
}
.services-section .section-heading h2,
.method-section .method-header h2,
.contact-section .contact-copy h2,
.page-section .detail-panel h2,
.alt-section .info-card h3,
.cta-band h2 {
  color: #fff6e8;
}
.services-section .section-heading > p,
.method-section .method-step p,
.contact-section .contact-copy > p:not(.section-kicker) {
  color: #d4c4af;
}

.trust-section {
  background: linear-gradient(180deg, #241a12 0%, #1c140d 100%);
}

.method-section {
  color: #f7f0e4;
  background:
    radial-gradient(circle at 85% 15%, rgba(234,167,18,.08), transparent 26%),
    linear-gradient(180deg, #2a1f15, #20160f);
  border-top-color: rgba(184,121,11,.18);
}
.method-step {
  color: #fbf6ee;
  border-color: rgba(234,167,18,.20);
  background: linear-gradient(180deg, rgba(46,33,22,.96), rgba(33,23,15,.96));
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.method-step h3 { color: #fff4e0; }
.method-step p { color: #d7c6b0; }
.method-step span {
  background: linear-gradient(145deg, #ffdb7a, #f0ba2d);
  color: #4a3000;
}

.contact-section {
  color: #f6ede0;
  background:
    linear-gradient(90deg, rgba(43,31,22,.97), rgba(31,22,15,.97)),
    radial-gradient(circle at 85% 20%, rgba(234,167,18,.10), transparent 30%);
  border-top-color: rgba(173,111,8,.22);
}
.contact-copy { border-right-color: rgba(234,167,18,.18); }
.contact-copy h2 { color: #fff6e9; }
.contact-copy > p:not(.section-kicker) { color: #d6c5af; }
.contact-copy address a, .contact-copy address p { color: #f0e7d7; }

.service-page {
  background: linear-gradient(180deg, #261c13, #1b130d);
  color: #f5ecdf;
}
.page-section {
  background: linear-gradient(180deg, #2b2016, #221810);
}
.alt-section {
  background: linear-gradient(180deg, #261c14, #1d150e);
  border-color: rgba(169,108,7,.18);
}
.detail-panel, .detail-side .detail-badge, .info-card {
  color: #f6efe4;
  border-color: rgba(234,167,18,.18);
  background: linear-gradient(180deg, rgba(47,34,23,.96), rgba(31,22,15,.96));
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
}
.detail-panel h2, .detail-badge strong, .info-card h3 { color: #fff6e8; }
.detail-panel p, .detail-badge p, .info-card p { color: #d9c8b2; }
.bullet-list span { color: #efe4d3; }
.cta-band {
  background: linear-gradient(180deg, #241a12, #1a120c);
}

@media (max-width: 980px) {
  .method-section {
    background: linear-gradient(180deg, #2a1f15, #20160f);
  }
  .contact-section {
    background: linear-gradient(180deg, rgba(43,31,22,.98), rgba(31,22,15,.98));
  }
}
