/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --verde:       #1a3c2e;
  --verde-2:     #153226;
  --verde-light: #2a5c45;
  --dorado:      #c9973a;
  --dorado-2:    #b8862e;
  --blanco:      #ffffff;
  --gris-bg:     #f7f8f6;
  --gris-borde:  #e2e6e1;
  --gris-texto:  #5a6a5f;
  --texto:       #1a1a1a;
  --font:        'Inter', sans-serif;
  --radio:       10px;
  --radio-lg:    16px;
  --sombra-card: 0 2px 16px rgba(0,0,0,0.07);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--texto); background: var(--blanco); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }

/* ─── UTILITY ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blanco);
  border-bottom: 1px solid var(--gris-borde);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; gap: 2rem;
}
/* FIX #1: Logo x2 sin afectar padding/margin del nav */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 72px; width: auto; }

.nav-links {
  display: flex; gap: 0.15rem;
  margin: 0 auto; padding: 0;
}
.nav-links a {
  color: var(--texto); font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 6px;
  transition: color var(--transition); position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--verde); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 55%; height: 2px;
  background: var(--verde); border-radius: 2px;
}
.btn-nav-cta {
  background: var(--verde); color: var(--blanco);
  font-weight: 600; font-size: 0.88rem;
  padding: 0.6rem 1.3rem; border-radius: 8px;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--transition), transform 0.15s;
  display: flex; align-items: center; gap: 0.3rem;
}
.btn-nav-cta:hover { background: var(--verde-2); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--texto); border-radius: 2px; transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* FIX #2: Imagen posicionada más a la derecha para ver mejor el camión */
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 24, 16, 0.93) 0%,
    rgba(8, 24, 16, 0.82) 38%,
    rgba(8, 24, 16, 0.38) 62%,
    rgba(8, 24, 16, 0.05) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 3rem;
  width: 100%;
}
.hero-inner { max-width: 580px; }
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; color: var(--blanco);
  line-height: 1.08; margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; color: var(--dorado); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  margin-bottom: 2rem; line-height: 1.65; max-width: 420px;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--verde); color: var(--blanco);
  padding: 0.82rem 1.7rem; border-radius: 8px;
  font-weight: 600; font-size: 0.93rem;
  border: 2px solid var(--verde);
  transition: background var(--transition), transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.btn-hero-primary:hover { background: var(--verde-2); border-color: var(--verde-2); transform: translateY(-1px); }
