:root {
  --bronze-dark: #2e1c10;
  --bronze-mid: #8a5a2e;
  --bronze-light: #c9884f;
  --bronze-highlight: #e3ab74;
  --gradient-brand: linear-gradient(180deg, var(--bronze-dark) 0%, var(--bronze-mid) 35%, var(--bronze-highlight) 50%, var(--bronze-mid) 65%, var(--bronze-dark) 100%);
  --gradient-brand-h: linear-gradient(90deg, var(--bronze-dark) 0%, var(--bronze-mid) 35%, var(--bronze-highlight) 50%, var(--bronze-mid) 65%, var(--bronze-dark) 100%);
  --ink: #1c1a18;
  --ink-soft: #514a44;
  --surface: #ffffff;
  --surface-alt: #f6f1ec;
  --border: #e7ded4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(46, 28, 16, 0.12);
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
p { margin: 0 0 16px; color: var(--ink-soft); }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand-h);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { opacity: .92; }

.btn-whatsapp {
  background: #25D366;
  color: #0a3d21;
  box-shadow: var(--shadow);
}
.btn-whatsapp:hover { opacity: .92; }

.btn-outline {
  border-color: var(--bronze-mid);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: var(--surface-alt); color: var(--bronze-dark); }

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(46, 28, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(24px, 6vw, 96px);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 48px;
}
.logo img { height: 72px; width: auto; }
.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
}
.nav a:hover { color: var(--bronze-highlight); }
.nav-icon { font-size: .95em; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 32px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--bronze-highlight); }
.nav-cta { white-space: nowrap; padding: 10px 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 85% 0%, rgba(201,136,79,0.18), transparent 55%),
    var(--surface-alt);
  padding: 96px 0 80px;
}
.hero-inner { max-width: 780px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--bronze-mid);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--ink);
}
.hero-sub { font-size: 1.1rem; max-width: 620px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Hero video */
.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 140px clamp(24px, 6vw, 96px) 80px;
  background: var(--bronze-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,6,3,0.75) 0%, rgba(10,6,3,0.4) 45%, rgba(10,6,3,0.15) 75%),
    linear-gradient(180deg, rgba(10,6,3,0.55) 0%, rgba(10,6,3,0.25) 45%, rgba(10,6,3,0.65) 100%);
}
.hero-video .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-video .eyebrow { color: var(--bronze-highlight); }
.hero-video h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: justify;
  hyphens: auto;
  word-spacing: -1px;
}
.hero-highlight { color: var(--bronze-highlight); }
.hero-video .hero-sub { color: rgba(255,255,255,0.9); max-width: none; white-space: nowrap; }
@media (max-width: 900px) {
  .hero-video .hero-sub { white-space: normal; }
}
.hero-video .hero-actions { justify-content: flex-start; }

/* Stats */
.stats { padding: 44px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 24px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--ink-soft); font-size: .95rem; }

.beneficios-stats {
  margin-top: 48px;
}
.beneficios-stats .stat {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.6);
}

/* Sections */
.section { padding: 76px 0; }
#nosotros { padding: 0; }
.section.alt { background: var(--surface-alt); }
#nosotros {
  background-image:
    linear-gradient(rgba(245, 237, 228, 0.55), rgba(245, 237, 228, 0.55)),
    url("assets/img/galeria/fondo_2_blanco_condisenotransparente.webp");
  background-size: cover;
  background-position: center;
}
#nosotros .about-text h2 {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
}
#nosotros .about-text strong { color: var(--bronze-dark); }
#nosotros .about-text p { text-align: justify; }
.section-sub { max-width: 560px; font-size: 1.05rem; margin-top: -8px; margin-bottom: 40px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { margin: 0; font-size: .95rem; }

/* Offer grid ("Lo que ofrecemos") */
#servicios {
  background-color: var(--surface);
  background-image: url("assets/img/galeria/patron_rutas.svg");
  background-repeat: repeat;
  background-size: 420px 420px;
}
#servicios h2 {
  margin: 0 auto 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.4vw, 3.1rem);
  max-width: 860px;
}
.offer-quote {
  margin: 0 0 40px;
  padding: 6px 0 6px 26px;
  border-left: 6px solid var(--bronze-mid);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .offer-quote { white-space: normal; font-size: 1.4rem; }
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}
.offer-grid + .offer-grid { margin-top: 36px; }
.offer-grid-empty { min-height: 220px; }
.offer-van-img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.offer-highlight {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: none;
  margin: 0 0 28px;
  text-align: justify;
}
.offer-highlight strong { color: var(--bronze-dark); }
.offer-highlight-mark { color: var(--bronze-mid); font-weight: 700; }
.offer-divider {
  border-top: 3px dotted var(--bronze-mid);
  margin: 0 0 44px;
}
.offer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 56px;
}
.offer-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand-h);
  color: #fff;
  margin-bottom: 14px;
}
.offer-feature-icon svg { width: 28px; height: 28px; }
.offer-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--bronze-dark);
}
.offer-feature p {
  font-size: .92rem;
  margin: 0;
}

