@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --color-negro: #0a0a0a;
  --color-oscuro: #111111;
  --color-medio: #1a1a1a;
  --color-borde: #2a2a2a;
  --color-texto: #aaaaaa;
  --color-blanco: #ffffff;
  --color-gris-claro: #f4f4f4;
  --color-acento: #C9A84C;
  --color-acento-hover: #e0b85a;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transicion: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--color-negro); color: var(--color-blanco); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ANIMATIONS */
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; overflow: visible;
  background: var(--color-negro);
  transition: background var(--transicion), box-shadow var(--transicion);
}
.navbar.scrolled { background: rgba(10,10,10,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 5%; height: 72px; overflow: visible;
}
.nav-logo { overflow: visible; display: flex; align-items: center; }
.nav-logo img {
  height: 170px;
  width: auto;
  display: block;
  /* El PNG original tiene mucho espacio vacío arriba/abajo del logo.
     Con margin negativo lo centramos sin inflar la altura del navbar. */
  margin-top: -56px;
  margin-bottom: -56px;
}

.nav-links { display: flex; list-style: none; gap: 2.2rem; align-items: center; }
.nav-link {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; color: #bbb; text-transform: uppercase;
  position: relative; transition: color var(--transicion);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--color-acento); transition: width var(--transicion);
}
.nav-link:hover, .nav-link.active { color: var(--color-blanco); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.btn-nav-cta {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--color-acento); color: var(--color-negro);
  padding: 0.6rem 1.6rem; transition: background var(--transicion);
}
.btn-nav-cta:hover { background: var(--color-acento-hover); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-blanco); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.webp');
  background-size: cover; background-position: center 40%;
  animation: heroZoom 10s ease forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 5%; max-width: 680px; margin-top: -60px;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-eyebrow {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 4px; color: var(--color-acento); text-transform: uppercase; margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800; line-height: 0.95; text-transform: uppercase; color: var(--color-blanco); margin-bottom: 1.2rem;
}
.hero-title .acento { color: var(--color-acento); }
.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); font-weight: 300; color: #ccc;
  line-height: 1.6; margin-bottom: 2rem; max-width: 420px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--color-acento); color: var(--color-negro);
  padding: 0.85rem 2rem; transition: background var(--transicion); display: inline-block;
}
.btn-primary:hover { background: var(--color-acento-hover); }
.btn-secondary {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); color: var(--color-blanco);
  padding: 0.85rem 2rem; transition: all var(--transicion); display: inline-block;
}
.btn-secondary:hover { border-color: var(--color-blanco); background: rgba(255,255,255,0.07); }

/* HERO GARANTÍAS */
.hero-garantias {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(0,0,0,0.78); border-top: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.garantia-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1rem; gap: 0.5rem; border-right: 1px solid rgba(255,255,255,0.07);
}
.garantia-item:last-child { border-right: none; }
.garantia-item svg { width: 36px; height: 36px; color: var(--color-acento); flex-shrink: 0; }
.garantia-item strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--color-blanco); }
.garantia-item small { font-size: 0.74rem; color: #888; line-height: 1.4; max-width: 160px; }

/* PAGE HERO (interior pages) */
.page-hero {
  position: relative; height: 320px; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 3rem;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: heroZoom 12s ease forwards;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.page-hero-content { position: relative; z-index: 1; padding: 0 5%; }
.page-hero-content .section-eyebrow { margin-bottom: 0.5rem; }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; text-transform: uppercase; color: var(--color-blanco); line-height: 1;
}
.breadcrumb { font-size: 0.8rem; color: #888; margin-top: 0.8rem; }
.breadcrumb a { color: var(--color-acento); }
.breadcrumb a:hover { color: var(--color-acento-hover); }

/* SECTION COMMONS */
.section-eyebrow {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--color-acento); margin-bottom: 0.6rem;
}
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 5rem 5%; }

