/* ===== VARIABLES ===== */
:root {
  --navy: #29abe2;
  --navy-2: #1c96cf;
  --blue: #29abe2;
  --blue-dark: #1c8fc0;
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --whatsapp: #25d366;
  --ink: #1a1a1a;
  --gray: #5b6472;
  --light: #f4f6fa;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-sm: 0 4px 14px rgba(11, 37, 69, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-title, .hero-title, .fleet-body h3, .fleet-show-text h3, .contact-h, .page-banner h1, .call-now h3 {
  font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: .5px;
}
h4, .logo-text, .btn, .section-tag, .nav-cta, .main-nav a, .policy-link, .hero-kicker { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 50px; font-weight: 700;
  font-family: 'Poppins', sans-serif; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; transition: .25s;
  letter-spacing: .2px;
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(11,37,69,.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 60px; width: auto; max-width: 200px; display: block; border-radius: 8px; object-fit: contain; }
.site-footer .logo-img { height: 66px; }
@media (max-width: 700px) { .logo-img { height: 48px; } }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--gold-light); font-family: 'Poppins'; font-weight: 900;
  display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.logo-text { font-weight: 700; font-size: 1.05rem; letter-spacing: .5px; color: var(--navy); line-height: 1.1; }
.logo-text strong { color: var(--gold); }
.logo--light .logo-text { color: #fff; }
.logo--light .logo-text strong { color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 15px; font-family: 'Poppins'; font-weight: 600;
  font-size: .92rem; color: var(--navy-2); border-radius: 8px; transition: .2s;
}
.main-nav a:hover { color: var(--blue); background: var(--light); }
.main-nav .nav-cta { background: var(--navy); color: #fff; }
.main-nav .nav-cta:hover { background: var(--blue); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
/* Fondo con zoom Ken Burns (solo la imagen) */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; transform: scale(1.12);
}
.hero-slide.is-active .hero-bg { animation: kenburns 7s ease forwards; }
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
/* Overlay sutil por slide */
.hero-slide::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(15,35,55,.42), rgba(15,35,55,.30));
}
/* Texto de cada slide con animación de entrada */
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 60px 22px; text-align: center; }
.hero-slide.is-active .hero-content > * { animation: heroFade .9s ease both; }
.hero-slide.is-active .hero-kicker { animation-delay: .1s; }
.hero-slide.is-active .hero-title { animation-delay: .25s; }
.hero-slide.is-active .hero-tagline { animation-delay: .4s; }
.hero-slide.is-active .hero-sub { animation-delay: .5s; }
.hero-slide.is-active .hero-actions { animation-delay: .65s; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Flechas y dots del slider */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; line-height: 1;
  backdrop-filter: blur(4px); transition: .25s; display: grid; place-items: center;
}
.hero-arrow:hover { background: var(--gold); color: var(--navy); }
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 12px; }
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent;
  cursor: pointer; padding: 0; transition: .25s;
}
.hero-dot.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }
.hero-kicker {
  font-family: 'Poppins'; font-weight: 700; letter-spacing: 4px;
  color: var(--gold-light); font-size: .85rem; margin-bottom: 14px;
}
.hero-title { font-size: clamp(2.5rem, 6.2vw, 4.6rem); font-weight: 800; line-height: 1.06; letter-spacing: 1px; text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.hero-tagline { font-size: clamp(1.25rem, 3vw, 1.9rem); font-weight: 500; font-style: italic; margin-top: 14px; color: var(--gold-light); font-family: 'Poppins', sans-serif; }
.hero-sub { font-size: 1.05rem; opacity: .9; margin-top: 8px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ===== INTRO ===== */
.intro { background: var(--navy); color: #fff; padding: 30px 0; text-align: center; }
.intro-text { font-size: 1.15rem; max-width: 800px; margin: 0 auto; font-weight: 300; }
.intro-text strong { color: var(--gold-light); }

/* ===== SECTIONS ===== */
.section { padding: 82px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-tag {
  display: inline-block; font-family: 'Poppins'; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem;
  color: var(--blue); background: #e8f0ff; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 700; line-height: 1.15; color: var(--navy); }
.section-desc { color: var(--gray); margin-top: 12px; font-size: 1.05rem; }

/* ===== BLOG ===== */
.blog { background: var(--light); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: .35s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-image {
  height: 200px; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.blog-card:hover .blog-image { transform: scale(1.08); }
.blog-content { padding: 26px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; font-size: .7rem;
  color: #fff; background: var(--blue); padding: 5px 14px; border-radius: 50px;
  margin-bottom: 12px; width: fit-content;
}
.blog-card h3 {
  font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.blog-content p { color: var(--gray); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.blog-link {
  font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--blue);
  letter-spacing: .5px; transition: .2s;
}
.blog-link:hover { color: var(--blue-dark); transform: translateX(4px); display: inline-block; }

/* ===== ANIMACIONES DE APARICIÓN ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade:nth-child(1) { animation-delay: 0.1s; }
.animate-fade:nth-child(2) { animation-delay: 0.2s; }
.animate-fade:nth-child(3) { animation-delay: 0.3s; }
.animate-fade:nth-child(4) { animation-delay: 0.4s; }
.animate-fade:nth-child(5) { animation-delay: 0.5s; }
.animate-fade:nth-child(6) { animation-delay: 0.6s; }
.animate-fade:nth-child(7) { animation-delay: 0.7s; }
.animate-fade:nth-child(8) { animation-delay: 0.8s; }

.section-head {
  animation: fadeInUp 0.8s ease-out;
}

.article {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== SERVICIOS ===== */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: .3s; border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
/* Servicios - sin iconos ahora */
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: .92rem; }
.service-seo { font-size: .85rem; color: #7a8496; margin-top: 10px; line-height: 1.5; font-weight: 400; }

/* ===== FLOTA ===== */
.fleet { position: relative; overflow: hidden; }
/* Círculos decorativos de fondo */
.fleet::before {
  content: ""; position: absolute; top: -120px; left: -120px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, #eef3fb 0%, transparent 70%); z-index: 0;
}
.fleet::after {
  content: ""; position: absolute; bottom: -140px; right: -100px; width: 440px; height: 440px;
  border-radius: 50%; background: radial-gradient(circle, #eef3fb 0%, transparent 70%); z-index: 0;
}
.fleet .container { position: relative; z-index: 1; }

/* Showcase por vehículo */
.fleet-show {
  display: grid; grid-template-columns: 1fr 1.15fr; align-items: center;
  gap: 40px; margin-bottom: 40px;
}
.fleet-show--reverse .fleet-show-text { order: 2; }
.fleet-show--reverse .fleet-show-img { order: 1; }
.fleet-show-text h3 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 14px; }
.fleet-show-text p { color: var(--gray); font-size: 1.08rem; max-width: 420px; margin-bottom: 24px; }
.fleet-show--reverse .fleet-show-text p { margin-left: auto; }
.fleet-show--reverse .fleet-show-text { text-align: right; }
.fleet-show-img img {
  width: 100%; border-radius: 16px; box-shadow: 0 24px 50px rgba(11,37,69,.28);
  transition: transform .5s ease;
}
.fleet-show-img img:hover { transform: translateY(-8px) scale(1.02); }

/* Botón naranja (estilo original) */
.btn-orange { background: #ea6a1e; color: #fff; }
.btn-orange:hover { background: #d15a12; transform: translateY(-2px); }

/* Garantías */
.fleet-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin-top: 60px; padding-top: 50px; border-top: 1px solid #e6ebf3;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2.1rem;
  background: linear-gradient(135deg, #fff0e6, #fff7f1);
  box-shadow: 0 8px 20px rgba(234,106,30,.15);
}
.trust-item p { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); font-size: 1.08rem; max-width: 240px; margin: 0 auto; }

/* ===== POLÍTICAS ===== */
.policies { background: var(--light); }
.policies-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.policy-card {
  background: #fff; border-radius: var(--radius); padding: 34px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: .3s; display: block;
}
.policy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.policy-img {
  width: 100%; height: 150px; margin-bottom: 16px; border-radius: 10px; overflow: hidden;
  background: var(--light);
}
.policy-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.policy-card:hover .policy-img img { transform: scale(1.07); }
.policy-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.policy-link {
  display: inline-block; font-family: 'Poppins'; font-weight: 700; font-size: .8rem;
  letter-spacing: 1px; color: var(--blue); border: 2px solid var(--blue);
  padding: 7px 18px; border-radius: 50px; transition: .2s;
}
.policy-card:hover .policy-link { background: var(--blue); color: #fff; }

/* ===== CLIENTES ===== */
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.client-logo {
  height: 110px; display: grid; place-items: center; background: #fff;
  border: 1px solid #e8ecf3; border-radius: 12px; padding: 16px;
  transition: .3s; box-shadow: var(--shadow-sm);
}
.client-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(1); opacity: .8; transition: .3s;
}
.client-logo:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ===== PAGE BANNER (subpáginas) ===== */
.page-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff; text-align: center; padding: 66px 0 58px;
}
.page-banner h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: .5px; }
.page-banner p { margin-top: 10px; font-family: 'Poppins', sans-serif; font-size: .95rem; letter-spacing: .5px; color: rgba(255,255,255,.85); }
.page-banner p a { color: var(--gold-light); }
.page-banner p a:hover { text-decoration: underline; }
.page-banner p span { margin: 0 8px; opacity: .6; }

/* ===== ARTÍCULO DETALLE ===== */
.article-detail { background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%); padding: 60px 0; }
.article-content { max-width: 920px; margin: 0 auto; }

.blog-article {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 37, 69, 0.1);
  padding: 60px 50px;
  text-align: justify;
}

/* Meta información */
.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f0f4f8;
  justify-content: center;
  flex-wrap: wrap;
}

.tag, .article-category {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: .75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(41, 171, 226, 0.25);
  transition: all .3s ease;
}

.tag:hover, .article-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 171, 226, 0.35);
}

.date, .article-date, .reading-time {
  color: var(--gray);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .3px;
}

/* Títulos */
.blog-article h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 24px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: .5px;
}

.blog-article h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.blog-article h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 18px;
  line-height: 1.3;
  position: relative;
  padding-left: 12px;
}