.btn-hero-secondary {
  background: transparent; color: var(--blanco);
  padding: 0.82rem 1.7rem; border-radius: 8px;
  font-weight: 600; font-size: 0.93rem;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color var(--transition), transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.btn-hero-secondary:hover { border-color: var(--blanco); transform: translateY(-1px); }

/* Stats Bar */
.stats-bar {
  position: relative; z-index: 2;
  background: rgba(5, 18, 12, 0.96);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-icon { width: 26px; height: 26px; color: var(--dorado); flex-shrink: 0; }
.stat-text { display: flex; flex-direction: column; gap: 0.1rem; }
.stat-text strong { font-size: 0.92rem; font-weight: 700; color: var(--blanco); line-height: 1.2; }
.stat-text span { font-size: 0.73rem; color: rgba(255,255,255,0.48); }

/* ─── SECCIÓN HEADER REUTILIZABLE ─── */
.section-header {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 3rem; justify-content: center;
}
.section-line { flex: 1; max-width: 80px; height: 1px; background: var(--dorado); }
.section-title {
  font-size: 0.98rem; font-weight: 700; color: var(--texto);
  letter-spacing: 3px; white-space: nowrap;
}

/* ─── SERVICIOS ─── */
.servicios { padding: 5rem 2rem; background: var(--blanco); }
.servicios-container { max-width: 1200px; margin: 0 auto; }
.servicios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.servicio-card {
  background: var(--blanco); border: 1px solid var(--gris-borde);
  border-radius: var(--radio-lg); padding: 2.4rem 1.8rem;
  text-align: center; box-shadow: var(--sombra-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.servicio-card:hover { box-shadow: 0 8px 32px rgba(26,60,46,0.13); transform: translateY(-3px); }
.servicio-icon {
  width: 72px; height: 72px; background: var(--verde);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.4rem;
}
.servicio-icon svg { width: 34px; height: 34px; color: var(--blanco); }
.servicio-nombre { font-size: 1.08rem; font-weight: 700; color: var(--texto); margin-bottom: 0.7rem; line-height: 1.3; }
.servicio-desc { font-size: 0.87rem; color: var(--gris-texto); line-height: 1.65; }

/* ─── POR QUÉ ELEGIRNOS ─── */
.porque { background: var(--verde); padding: 5rem 2rem; }
.porque-container { max-width: 1200px; margin: 0 auto; }
.porque-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.porque-item { text-align: center; padding: 1rem; }
.porque-icon {
  width: 66px; height: 66px;
  background: rgba(201,151,58,0.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.4rem;
}
.porque-icon svg { width: 28px; height: 28px; color: var(--dorado); }
.porque-item h3 { font-size: 1rem; font-weight: 700; color: var(--blanco); margin-bottom: 0.75rem; }
.porque-item p { font-size: 0.86rem; color: rgba(255,255,255,0.62); line-height: 1.72; }

/* ─── EMPRESA + COBERTURA (FIX #3: más atractiva) ─── */
.empresa-cobertura { padding: 6rem 2rem; background: var(--gris-bg); }
.empresa-cobertura-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.empresa-eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 3px;
  color: var(--dorado); margin-bottom: 1rem; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.empresa-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--dorado);
}
.empresa-titulo {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--texto); line-height: 1.15; margin-bottom: 0.6rem;
}
.empresa-subtitulo {
  font-size: 0.95rem; color: var(--gris-texto); margin-bottom: 2.2rem; line-height: 1.7;
}
.empresa-bullets { display: flex; flex-direction: column; gap: 1.3rem; }
.empresa-bullets li {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--blanco); border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(26,60,46,0.06);
  border-left: 3px solid var(--verde);
  transition: box-shadow var(--transition), transform var(--transition);
}
.empresa-bullets li:hover { box-shadow: 0 4px 16px rgba(26,60,46,0.12); transform: translateX(3px); }
.bullet-icon {
  width: 36px; height: 36px; background: var(--verde);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bullet-icon svg { width: 18px; height: 18px; color: var(--blanco); }
.bullet-text strong { font-size: 0.88rem; font-weight: 700; color: var(--texto); display: block; margin-bottom: 0.15rem; }
.bullet-text span { font-size: 0.82rem; color: var(--gris-texto); line-height: 1.5; }

/* Mapa mejorado */
.cobertura-card {
  background: var(--verde); border-radius: 20px;
  padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(26,60,46,0.25);
  position: relative; overflow: hidden;
}
.cobertura-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -60px; right: -60px;
}
.cobertura-badge {
  background: rgba(255,255,255,0.1); border-radius: 12px;
  padding: 1rem 1.4rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.cobertura-badge strong { font-size: 0.82rem; font-weight: 700; letter-spacing: 3px; color: var(--blanco); display: block; margin-bottom: 0.2rem; }
.cobertura-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.mapa-wrapper { display: flex; align-items: center; gap: 1.5rem; justify-content: center; padding: 0.5rem 0; }
.mapa-svg { width: 130px; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.mapa-info { display: flex; flex-direction: column; gap: 1rem; }
.ciudad-item { display: flex; align-items: center; gap: 0.7rem; }
.ciudad-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--dorado); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.3);
}
.ciudad-item strong { font-size: 0.85rem; font-weight: 700; color: var(--blanco); display: block; }
.ciudad-item span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.mapa-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7;
  text-align: center; padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-style: italic;
}

