:root {
  --primary: #0d4f8b;
  --primary-dark: #083662;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #16a34a;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
img, svg { max-width: 100%; height: auto; display: block; flex-shrink: 0; }
svg { width: 1em; height: 1em; max-width: 24px; max-height: 24px; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--dark); color: #fff; padding: .5rem 1rem;
}
.skip-link:focus { left: 1rem; }

/* Top bar */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: .55rem 0; flex-wrap: wrap;
}
.top-bar__contact { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar__contact a {
  color: #fff; display: inline-flex; align-items: center; gap: .4rem;
}
.top-bar__contact a:hover { color: var(--accent); }
.top-bar__contact svg { width: 15px; height: 15px; opacity: .85; }
.top-bar__cta {
  display: flex; align-items: center; gap: .35rem;
  color: #fcd34d; font-weight: 600;
}
.top-bar__cta::before { content: "+"; font-weight: 800; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img {
  display: block; height: 48px; width: auto; max-width: 220px;
  object-fit: contain;
}
.logo__img--footer {
  height: 44px; max-width: 200px;
  background: #fff; border-radius: 10px; padding: 6px 10px;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--dark);
  margin: 0 auto; transition: .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { display: flex; align-items: center; gap: .35rem; flex-wrap: nowrap; }
.main-nav > ul {
  display: flex; align-items: center; gap: .1rem; flex-wrap: nowrap;
}
.main-nav > ul > li { position: relative; }
.nav-item--dropdown::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%;
  height: 14px; z-index: 499;
}
.main-nav__actions {
  display: flex; align-items: center; gap: .5rem; margin-left: .35rem; flex-shrink: 0;
}
.main-nav a:not(.btn),
.nav-link--toggle {
  display: block; padding: .55rem .75rem; border-radius: 8px;
  color: var(--dark-soft); font-weight: 600; font-size: .88rem;
  border: none; background: none; cursor: pointer;
  font-family: inherit; text-align: left;
}
.nav-link--toggle {
  display: inline-flex; align-items: center; gap: .35rem; width: auto;
}
.nav-link--toggle::after {
  content: ""; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .55; transition: transform .2s;
}
.nav-item--dropdown.is-open > .nav-link--toggle::after { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 250px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: .45rem 0; z-index: 500;
}
.nav-item--dropdown:hover > .nav-dropdown,
.nav-item--dropdown:focus-within > .nav-dropdown { display: block; }
.nav-dropdown a {
  padding: .65rem 1rem; border-radius: 0;
  white-space: normal; line-height: 1.35; font-size: .84rem;
}
.nav-dropdown a:hover { background: var(--bg); color: var(--primary); }
.nav-dropdown__all { border-top: 1px solid var(--border); margin-top: .25rem; padding-top: .25rem; }
.nav-dropdown__all a { font-weight: 700; color: var(--primary); }
.main-nav a:not(.btn):hover,
.nav-link--toggle:hover { color: var(--primary); background: rgba(13,79,139,.06); }
.main-nav a.is-active { color: var(--primary); background: rgba(13,79,139,.08); }
.header-phone {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  margin-left: .5rem; padding-left: .75rem;
  border-left: 1px solid var(--border);
  font-weight: 700; color: var(--primary);
  white-space: nowrap; line-height: 1.2;
}
.header-phone small { display: block; font-size: .65rem; color: var(--muted); font-weight: 500; }
.header-phone:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .8rem 1.35rem; border-radius: 999px;
  font-weight: 700; font-size: .9rem; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(249,115,22,.45); }
.btn--secondary {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 24px rgba(13,79,139,.25);
}
.btn--secondary:hover { background: var(--primary-dark); color: #fff; }
.btn--outline {
  background: transparent; border-color: var(--primary); color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); color: #fff;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn--light { background: #fff; color: var(--dark); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--sm { padding: .55rem 1rem; font-size: .8125rem; }
.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* Hero */
.hero { position: relative; background: var(--dark); }
.hero__slider { position: relative; min-height: clamp(520px, 82vh, 760px); }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  pointer-events: none; display: flex; align-items: center;
  background-color: var(--dark);
  background-size: cover; background-position: center;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero__slide--1 { background-image: url("https://images.unsplash.com/photo-1589939705382-518fec163577?w=1600&q=80"); }
.hero__slide--2 { background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1600&q=80"); }
.hero__slide--3 { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80"); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.65) 45%, rgba(15,23,42,.35) 100%);
}
.hero__content {
  position: relative; z-index: 2; color: #fff;
  max-width: 680px; padding: 4rem 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.45);
  color: #fed7aa; padding: .4rem .9rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1rem;
}
.hero__content h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.12; margin: 0 0 1rem; letter-spacing: -.03em;
}
.hero__content p {
  font-size: clamp(1rem, 2vw, 1.15rem); opacity: .92;
  max-width: 540px; margin: 0;
}
.hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero__stats {
  display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat strong {
  display: block; font-size: 1.75rem; font-weight: 800; color: var(--accent);
  line-height: 1;
}
.hero__stat span { font-size: .8rem; opacity: .75; }
.hero__controls {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 5;
  display: flex; align-items: center; gap: .75rem;
}
.hero__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1);
  color: #fff; cursor: pointer; font-size: 1.1rem;
  backdrop-filter: blur(6px); transition: .2s;
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__dots { display: flex; gap: .45rem; }
.hero__dot {
  width: 8px; height: 8px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.35); cursor: pointer; transition: .25s;
}
.hero__dot.is-active { width: 28px; background: var(--accent); }