.blog-article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--blue), var(--gold));
  border-radius: 2px;
}

.blog-article h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 24px 0 12px;
  letter-spacing: .3px;
}

/* Párrafos */
.blog-article p {
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: .3px;
}

.blog-article p strong {
  color: var(--navy);
  font-weight: 700;
}

/* Listas */
.blog-article ul {
  margin: 24px 0 28px 40px;
  list-style: none;
}

.blog-article ul li {
  margin-bottom: 14px;
  line-height: 1.8;
  position: relative;
  padding-left: 24px;
  font-size: 1.02rem;
}

.blog-article ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.blog-article ol {
  margin: 24px 0 28px 40px;
  list-style: decimal;
}

.blog-article ol li {
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 1.02rem;
  padding-left: 8px;
}

/* Definiciones (FAQ) */
.blog-article dl {
  margin: 32px 0;
  background: #f8fafc;
  padding: 28px 32px;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
}

.blog-article dt {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  margin: 18px 0 10px;
  cursor: pointer;
  transition: all .3s ease;
}

.blog-article dt:hover {
  color: var(--blue);
  text-decoration: underline;
}

.blog-article dd {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 20px;
  font-size: 1rem;
}

/* CTA Principal */
.article-cta {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f5fc 100%);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 40px 36px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.15);
}