/* ATRIBUTOS STRIP */
.atributos-strip { background: var(--color-gris-claro); padding: 4rem 5%; }
.atributos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.atributo { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.atributo svg { width: 44px; height: 44px; color: var(--color-acento); }
.atributo h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #111; }
.atributo p { font-size: 0.82rem; color: #666; line-height: 1.5; max-width: 200px; }

/* FLOTA SECTION */
.flota-section { background: var(--color-oscuro); padding: 5rem 5%; }
.flota-inner { max-width: 1300px; margin: 0 auto; }
.flota-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; gap: 1.5rem; }
.flota-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--color-blanco); line-height: 1.1; }
.btn-outline {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--color-acento); color: var(--color-acento); padding: 0.7rem 1.5rem;
  white-space: nowrap; flex-shrink: 0; transition: all var(--transicion); display: inline-block; align-self: flex-start; margin-top: 0.4rem;
}
.btn-outline:hover { background: var(--color-acento); color: var(--color-negro); }
.flota-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.flota-card { background: var(--color-medio); overflow: hidden; cursor: pointer; }
.flota-card-img { overflow: hidden; aspect-ratio: 4/3; }
.flota-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.flota-card:hover .flota-card-img img { transform: scale(1.05); }
.flota-card-info { padding: 1.2rem 1rem 1.8rem; display: flex; flex-direction: column; gap: 0.3rem; position: relative; }
.flota-card-info::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--color-acento); transition: width 0.4s ease; }
.flota-card:hover .flota-card-info::before { width: 100%; }
.flota-card-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-blanco); }
.flota-card-info p { font-size: 0.82rem; color: #888; line-height: 1.4; }
.flota-card-badge { display: inline-block; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(201,168,76,0.15); color: var(--color-acento); padding: 0.25rem 0.6rem; margin-top: 0.3rem; }
.flota-card-arrow { position: absolute; bottom: 1.2rem; right: 1rem; font-size: 1.3rem; color: var(--color-acento); transition: transform var(--transicion); }
.flota-card:hover .flota-card-arrow { transform: translateX(4px); }

/* EMPRESA / NOSOTROS */
.empresa-section { background: var(--color-negro); padding: 5rem 5%; }
.empresa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.empresa-img { position: relative; }
.empresa-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.empresa-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--color-acento); color: var(--color-negro);
  padding: 1.5rem 2rem; text-align: center;
}
.empresa-img-badge strong { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; display: block; line-height: 1; }
.empresa-img-badge span { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.empresa-text { display: flex; flex-direction: column; gap: 1.2rem; }
.empresa-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.05; }
.empresa-text p { font-size: 0.95rem; color: #aaa; line-height: 1.7; }
.empresa-valores { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.valor-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.valor-item svg { width: 20px; height: 20px; color: var(--color-acento); flex-shrink: 0; margin-top: 2px; }
.valor-item p { font-size: 0.85rem; color: #ccc; line-height: 1.5; }
.valor-item strong { display: block; font-weight: 600; color: #fff; margin-bottom: 2px; }

/* SERVICIOS PAGE */
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-borde); }
.servicio-card { background: var(--color-medio); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; transition: background var(--transicion); }
.servicio-card:hover { background: #222; }
.servicio-card svg { width: 48px; height: 48px; color: var(--color-acento); }
.servicio-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-blanco); }
.servicio-card p { font-size: 0.88rem; color: #888; line-height: 1.6; }
.servicio-card .btn-outline { margin-top: auto; align-self: flex-start; }

/* CONTACTO PAGE */
.contacto-page { background: var(--color-negro); padding: 5rem 5%; }
.contacto-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.contacto-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contacto-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.05; }
.contacto-info p { font-size: 0.9rem; color: #aaa; line-height: 1.7; }
.contacto-datos { display: flex; flex-direction: column; gap: 1.2rem; }
.dato-item { display: flex; align-items: center; gap: 1rem; }
.dato-item svg { width: 22px; height: 22px; color: var(--color-acento); flex-shrink: 0; }
.dato-item a, .dato-item span { font-size: 0.9rem; color: #ccc; transition: color var(--transicion); }
.dato-item a:hover { color: var(--color-acento); }
.contacto-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #888; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--color-medio); border: 1px solid var(--color-borde); color: var(--color-blanco);
  padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--transicion);
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--color-acento); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-whatsapp-submit {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: #25D366; color: #fff; padding: 1rem 2rem; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.75rem; justify-content: center; transition: background var(--transicion);
}
.btn-whatsapp-submit:hover { background: #20bc5a; }
.btn-whatsapp-submit svg { width: 20px; height: 20px; }

/* CTA SECTION */
.cta-section { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../img/cta-fondo.webp');
  background-size: cover; background-position: center 30%;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%); }
.cta-content { position: relative; z-index: 1; padding: 4rem 5%; max-width: 600px; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--color-blanco); line-height: 1.05; margin-bottom: 1.8rem; }

