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

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --bg-4:      #222222;
  --border:    #2a2a2a;
  --text:      #f0f0f0;
  --text-muted:#9a9a9a;
  --accent:    #d4a017;
  --accent-2:  #f0c040;
  --white:     #ffffff;
  --font:      'Inter', system-ui, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 560px;
}

.section-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin: 0.75rem auto 0;
}

.accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-lg { font-size: 1rem; padding: 0.85rem 1.8rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(212,160,23,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,160,23,0.04) 0%, transparent 60%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== EMPRESA ===== */
.section-empresa { background: var(--bg-2); }

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.empresa-visual { display: flex; flex-direction: column; gap: 1.5rem; }

.empresa-card-main {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.empresa-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.empresa-icon-wrap {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.empresa-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.empresa-card-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
}

.empresa-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.badge-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition);
}
.badge-item svg { color: var(--accent); }
.badge-item:hover {
  border-color: rgba(212,160,23,0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.empresa-info {}
.empresa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.empresa-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.empresa-list svg { color: var(--accent); flex-shrink: 0; }

/* ===== SERVICIOS ===== */
.section-servicios { background: var(--bg); }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.servicio-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.servicio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.servicio-card:hover::after { transform: scaleX(1); }
.servicio-card:hover {
  border-color: rgba(212,160,23,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.servicio-featured {
  background: linear-gradient(145deg, #1a1508, #181818);
  border-color: rgba(212,160,23,0.3);
}
.servicio-featured::after { transform: scaleX(1); }

.servicio-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 56px; height: 56px;
  background: rgba(212,160,23,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.servicio-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.servicio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.servicio-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.featured-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #0a0a0a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ===== NÚMEROS STRIP ===== */
.numeros-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.numeros-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.numero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 120px;
}

.numero-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.numero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
}

.numero-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .numero-sep { display: none; }
  .numeros-inner { justify-content: center; }
  .numero-item { min-width: 100px; }
}

/* ===== BOTÓN FLOTANTE ===== */
.fab-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 6px 28px rgba(212,160,23,0.4);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.fab-call:hover {
  background: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212,160,23,0.5);
}

.fab-call svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .fab-call { padding: 0.85rem; border-radius: 50%; }
  .fab-label { display: none; }
}

/* ===== CLIENTES ===== */
.section-clientes { background: var(--bg); }

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cliente-card {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.cliente-card:hover { background: var(--bg-3); }
.cliente-card img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.55;
  transition: all var(--transition);
}
.cliente-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.cliente-nombre {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.cliente-card:hover .cliente-nombre { color: var(--white); }

@media (max-width: 768px) {
  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .cliente-card { padding: 1.5rem; }
}

/* ===== FLOTA ===== */
.section-flota { background: var(--bg-2); }

.flota-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.flota-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.flota-card:hover {
  border-color: rgba(212,160,23,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.flota-featured {
  border-color: rgba(212,160,23,0.3);
  background: linear-gradient(160deg, #1a1508, #181818);
  position: relative;
}
.flota-featured::before {
  content: 'Más solicitado';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.flota-icon {
  color: var(--accent);
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.flota-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.flota-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.flota-specs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.flota-specs span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-4);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.flota-specs strong { color: var(--accent); }

/* ===== CTA CONVENIOS ===== */
.section-cta {
  background: var(--bg);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cta-feat svg { color: var(--accent); flex-shrink: 0; }

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-visual { display: flex; flex-direction: column; gap: 1rem; }

.cta-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cta-card-small { padding: 1.5rem; display: flex; gap: 1rem; align-items: center; }
.cta-card-small .cta-card-icon { flex-shrink: 0; }
.cta-card-icon { color: var(--accent); margin-bottom: 1rem; }
.cta-card-small .cta-card-icon { margin-bottom: 0; }
.cta-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.cta-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTACTO ===== */
.section-contacto { background: var(--bg-2); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contacto-info { display: flex; flex-direction: column; gap: 2rem; padding-top: 0.5rem; }

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contacto-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contacto-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contacto-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
a.contacto-value:hover { color: var(--accent); }

.contacto-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}

.contacto-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto-acciones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contacto-mapa-grande {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(1) brightness(0.7);
  transition: filter var(--transition);
}
.contacto-mapa-grande:hover {
  filter: grayscale(0) brightness(1);
}
.contacto-mapa-grande iframe { display: block; }

@media (max-width: 768px) {
  .contacto-grid-new { grid-template-columns: 1fr; }
  .contacto-mapa-grande iframe { min-height: 280px !important; }
}

.contacto-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
  filter: grayscale(1) invert(0.9) brightness(0.75);
  transition: filter var(--transition);
}
.contacto-mapa:hover {
  filter: grayscale(0) invert(0) brightness(1);
}

/* ===== FORM ===== */
.contacto-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-img { height: 44px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a, .footer-contact a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-horario { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

.footer-bottom { padding: 1.5rem 0; }
.footer-dast {
  color: var(--accent);
  transition: color var(--transition);
}
.footer-dast:hover { color: var(--accent-2); }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .empresa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-visual { flex-direction: row; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
  }

  .flota-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-visual { flex-direction: column; }
  .cta-features { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .empresa-badge-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