.article-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 14px;
  margin-top: 0;
  padding: 0;
  position: relative;
}

.article-cta h3::before {
  display: none;
}

.article-cta p {
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--gray);
  font-size: 1.05rem;
}

.article-cta .btn {
  margin: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(41, 171, 226, 0.25);
  transition: all .3s ease;
}

.article-cta .btn:hover {
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-article {
    padding: 40px 28px;
  }

  .blog-article h2 {
    font-size: 1.8rem;
  }

  .blog-article h3 {
    font-size: 1.2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 12px;
  }

  .article-cta {
    padding: 30px 24px;
  }

  .article-cta h3 {
    font-size: 1.4rem;
  }
}

/* ===== CONTACTO ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-h {
  font-family: 'Oswald', sans-serif; text-align: center; color: var(--blue);
  font-size: 1.9rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 28px;
}

/* Formulario */
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px 16px; margin-bottom: 16px; border: none;
  background: #eef0f2; border-radius: 4px; font-family: inherit; font-size: .95rem;
  transition: .2s; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; background: #e6f5fc; box-shadow: 0 0 0 2px var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row input { width: 100%; }
.privacy-text { color: var(--gray); font-size: .92rem; margin: 6px 0 14px; }
.privacy-check { display: flex; align-items: center; gap: 10px; color: var(--gray); font-size: .92rem; margin-bottom: 22px; }
.privacy-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.contact-form .btn-primary { padding: 13px 40px; border-radius: 4px; font-weight: 600; }

/* Detalle */
.contact-detail h4 { color: var(--navy); font-size: 1.05rem; margin: 22px 0 8px; }
.detail-list { list-style: none; }
.detail-list li { position: relative; padding-left: 20px; margin-bottom: 6px; color: var(--gray); font-size: .95rem; line-height: 1.5; }
.detail-list li::before { content: "•"; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }
.detail-list a { color: var(--gold-dark, #b8860b); }
.detail-list a:hover { color: var(--blue); text-decoration: underline; }

/* Caja amarilla ¡Contactar ahora! */
.call-now {
  margin-top: 30px; background: #f2e600; text-align: center; padding: 30px 26px;
  border: 2px dashed #cbbf00; border-radius: 4px;
}
.call-now h3 { color: var(--blue); font-size: 1.5rem; margin-bottom: 12px; letter-spacing: .5px; }
.call-now p { color: #3a3a1a; font-size: .95rem; margin-bottom: 20px; }
.btn-call {
  display: inline-block; background: var(--blue); color: #fff; font-family: 'Poppins', sans-serif;
  font-weight: 700; letter-spacing: 1px; padding: 13px 42px; border-radius: 4px; transition: .25s;
}
.btn-call:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.9); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { margin-top: 16px; font-size: .93rem; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; margin-bottom: 9px; font-size: .93rem; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--gold-light); }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff; font-family: 'Poppins'; font-weight: 700; transition: .2s;
}
.social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: .85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .services-grid, .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-show, .fleet-show--reverse { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .fleet-show--reverse .fleet-show-text { order: 1; text-align: center; }
  .fleet-show--reverse .fleet-show-img { order: 2; }
  .fleet-show-text p, .fleet-show--reverse .fleet-show-text p { margin-left: auto; margin-right: auto; }
  .fleet-trust { grid-template-columns: 1fr; gap: 34px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .main-nav {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 14px 22px; gap: 4px; box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; }
  .nav-toggle { display: flex; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 460px) {
  .services-grid, .policies-grid, .clients-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