/* CONTACTO STRIP */
.contacto-strip { background: var(--color-gris-claro); padding: 3.5rem 5%; }
.contacto-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; }
.contacto-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; padding: 0 1.5rem; border-right: 1px solid #ddd; }
.contacto-item:last-child { border-right: none; }
.contacto-item svg { width: 28px; height: 28px; color: var(--color-acento); }
.contacto-item strong { font-size: 0.9rem; font-weight: 600; color: #111; }
.contacto-item span { font-size: 0.8rem; color: #777; }

/* FOOTER */
.footer { background: var(--color-negro); border-top: 1px solid var(--color-borde); }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding: 2.5rem 5%; max-width: 1400px; margin: 0 auto; gap: 2rem; flex-wrap: wrap; overflow: visible; }
.footer-logo { overflow: visible; display: flex; align-items: center; }
.footer-logo img {
  height: 160px;
  width: auto;
  margin-top: -52px;
  margin-bottom: -52px;
  display: block;
}
.footer-desc { font-size: 0.82rem; color: #555; max-width: 280px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--color-borde); padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: #555; }
.footer-bottom a { color: var(--color-acento); }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #555; transition: color var(--transicion); }
.footer-social a:hover { color: var(--color-acento); }
.footer-social svg { width: 20px; height: 20px; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 800; transition: transform var(--transicion);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* RESPONSIVE */
/* ─── TABLET LANDSCAPE ───────────────────────────── */
@media (max-width: 1100px) {
  .atributos-grid { grid-template-columns: repeat(2, 1fr); }
  .flota-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-garantias { grid-template-columns: repeat(2, 1fr); }
  .empresa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .empresa-img-badge { bottom: -10px; right: 10px; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .flota-grid .flota-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .flota-grid .flota-card:last-child:nth-child(odd) .flota-card-img { aspect-ratio: 16/6; }
}

/* ─── TABLET PORTRAIT / HAMBURGER ───────────────── */
@media (max-width: 860px) {
  /* Navbar */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 1.5rem 0; gap: 0;
    border-top: 1px solid var(--color-borde);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 0.9rem 5%; font-size: 1rem; }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }

  /* Hero — reduce margin-top so content doesn't overlap garantias */
  .hero-content { margin-top: -20px; }

  /* Flota */
  .flota-header { flex-direction: column; }

  /* Contacto strip */
  .contacto-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contacto-item { border-right: none; }

  /* Footer */
  .footer-main { flex-direction: column; text-align: center; }
  .footer-desc { max-width: none; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Empresa */
  .empresa-valores { grid-template-columns: 1fr; }
}

/* ─── MOBILE ─────────────────────────────────────── */
@media (max-width: 540px) {
  /* Hero — layout vertical sin solapamientos */
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 72px; /* navbar height */
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .hero-content {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding: 0 6%;
  }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    text-align: center;
    width: 100%;
    padding: 1rem;
  }

  /* Garantías — posición relativa en móvil, no absolute */
  .hero-garantias {
    position: relative;
    bottom: auto; left: auto; right: auto;
    grid-template-columns: repeat(2, 1fr);
    background: #0f0f0f;
    border-top: 2px solid var(--color-acento);
  }
  .garantia-item {
    padding: 1.2rem 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .garantia-item:nth-child(2n) { border-right: none; }
  .garantia-item:nth-child(3),
  .garantia-item:nth-child(4) { border-bottom: none; }
  .garantia-item svg { width: 28px; height: 28px; }
  .garantia-item strong { font-size: 0.82rem; }
  .garantia-item small { font-size: 0.7rem; }

  /* Hero overlay adjust for non-100vh */
  .hero-bg { position: absolute; inset: 0; min-height: 100%; }
  .hero-overlay { position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.6) 60%,
      rgba(0,0,0,0.85) 100%);
  }

  /* Atributos strip */
  .atributos-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .atributos-strip { padding: 3rem 5%; }

  /* Flota */
  .flota-grid { grid-template-columns: 1fr; }
  .flota-section { padding: 3.5rem 4%; }

  /* Servicios */
  .servicios-grid { grid-template-columns: 1fr; }

  /* Contacto strip */
  .contacto-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contacto-strip { padding: 2.5rem 5%; }
  .contacto-item { border-right: none; }

  /* CTA section */
  .cta-section { min-height: 320px; }
  .cta-content { padding: 3rem 6%; }
  .cta-content h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* Empresa */
  .empresa-valores { grid-template-columns: 1fr; }
  .empresa-section { padding: 3rem 5%; }

  /* Page hero interior */
  .page-hero { height: 240px; padding-bottom: 2rem; }
  .page-hero-content h1 { font-size: clamp(2rem, 9vw, 3rem); }

  /* Numbers grid empresa */
  .empresa-section + section > div > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer */
  .footer-main { padding: 2rem 5%; gap: 1rem; }
  .footer-bottom { padding: 1rem 5%; }
  .footer-logo img { height: 110px; margin-top: -36px; margin-bottom: -36px; }

  /* Contacto page */
  .contacto-page { padding: 3rem 5%; }
  .contacto-page-grid { gap: 2rem; }
}