/* ─── GALERÍA SLIDER ─── */
.galeria { padding: 5rem 0; background: var(--texto); overflow: hidden; }
.galeria-header {
  max-width: 1200px; margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.galeria-header .section-title { color: var(--blanco); }
.galeria-header .section-line { background: var(--dorado); }
.slider-wrapper { position: relative; }
.slider-track {
  display: flex; gap: 1.2rem;
  padding: 0 2rem;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.slider-track::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 calc(33.333% - 0.8rem);
  min-width: 280px;
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3;
  scroll-snap-align: start;
  position: relative;
}
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.slide:hover img { transform: scale(1.05); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.slide:hover .slide-overlay { opacity: 1; }
.slider-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem; padding: 0 2rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25); background: transparent;
  color: var(--blanco); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.slider-btn:hover { border-color: var(--dorado); background: rgba(201,151,58,0.15); color: var(--dorado); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active { background: var(--dorado); transform: scale(1.3); }

/* ─── SERVICIOS CON FOTO ─── */
.servicios-foto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.servicio-foto-card {
  border-radius: 14px; overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  box-shadow: var(--sombra-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.servicio-foto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.servicio-foto-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.servicio-foto-card:hover img { transform: scale(1.06); }
.servicio-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(10,30,20,0.75) 60%, rgba(10,30,20,0.92) 100%);
}
.servicio-foto-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.2rem;
}
.servicio-foto-label span {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  color: var(--dorado); text-transform: uppercase;
  background: rgba(201,151,58,0.15); border: 1px solid rgba(201,151,58,0.3);
  border-radius: 4px; padding: 0.2rem 0.5rem; margin-bottom: 0.5rem;
}
.servicio-foto-label h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--blanco); line-height: 1.3;
}

/* ─── CLIENTES ─── */
.clientes {
  padding: 4.5rem 2rem;
  background: var(--blanco);
  border-top: 1px solid var(--gris-borde);
  border-bottom: 1px solid var(--gris-borde);
}
.clientes-container { max-width: 1200px; margin: 0 auto; }
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.cliente-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.2rem 0.6rem; border-radius: 8px;
  transition: background var(--transition);
}
.cliente-item:hover { background: var(--gris-bg); }
.cliente-item svg { width: 28px; height: 28px; color: #c4ccc8; }
.cliente-item span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 1px;
  color: #c4ccc8; text-transform: uppercase; text-align: center;
}

.mapa-moderno {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.08);
}
.cobertura-ciudades {
  display: flex; flex-direction: column; gap: 0.9rem;
}
.cobertura-ciudad {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px; padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.cc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--dorado); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.25);
}
.cobertura-ciudad strong { font-size: 0.86rem; font-weight: 700; color: var(--blanco); display: block; margin-bottom: 0.15rem; }
.cobertura-ciudad span { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ─── FORMULARIO ─── */
.formulario { padding: 5rem 2rem; background: var(--gris-bg); }
.formulario-container { max-width: 1200px; margin: 0 auto; }
.formulario-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.formulario-texto h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800;
  color: var(--texto); line-height: 1.2; margin-bottom: 0.8rem;
}
.formulario-texto p { font-size: 0.92rem; color: var(--gris-texto); line-height: 1.7; margin-bottom: 2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  background: var(--blanco); border-radius: 10px;
  border: 1px solid var(--gris-borde);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--verde); flex-shrink: 0; }
.contact-info-item span { font-size: 0.88rem; color: var(--texto); font-weight: 500; }
.contact-info-item a { font-size: 0.88rem; color: var(--texto); font-weight: 500; transition: color var(--transition); }
.contact-info-item a:hover { color: var(--verde); }

/* Form */
.form-card {
  background: var(--blanco); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--gris-borde);
}
.form-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--texto); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--texto); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--gris-borde);
  font-family: var(--font); font-size: 0.88rem; color: var(--texto);
  background: var(--blanco);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(26,60,46,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form {
  width: 100%; padding: 0.9rem;
  background: var(--verde); color: var(--blanco);
  border: none; border-radius: 8px; font-family: var(--font);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition), transform 0.15s;
  margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-form:hover { background: var(--verde-2); transform: translateY(-1px); }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: 8px; padding: 1rem; text-align: center;
  color: #2e7d32; font-size: 0.9rem; font-weight: 600; margin-top: 1rem;
}

