/* ============================================================
   VILLA TRAVEL — Global Stylesheet
   Servicios para la Minería
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --gold:       #F0A500;
  --gold-light: #FFB800;
  --dark:       #111214;
  --dark-2:     #1A1C20;
  --dark-3:     #242629;
  --mid:        #2E3035;
  --white:      #F4F2EE;
  --gray:       #8A8D94;
  --gray-light: #C0C3CC;
  --wa-green:   #25D366;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Barlow', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(17,18,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,165,0,0.15);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(17,18,20,0.99); }

.nav-logo img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(17,18,20,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 32px 32px;
  flex-direction: column; gap: 20px;
  border-bottom: 1px solid rgba(240,165,0,0.15);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 14px 24px; border-radius: 3px;
  text-align: center; font-weight: 700 !important;
  border: none; margin-top: 8px;
}

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa-green); color: #fff;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: #1EBE59; transform: translateY(-2px); }

/* WhatsApp flotante */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── COMUNES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
section    { padding: 96px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-label.center::after  {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-h2 em { font-style: normal; color: var(--gold); }
.section-h2.center { text-align: center; }

.divider-gold {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── PAGE BANNER (páginas internas) ── */
.page-banner {
  padding-top: 72px; height: 340px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 8s ease-out both;
}
.page-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,18,20,0.93) 50%, rgba(17,18,20,0.55) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 76px);
  text-transform: uppercase; line-height: 0.92;
}
.page-banner-content h1 em { font-style: normal; color: var(--gold); }

/* ── HERO (index) ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center / cover no-repeat;
  animation: heroZoom 8s ease-out both;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,18,20,0.96) 42%, rgba(17,18,20,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 72px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero h1 em { font-style: normal; color: var(--gold); display: block; }

.hero-sub {
  max-width: 480px; font-size: 16px; line-height: 1.65;
  color: var(--gray-light); margin-bottom: 44px; font-weight: 300;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s both;
}

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,28,32,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(240,165,0,0.2);
  display: flex;
  animation: fadeUp 0.8s 0.8s both;
}
.hero-stat {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: 4px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px; color: var(--gray);
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; font-weight: 500;
}

/* ── SECCIÓN SERVICIOS CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--dark-2);
  transition: background 0.3s;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  height: 220px; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.85);
}
.service-card:hover .service-card-img img { transform: scale(1.06); filter: brightness(1); }

.service-card-body { padding: 28px 28px 32px; }
.service-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 900;
  color: rgba(240,165,0,0.1); line-height: 1;
  margin-bottom: -4px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 300; }
.service-card ul {
  margin-top: 14px; display: flex; flex-direction: column; gap: 7px;
}
.service-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-light);
}
.service-card ul li::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── DIFF / SECURITY ITEMS ── */
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.diff-items {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.diff-item {
  background: var(--dark-3); padding: 24px 20px;
  border-radius: 4px; border-top: 2px solid var(--gold);
}
.diff-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.diff-item p { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; }

.diff-photo { position: relative; height: 560px; border-radius: 4px; overflow: hidden; }
.diff-photo img { width: 100%; height: 100%; object-fit: cover; }
.diff-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,18,20,0.75) 100%);
}
.diff-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 2;
  background: rgba(17,18,20,0.9); backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.diff-badge strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: block; margin-bottom: 4px;
}
.diff-badge span { font-size: 13px; color: var(--gray); }

/* ── FLEET GRID ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px; margin-top: 56px;
}
.fleet-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.fleet-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s; filter: brightness(0.75);
}
.fleet-card:hover img { transform: scale(1.07); filter: brightness(1); }
.fleet-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(17,18,20,0.9) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px;
  opacity: 0; transition: opacity 0.3s;
}
.fleet-card:hover .fleet-overlay { opacity: 1; }
.fleet-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.fleet-card.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ── CLIENTS ── */
.clients-section-inner {
  text-align: center;
  padding: 80px 0 60px;
  background: var(--dark-2);
  position: relative;
}
.clients-section-inner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.clients-row {
  display: flex; justify-content: center;
  align-items: center; gap: 32px; flex-wrap: wrap;
  margin-top: 48px; padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.client-logo {
  opacity: 0.55; transition: opacity 0.3s, transform 0.3s;
  filter: grayscale(100%) brightness(1.4);
}
.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}
.client-logo img {
  height: 52px; width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}