@media (max-width: 900px) {
  .offer-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .offer-features { grid-template-columns: 1fr; gap: 36px; }
}
.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--bronze-mid);
  margin-bottom: 10px;
}
.offer-icon svg { width: 20px; height: 20px; }
.offer h3 { font-size: 1.05rem; margin-bottom: 10px; }
.offer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer ul li {
  position: relative;
  padding-left: 16px;
  font-size: .93rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.offer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--bronze-mid);
  font-weight: 800;
}

@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* About */
.about-flex {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}
.about-flex .about-text { flex: 0 1 480px; max-width: 480px; padding: 40px 0; }
.about-flex .about-img-wrap { flex: 1 1 auto; min-width: 0; padding-right: 100px; box-sizing: border-box; }
.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-img-col {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-logo {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
}
.about-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  margin-left: auto;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .about-flex { flex-direction: column; padding-left: 0; }
  .about-flex .about-text { padding: 0 clamp(24px, 6vw, 96px); max-width: none; }
  .about-flex .about-img-wrap { flex: none; width: 100%; padding: 0 clamp(24px, 6vw, 96px); }
  .about-img { margin-left: 0; }
}
.about-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--bronze-mid);
  font-weight: 800;
}

/* Benefits */
#beneficios {
  background-image:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)),
    url("assets/img/galeria/fondo_transportedepersonal_2.1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#beneficios h2 {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(2.2rem, 4.4vw, 3.1rem);
}

@media (max-width: 900px) {
  #beneficios { background-attachment: scroll; }
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--bronze-mid);
  margin-bottom: 12px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.25rem; margin-bottom: 8px; }
.benefit p { margin: 0; font-size: 1.1rem; line-height: 1.5; }

@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Why MAHE */
.why-mahe-inline {
  background: linear-gradient(160deg, var(--bronze-dark) 0%, #1c1006 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px clamp(24px, 5vw, 64px);
  margin: 56px 0;
}
.why-mahe-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--bronze-highlight);
  margin: 0 0 10px;
}
.why-mahe-inline h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 36px;
}
.why-mahe-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.why-mahe-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-mahe-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-brand-h);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.why-mahe-list h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 6px;
}
.why-mahe-list p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: .98rem;
  line-height: 1.5;
}

/* Compare table + zones */
.compare {
  background-color: var(--surface);
  background-image: url("assets/img/galeria/patron_rutas.svg");
  background-repeat: repeat;
  background-size: 420px 420px;
}
.compare h2 { text-align: center; }
.compare-sub {
  max-width: 680px;
  margin: -8px auto 40px;
  text-align: center;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 72px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th {
  background: var(--gradient-brand-h);
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-size: .95rem;
}
.compare-table th:first-child { background: var(--ink); }
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  vertical-align: top;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-feature { font-weight: 700; background: var(--surface-alt); }
.compare-no { color: var(--ink-soft); }
.compare-no::before { content: "✕ "; color: #c0392b; font-weight: 800; }
.compare-yes { background: #f3f9f4; color: var(--ink); font-weight: 500; }
.compare-yes::before { content: "✓ "; color: #2e8b57; font-weight: 800; }

.compare-zones-title { text-align: center; margin-top: 0; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zone {
  background: var(--surface-alt);
  border-left: 4px solid var(--bronze-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.zone h3 { font-size: 1.05rem; margin: 0 0 14px; }
.zone ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.zone li {
  position: relative;
  padding-left: 18px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.zone li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-mid);
}

@media (max-width: 720px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq {
  background-color: var(--surface);
  background-image: url("assets/img/galeria/patron_rutas.svg");
  background-repeat: repeat;
  background-size: 420px 420px;
}
.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(160deg, var(--bronze-dark) 0%, #1c1006 100%);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bronze-highlight);
}
.faq-item[open] summary::after { content: "\2715"; font-size: 1rem; }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255,255,255,0.8);
  font-size: .96rem;
  line-height: 1.6;
}
.faq-item p strong { color: var(--bronze-highlight); }

/* CTA band */
.cta-band {
  background-image:
    linear-gradient(rgba(46,28,16,0.86), rgba(46,28,16,0.86)),
    url("assets/img/galeria/formulario_mahe.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--bronze-dark);
  box-shadow: none;
}
.prep-intro { text-align: center; max-width: none; margin: 0 auto 44px; }
.prep-eyebrow { justify-content: center; }
.prep-title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 14px; }
.prep-sub { color: rgba(255,255,255,0.78); margin: 0; white-space: nowrap; }
@media (max-width: 720px) {
  .prep-sub { white-space: normal; }
}
.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}
.prep-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
}
.prep-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-brand-h);
  color: #fff;
  margin-bottom: 12px;
}
.prep-icon svg { width: 20px; height: 20px; }
.prep-card h3 { color: #fff; font-size: 1.02rem; margin: 0 0 8px; }
.prep-card p { color: rgba(255,255,255,0.72); font-size: .9rem; margin: 0; line-height: 1.5; }

@media (max-width: 860px) {
  .prep-grid { grid-template-columns: 1fr; }
}

.cta-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.cta-band-info { max-width: 460px; }
.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--bronze-highlight);
  margin: 0 0 18px;
}
.cta-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bronze-highlight);
}
.cta-band-info h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 18px;
}
.cta-band-info p { color: rgba(255,255,255,0.82); }