/* ─── CONTACTO ─── */
.contacto { position: relative; min-height: 440px; display: flex; align-items: center; }
.contacto-bg { position: absolute; inset: 0; z-index: 0; }
.contacto-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.contacto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 18, 12, 0.96) 0%,
    rgba(5, 18, 12, 0.88) 45%,
    rgba(5, 18, 12, 0.35) 100%
  );
}
.contacto-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 4rem 2rem;
}
.contacto-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--blanco); line-height: 1.15; margin-bottom: 0.5rem;
}
.contacto-sub { font-size: 0.9rem; color: var(--dorado); font-weight: 500; margin-bottom: 2rem; }
.contacto-persona { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.contacto-dato { display: flex; align-items: center; gap: 0.8rem; }
.contacto-dato svg { width: 17px; height: 17px; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.contacto-dato strong { font-size: 0.93rem; font-weight: 700; color: var(--blanco); display: block; }
.contacto-dato span, .contacto-dato > span { font-size: 0.87rem; color: rgba(255,255,255,0.68); }
.btn-contacto-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--dorado); color: var(--blanco);
  font-weight: 700; font-size: 0.93rem;
  padding: 0.88rem 1.9rem; border-radius: 8px;
  transition: background var(--transition), transform 0.15s;
}
.btn-contacto-cta:hover { background: var(--dorado-2); transform: translateY(-1px); }

/* ─── FOOTER ─── */
.footer { background: #0d2318; padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem; padding-bottom: 3rem;
}
/* FIX #5: Logo footer x2 sin afectar otros elementos */
.footer-logo { display: flex; align-items: center; margin-bottom: 0.9rem; }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.42); line-height: 1.72; margin-bottom: 1.4rem; max-width: 210px; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.42); transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--dorado); color: var(--dorado); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.45); margin-bottom: 1.2rem; text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.58rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--dorado); }
.contact-list { display: flex; flex-direction: column; gap: 0.7rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.48); line-height: 1.5; }
.contact-list svg { width: 14px; height: 14px; color: var(--dorado); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0; text-align: center;
}
.footer-bottom span { font-size: 0.77rem; color: rgba(255,255,255,0.28); }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .servicios-foto-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .clientes-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
  .slide { flex: 0 0 calc(50% - 0.6rem); }
  .formulario-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
}

@media (max-width: 768px) {
  /* ── Navbar: hamburger a la derecha, logo normal ── */
  .nav-inner {
    justify-content: space-between !important;
    padding: 0 1.2rem !important;
  }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--blanco); padding: 2rem;
    z-index: 999; gap: 0.5rem;
    border-top: 1px solid var(--gris-borde);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 0.8rem 1rem; }
  .hamburger { display: flex; margin-left: auto; }
  .btn-nav-cta { display: none !important; }

  /* ── Hero: imagen visible en mobile ── */
  .hero { min-height: 100svh; }
  .hero-bg img { object-position: 55% center; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,24,16,0.78) 0%,
      rgba(8,24,16,0.55) 45%,
      rgba(8,24,16,0.88) 100%
    ) !important;
  }
  .hero-content { padding: 2rem 1.4rem 1.5rem !important; align-items: flex-end !important; }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: 1.9rem !important; line-height: 1.1 !important; }
  .hero-sub { font-size: 0.88rem !important; }
  .hero-btns { flex-direction: column; gap: 0.7rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 0.9rem 1rem; }

  /* ── Stats ── */
  .stats-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1rem !important; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07) !important; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none !important; }

  /* ── Grids ── */
  .servicios-grid { grid-template-columns: 1fr !important; }
  .servicios-foto-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .porque-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .empresa-cobertura-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .clientes-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.2rem !important; }
  .cliente-item { padding: 0.75rem 0.3rem !important; gap: 0.35rem !important; }
  .cliente-item svg { width: 22px !important; height: 22px !important; }
  .cliente-item span { font-size: 0.58rem !important; letter-spacing: 0.5px !important; }
  .section-title { font-size: 0.7rem !important; letter-spacing: 1.5px !important; white-space: normal !important; text-align: center !important; }
  .section-header { gap: 0.6rem !important; }
  .section-line { max-width: 30px !important; }
  .contacto-content { padding: 3rem 1.5rem !important; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .form-grid { grid-template-columns: 1fr !important; }

  /* ── Slider FIX: fotos no cortadas en mobile ── */
  .slide {
    flex: 0 0 calc(85% - 0.6rem) !important;
    aspect-ratio: 16/10 !important;
  }
  .slide img { object-position: center center; }
  .galeria { padding: 3rem 0; }
  .slider-track { padding: 0 1rem; gap: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem !important; }
  .servicios-foto-grid { grid-template-columns: 1fr !important; }
  .servicio-foto-card { aspect-ratio: 16/9 !important; }
  .slide { flex: 0 0 calc(92% - 0.4rem) !important; aspect-ratio: 4/3 !important; }
}