/* Trust strip */
.trust-strip {
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-top: -2rem; position: relative; z-index: 10;
  border-radius: var(--radius); margin-inline: auto;
  width: min(calc(100% - 2rem), var(--container));
}
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: 0; }
.trust-item__icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,79,139,.1), rgba(13,79,139,.04));
  display: grid; place-items: center; font-size: 1.35rem;
}
.trust-item__icon--1::after,
.trust-item__icon--2::after,
.trust-item__icon--3::after,
.trust-item__icon--4::after {
  font-weight: 800; font-size: 1rem; color: var(--primary);
}
.trust-item__icon--1::after { content: "K"; }
.trust-item__icon--2::after { content: "T"; }
.trust-item__icon--3::after { content: "Z"; }
.trust-item__icon--4::after { content: "U"; }
.trust-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.trust-item span { font-size: .78rem; color: var(--muted); }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block; color: var(--accent); font-weight: 800;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .5rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800;
  letter-spacing: -.025em; margin: 0 0 .75rem; color: var(--dark);
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.section-foot { margin-top: 2.5rem; text-align: center; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.about-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 420px;
}
.about-media__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-md);
}
.about-media__badge strong { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-media__badge span { font-size: .85rem; color: var(--muted); }
.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800;
  letter-spacing: -.02em; margin: 0 0 1rem; color: var(--dark);
}
.about-content p { color: var(--muted); margin-bottom: 1rem; }
.about-list {
  display: grid; gap: .65rem; margin: 1.5rem 0;
}
.about-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-weight: 600; font-size: .925rem;
}
.about-list li::before {
  content: "\2713"; color: #fff; background: var(--success);
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: .7rem; margin-top: 2px;
}

/* Service cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: rgba(13,79,139,.2);
}
.service-card__top {
  height: 8px; background: linear-gradient(90deg, var(--primary), var(--accent));
}
.service-card__body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,79,139,.12), rgba(249,115,22,.1));
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.service-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; font-weight: 800; line-height: 1.35; }
.service-card h3 a { color: var(--dark); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; flex: 1; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 700; font-size: .875rem; color: var(--primary);
}
.link-arrow::after { content: "\2192"; transition: transform .2s; }
.service-card:hover .link-arrow::after { transform: translateX(4px); }

/* Locations */
.section--locations { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.location-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.location-card {
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.15rem; color: inherit; transition: .2s;
  box-shadow: var(--shadow-sm);
}
.location-card:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.location-card__pin {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(13,79,139,.08); color: var(--primary);
  display: grid; place-items: center; font-size: 1.1rem;
  position: relative;
}
.location-card__pin::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-45deg);
}
.location-card strong { display: block; font-size: .925rem; font-weight: 700; }
.location-card span { font-size: .78rem; color: var(--muted); }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; position: relative; background: var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.5), transparent);
  opacity: 0; transition: .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-grid--full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gallery-placeholder, .empty-state {
  grid-column: 1 / -1; text-align: center; color: var(--muted);
  padding: 3rem; background: #fff; border-radius: var(--radius); border: 2px dashed var(--border);
}

