:root {
  --blue-950: #081523;
  --blue-900: #0b1f33;
  --blue-800: #123450;
  --blue-700: #185178;
  --red: #c93232;
  --orange: #f37b21;
  --gray-950: #111418;
  --gray-800: #2a3038;
  --gray-700: #3a424c;
  --gray-200: #e6e9ed;
  --gray-100: #f3f5f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 21, 35, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--gray-950);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, .97);
  border-bottom: 1px solid rgba(18, 52, 80, .12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue-950);
  width: clamp(260px, 28vw, 320px);
  height: 74px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .66);
  font-size: .76rem;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--blue-950);
  padding: 10px 9px;
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(18, 52, 80, .08);
  color: var(--blue-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--blue-950);
  background: rgba(243, 123, 33, .16);
  border: 1px solid rgba(243, 123, 33, .45);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(18, 52, 80, .22);
  border-radius: var(--radius);
  background: rgba(18, 52, 80, .06);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-950);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: .86rem;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(243, 123, 33, .25);
}

.btn-whatsapp {
  color: var(--white);
  background: #1f9d55;
}

.btn-outline {
  color: var(--blue-900);
  background: transparent;
  border-color: rgba(18, 52, 80, .28);
}

.btn-outline.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}

.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(8, 21, 35, .97) 0%, rgba(11, 31, 51, .92) 55%, rgba(24, 81, 120, .74) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 13px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--blue-700));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
  align-items: center;
  gap: 46px;
  min-height: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-head h2,
.about-section h2,
.location-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.13rem;
}

.hero-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
}

.image-frame {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 123, 33, .18), rgba(201, 50, 50, .12)),
    linear-gradient(145deg, #202832, #111820);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media {
  min-height: 455px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 26px;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(8, 21, 35, .18), rgba(8, 21, 35, .76)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 16px);
}

.image-placeholder strong {
  color: var(--white);
  font-size: 1.15rem;
}

.image-placeholder span {
  font-size: .86rem;
}

.image-frame:not(.is-missing) .image-placeholder {
  display: none;
}

.image-frame.is-missing img {
  display: none;
}

.trust-strip {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-inline: 1px solid var(--gray-200);
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 18px;
  background: var(--white);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-blue {
  color: var(--blue-700);
  background: rgba(24, 81, 120, .1);
}

.icon-orange {
  color: #b95616;
  background: rgba(243, 123, 33, .12);
}

.icon-red {
  color: var(--red);
  background: rgba(201, 50, 50, .1);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2,
.about-section h2,
.location-section h2,
.contact-section h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.section-head p,
.about-section p,
.location-section p,
.contact-section p {
  margin: 15px 0 0;
  color: #4f5965;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(8, 21, 35, .06);
}

.service-card h3 {
  margin: 18px 0 8px;
  color: var(--blue-950);
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #56616d;
}

.process-section,
.location-section {
  background: var(--gray-100);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 90px;
  height: 90px;
  background: rgba(243, 123, 33, .18);
  border-radius: 50%;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(243, 123, 33, .18);
  border: 1px solid rgba(243, 123, 33, .42);
  border-radius: var(--radius);
}

.timeline-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline h3 {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  font-size: 1.03rem;
  line-height: 1.28;
}

.about-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: 36px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stats-grid article {
  min-height: 122px;
  padding: 22px;
  background: var(--blue-900);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
}

.stats-grid strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
}

.stats-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .75);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  min-height: 260px;
  margin: 0;
  border: 1px solid var(--gray-200);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(8, 21, 35, .72);
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 800;
}

.gallery-item.is-missing figcaption {
  display: none;
}

.map-frame {
  height: 360px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--gray-950));
}

.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, .72);
}

.contact-card {
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.contact-card dl,
.contact-card dd {
  margin: 0;
}

.contact-card div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
}

.contact-card dd {
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #07111d;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand {
  width: min(380px, 100%);
  height: 92px;
  padding: 12px 20px;
  background: #f8f3e8;
  border-radius: 999px;
}

.footer-brand .brand-logo {
  object-position: center;
}

.site-footer p {
  max-width: 340px;
  margin: 18px 0 0;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

.floating-actions {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
  cursor: pointer;
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.float-btn.phone svg,
.float-btn.top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-btn.whatsapp {
  background: #1f9d55;
}

.float-btn.phone {
  background: var(--blue-700);
}

.float-btn.top {
  background: var(--gray-800);
}

@media (max-width: 1060px) {
  .brand {
    width: clamp(200px, 24vw, 240px);
    height: 62px;
  }

  .header-actions {
    display: none;
  }

  .trust-grid,
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 18px;
    background: #f8fafc;
    border-top: 1px solid rgba(18, 52, 80, .12);
    box-shadow: 0 26px 35px rgba(8, 21, 35, .16);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(18, 52, 80, .1);
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-media {
    min-height: 330px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 112px;
  }

  .map-frame {
    height: 310px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand {
    width: clamp(150px, 44vw, 190px);
    height: 54px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: .8rem;
  }

  .service-grid,
  .trust-grid,
  .stats-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 76px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .floating-actions {
    right: 10px;
    bottom: 12px;
    gap: 8px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }
}