.clients-note {
  margin-top: 40px;
  font-size: 13px; color: var(--gray);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('../img/cta-fondo.jpg') center / cover no-repeat;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(17,18,20,0.88);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 54px);
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 16px;
}
.cta-text h2 em { font-style: normal; color: var(--gold); }
.cta-text p { color: var(--gray-light); font-size: 16px; font-weight: 300; max-width: 440px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ── CONTACT FORM ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info-card {
  background: var(--dark-2); border-radius: 4px;
  padding: 32px 28px; border-top: 2px solid var(--gold);
  margin-bottom: 20px;
}
.contact-info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 16px;
}
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: 14px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail .txt { display: flex; flex-direction: column; gap: 2px; }
.contact-detail .txt span { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact-detail .txt a,
.contact-detail .txt p { font-size: 15px; color: var(--white); transition: color 0.2s; }
.contact-detail .txt a:hover { color: var(--gold); }

.form-wrap {
  background: var(--dark-2); border-radius: 4px; padding: 48px 40px;
}
.form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.form-wrap > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; font-weight: 300; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); padding: 14px 16px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238A8D94'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 10px; }
.btn-full { width: 100%; justify-content: center; margin-top: 4px; }

/* ── NOSOTROS ── */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-intro-img { border-radius: 4px; overflow: hidden; height: 520px; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.nos-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.nos-pillar {
  background: var(--dark-3); padding: 44px 36px;
}
.nos-pillar-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.nos-pillar-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.nos-pillar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.nos-pillar p { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 300; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.value-card {
  background: var(--dark-2); padding: 36px 28px;
  border-radius: 4px; border-bottom: 2px solid var(--gold);
}
.value-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--gold); margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 300; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px; margin-top: 48px;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

.big-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.big-stat {
  background: var(--dark-2); padding: 52px 32px; text-align: center;
}
.big-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 64px; color: var(--gold);
  line-height: 1; margin-bottom: 10px;
}
.big-stat .lbl {
  font-size: 13px; color: var(--gray);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}

/* ── SECURITY ITEMS ── */
.security-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.security-img {
  border-radius: 4px; overflow: hidden; height: 620px;
  position: sticky; top: 96px;
}
.security-img img { width: 100%; height: 100%; object-fit: cover; }
.sec-items { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.sec-item {
  background: var(--dark-2); padding: 24px 28px;
  border-radius: 4px; border-left: 3px solid var(--gold);
}
.sec-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sec-item p { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ── FLEET TYPES ── */
.fleet-types-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.fleet-type {
  background: var(--dark-2); border-radius: 4px; overflow: hidden;
}
.fleet-type-img { height: 220px; overflow: hidden; }
.fleet-type-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.fleet-type:hover .fleet-type-img img { transform: scale(1.06); }
.fleet-type-body { padding: 28px 24px; }
.fleet-tag {
  display: inline-block;
  background: rgba(240,165,0,0.12); color: var(--gold);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 12px;
}
.fleet-type h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.fleet-type p { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  height: 320px; background: var(--dark-2);
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.map-placeholder p { color: var(--gray); font-size: 14px; text-align: center; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #0C0D0F;
  border-top: 1px solid rgba(240,165,0,0.12);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 44px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 240px; }
.footer-brand .footer-dev {
  margin-top: 20px; font-size: 11px; color: var(--gray); opacity: 0.6;
}
.footer-brand .footer-dev a { color: var(--gold); opacity: 1; }
.footer-brand .footer-dev a:hover { text-decoration: underline; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--gray); font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }

.footer-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-ci:last-child { margin-bottom: 0; }
.footer-ci svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-ci span,
.footer-ci a { font-size: 13px; color: var(--gray); line-height: 1.5; transition: color 0.2s; }
.footer-ci a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--gray); }
.gold-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.4; }

/* ── ANIMACIONES ── */
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .fleet-grid          { grid-template-columns: 1fr 1fr; }
  .fleet-card.featured { grid-column: span 2; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .diff-grid, .about-intro-grid, .contact-wrap,
  .security-grid, .services-header-grid { grid-template-columns: 1fr; }
  .diff-photo, .security-img, .about-intro-img { height: 300px; position: static; }
  .nos-pillars-grid { grid-template-columns: 1fr; }
  .fleet-types-grid { grid-template-columns: 1fr 1fr; }
  .big-stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.big { grid-column: span 2; }
  .hero-stats { display: none; }
  .cta-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-wa,
  .cta-actions .btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .fleet-card.featured { grid-column: auto; }
  .fleet-types-grid    { grid-template-columns: 1fr; }
  .big-stats-grid      { grid-template-columns: 1fr 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
}