/* Contact preview */
.contact-preview {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: stretch;
}
.contact-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-box h2 { font-size: 1.75rem; font-weight: 800; margin: 0 0 .75rem; }
.contact-box p { opacity: .9; margin-bottom: 1.5rem; }
.contact-list li { margin-bottom: .85rem; display: flex; gap: .5rem; }
.contact-list strong { opacity: .75; min-width: 70px; }
.contact-list a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-action {
  background: #fff; border-radius: var(--radius); padding: 2.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  text-align: center;
}
.contact-action p { color: var(--muted); margin: 0; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 3.5rem 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&q=60") center/cover;
  opacity: .15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; margin: .5rem 0; letter-spacing: -.02em; }
.page-hero .lead { opacity: .9; max-width: 600px; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; margin-bottom: .75rem; opacity: .8; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--accent); }

.content-body { max-width: 800px; margin: 0 auto; }
.content-body--wide { max-width: none; }
.content-body p { margin-bottom: 1rem; color: var(--muted); line-height: 1.75; }
.content-body h2 {
  font-size: 1.45rem; font-weight: 800; color: var(--dark);
  margin: 2.25rem 0 1rem; line-height: 1.3; letter-spacing: -.02em;
}
.content-body h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--dark);
  margin: 0 0 .65rem; line-height: 1.35;
}
.content-body ul, .content-body ol { margin: 0 0 1.25rem 1.25rem; color: var(--muted); line-height: 1.75; }
.content-body li { margin-bottom: .5rem; }
.content-body strong { color: var(--dark); font-weight: 700; }

.landing-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem; align-items: start;
}
.page-hero--location .hero-subtitle,
.page-hero--rich .hero-subtitle {
  font-size: 1rem; opacity: .85; max-width: 720px; margin: .35rem 0 .75rem;
  font-weight: 600;
}
.location-seo .content-kicker {
  font-size: .95rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1rem;
}
.location-seo .content-intro { font-size: 1.05rem; color: var(--dark); }
.location-service-block {
  padding: 1.15rem 1.25rem; margin-bottom: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); border-left: 4px solid var(--primary);
}
.location-service-block p:last-child { margin-bottom: 0; }
.location-checklist { list-style: none; margin-left: 0 !important; padding: 0; }
.location-checklist li {
  position: relative; padding-left: 1.5rem; margin-bottom: .75rem;
}
.location-checklist li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--primary); font-weight: 800;
}
.location-steps { counter-reset: locstep; list-style: none; margin-left: 0 !important; padding: 0; }
.location-steps li {
  counter-increment: locstep; position: relative;
  padding: .85rem 1rem .85rem 3rem; margin-bottom: .65rem;
  background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border);
}
.location-steps li::before {
  content: counter(locstep); position: absolute; left: .85rem; top: .85rem;
  width: 1.65rem; height: 1.65rem; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.location-cta-text {
  margin-top: 2rem; padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(37,99,235,.02));
  border-radius: var(--radius); border: 1px solid rgba(37,99,235,.15);
  color: var(--dark) !important; font-size: 1.05rem;
}
.landing-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm);
}
.sidebar-card h3, .sidebar-card h4 { margin: 0 0 .75rem; font-weight: 800; font-size: 1rem; }
.sidebar-card p { font-size: .9rem; color: var(--muted); margin: 0 0 1rem; line-height: 1.6; }
.sidebar-card--muted { background: var(--surface); }
.sidebar-links { list-style: none; margin: 0; padding: 0; }
.sidebar-links li { margin-bottom: .45rem; }
.sidebar-links a { color: var(--primary); font-weight: 600; font-size: .9rem; }
.btn--block { display: block; width: 100%; text-align: center; margin-bottom: .5rem; }
.btn--block:last-child { margin-bottom: 0; }

.pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .75rem 1rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.pagination__pages { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.pagination__link, .pagination__current, .pagination__prev, .pagination__next {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.25rem; height: 2.25rem; padding: 0 .65rem;
  border-radius: 8px; font-weight: 700; font-size: .9rem;
}
.pagination__link, .pagination__prev, .pagination__next {
  background: #fff; border: 1px solid var(--border); color: var(--dark);
}
.pagination__link:hover, .pagination__prev:hover, .pagination__next:hover {
  border-color: var(--primary); color: var(--primary);
}
.pagination__current {
  background: var(--primary); color: #fff; border: 1px solid var(--primary);
}

/* Forms */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.contact-info {
  background: var(--primary); color: #fff; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-md);
}
.contact-info h2 { margin-top: 0; font-weight: 800; }
.contact-list--large li { margin-bottom: 1.25rem; }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1rem; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .875rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font: inherit; transition: border .2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,79,139,.12);
}
.alert { padding: .85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .9rem; }
.alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; padding: 3.5rem 0;
}
.cta-band__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.65rem; font-weight: 800; margin: 0 0 .35rem; }
.cta-band p { margin: 0; opacity: .95; }
.cta-band__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cta-inline { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inline__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* Footer */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.8); padding: 4rem 0 0;
}
.site-footer h3 {
  color: #fff; font-size: .95rem; font-weight: 800; margin: 0 0 1rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--accent); }
.footer-links li, .footer-contact li { margin-bottom: .55rem; font-size: .9rem; }
.site-footer__brand p { font-size: .9rem; line-height: 1.7; margin: 1rem 0 0; }
.site-footer__bottom {
  margin-top: 3rem; padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.float-action {
  position: fixed; bottom: 1.25rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff; display: grid; place-items: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .25);
}
.float-action:hover { transform: scale(1.08); color: #fff; }
.float-action__hint {
  position: absolute; white-space: nowrap;
  background: #0f172a; color: #fff; font-size: .75rem; font-weight: 700;
  padding: .4rem .75rem; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.float-call {
  left: 1.25rem;
  background: linear-gradient(135deg, var(--primary), #1d6eb5);
  box-shadow: 0 8px 30px rgba(13, 79, 139, .45);
}
.float-call .float-action__hint { left: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(-6px); }
.float-call:hover .float-action__hint { opacity: 1; transform: translateY(-50%) translateX(0); }
.float-whatsapp {
  right: 1.25rem;
  background: #25d366;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
}
.float-whatsapp .float-action__hint { right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(6px); }
.float-whatsapp:hover .float-action__hint { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(13, 79, 139, .45); }
  50% { box-shadow: 0 8px 30px rgba(13, 79, 139, .45), 0 0 0 8px rgba(13, 79, 139, .15); }
}
@keyframes float-pulse-wa {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, .45), 0 0 0 8px rgba(37, 211, 102, .15); }
}
.float-call { animation: float-pulse 2.5s ease-in-out infinite; }
.float-whatsapp { animation: float-pulse-wa 2.5s ease-in-out infinite; animation-delay: .4s; }

.mobile-action-bar { display: none; }

.section--404 { text-align: center; padding: 6rem 0; }

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .about-grid, .contact-preview, .contact-layout, .site-footer__grid, .landing-layout {
    grid-template-columns: 1fr;
  }
  .landing-sidebar { position: static; }
  .header-phone { display: none; }
  .main-nav__actions { flex-direction: column; width: 100%; margin: .5rem 0 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 88vw);
    background: #fff; padding: 5rem 1.5rem 2rem;
    flex-direction: column; align-items: stretch;
    transform: translateX(100%); transition: .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item--dropdown::after { display: none; }
  .nav-item--dropdown:hover > .nav-dropdown { display: none; }
  .nav-item--dropdown.is-open > .nav-dropdown {
    display: block; position: static; box-shadow: none; border: 0;
    margin: 0; padding: 0 0 .5rem 1rem; min-width: 0;
  }
  .nav-link--toggle { width: 100%; }
  .main-nav a:not(.btn) { padding: .75rem 1rem; }
  .main-nav .btn { width: 100%; margin-top: .5rem; }
  .hero__controls { right: 1rem; bottom: 1rem; }
  .hero__stats { gap: 1.25rem; }
  .form-row--half { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .float-action { display: none; }
  .mobile-action-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
    box-shadow: 0 -6px 28px rgba(15, 23, 42, .18);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .mobile-action-bar__item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: .2rem; padding: .65rem .5rem;
    color: #fff; text-align: center; min-height: 68px;
    transition: filter .15s;
  }
  .mobile-action-bar__item:active { filter: brightness(.92); }
  .mobile-action-bar__call {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  }
  .mobile-action-bar__whatsapp { background: #25d366; }
  .mobile-action-bar__row {
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    font-size: .95rem; line-height: 1.2;
  }
  .mobile-action-bar__row strong { font-weight: 800; letter-spacing: -.01em; }
  .mobile-action-bar__sub {
    display: flex; align-items: center; justify-content: center; gap: .3rem;
    font-size: .68rem; font-weight: 600; opacity: .92; line-height: 1.2;
  }
}
@media (max-width: 600px) {
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .logo__img { height: 40px; max-width: 175px; }
}