@media (max-width: 860px) {
  .cta-band-grid { grid-template-columns: 1fr; }
  .cta-band-info { max-width: none; text-align: center; }
  .cta-eyebrow { justify-content: center; }
}

/* Hero form link */
.hero-form-link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  opacity: .9;
  transition: opacity .15s ease;
}
.hero-form-link:hover { opacity: 1; text-decoration: underline; }

/* Quote form */
.quote-form {
  text-align: left;
  margin-top: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field-full { grid-column: 1 / -1; }
.quote-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-family: inherit;
  font-size: max(.95rem, 16px);
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--bronze-highlight);
  outline-offset: 1px;
}
.quote-form textarea { resize: vertical; }
.form-error, .form-success {
  font-size: .9rem;
  font-weight: 600;
  margin: 0 0 14px;
}
.form-error { color: #ffb4b4; }
.form-success { color: #b6f5c9; }
.hidden { display: none; }
#formSubmit:disabled { opacity: .7; cursor: not-allowed; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--bronze-mid);
  margin-bottom: 14px;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.contact-card p { font-size: .9rem; margin: 0 0 16px; }
.contact-card a {
  display: block;
  max-width: 100%;
  color: var(--bronze-mid);
  font-weight: 700;
  text-decoration: none;
  font-size: .78rem;
  white-space: nowrap;
}
.contact-card a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 26px;
  background: var(--ink);
  color: #e9e2da;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}
.footer-logo { height: 44px; width: auto; }
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 520px;
}
.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.footer-social {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand-h);
  color: #fff;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .9rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 32px; width: auto; }
.footer-inner a { color: var(--bronze-highlight); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

.mobile-menu { display: contents; }
@media (max-width: 720px) {
  .mobile-menu { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }
  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    padding: 20px 24px 0;
  }
  .site-header.open .nav a { color: var(--ink); }
  .site-header.open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px 20px;
  }
  .site-header.open .nav-phone { color: var(--ink); }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Dev credit */
.dev-credit {
  background: var(--surface);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dev-credit img { height: 22px; width: auto; }
.dev-credit-sep {
  width: 1px;
  height: 14px;
  background: var(--ink);
  opacity: .35;
}
.dev-credit a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.dev-credit a:hover { color: var(--bronze-mid); }

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--bronze-highlight);
  text-decoration: none;
  cursor: pointer;
}
.link-btn:hover { text-decoration: underline; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: whatsapp-pulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Privacy modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,6,3,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px 32px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.modal-box h2 { margin: 0 0 18px; color: var(--bronze-dark); }
.modal-body p { font-size: .92rem; line-height: 1.6; margin: 0 0 14px; }
.modal-body a { color: var(--bronze-mid); font-weight: 600; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--border); }

.contacto-title { text-transform: uppercase; }
.contacto-sub { margin-bottom: 4px; }
.contacto-tagline {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bronze-dark);
  margin: 0 0 40px;
}
