/* =============================================
   TRANS RYA SPA — Estilos Globales
   ============================================= */

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

:root {
  --azul:     #0d1f3c;
  --azul-med: #1a2b4a;
  --rojo:     #d42b2b;
  --rojo-viv: #e63225;
  --naranja:  #e8851a;
  --blanco:   #ffffff;
  --gris-claro: #f4f4f4;
  --gris-texto: #555;
  --sombra: 0 4px 24px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  border-bottom: 2px solid var(--rojo);
  transition: background 0.3s;
}

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

.navbar-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  color: #ccd6f0;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rojo-viv);
  transition: width 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active { color: #fff; }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rojo-viv);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.navbar-cta:hover { background: #b81f1f; transform: translateY(-1px); }
.navbar-cta svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  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); }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,35,0.88) 45%, rgba(10,18,35,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 60px 80px;
  animation: fadeUp 1s ease 0.3s both;
}

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

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rojo-viv);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--rojo-viv);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--rojo-viv);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #b0c0dc;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rojo-viv);
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(230,50,37,0.4);
}

.btn-primary:hover {
  background: #b81f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,50,37,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #b0c0dc;
}

.hero-badge svg {
  color: var(--rojo-viv);
  flex-shrink: 0;
}

.hero-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

/* ── SECCIÓN GENÉRICA ──────────────────────── */
.section { padding: 90px 40px; }
.section-dark { background: var(--azul); color: #fff; }
.section-grey { background: var(--gris-claro); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rojo-viv);
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-divider {
  width: 50px; height: 3px;
  background: var(--rojo-viv);
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* ── SERVICIOS ────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid transparent;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
  border-top-color: var(--rojo-viv);
}

.servicio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 12px;
  color: var(--azul);
}

.servicio-icon svg { width: 52px; height: 52px; }

.servicio-nombre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--azul);
  padding: 0 16px 16px;
  line-height: 1.3;
}

.servicio-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ── FLOTA ────────────────────────────────── */
.flota-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 50px;
}

.flota-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #a0b4d0;
  transition: color 0.2s;
  cursor: default;
}

.flota-icon-item:hover { color: #fff; }

.flota-icon-item svg { width: 56px; height: 56px; }

.flota-icon-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.flota-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.flota-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.flota-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flota-photo:hover img { transform: scale(1.08); }

.flota-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,18,35,0.85));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 24px 10px 12px;
}

/* ── POR QUÉ ELEGIRNOS ────────────────────── */
.razones-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.razon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 160px;
  text-align: center;
}

.razon-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(230,50,37,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rojo-viv);
  transition: border-color 0.2s, background 0.2s;
}

.razon-item:hover .razon-icon {
  border-color: var(--rojo-viv);
  background: rgba(230,50,37,0.08);
}

.razon-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul);
  line-height: 1.3;
}

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/cta-fondo.webp');
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,18,35,0.93) 50%, rgba(10,18,35,0.7) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.cta-content h2 em {
  font-style: normal;
  color: var(--rojo-viv);
}

.cta-content p {
  color: #a0b4d0;
  font-size: 1rem;
  margin-bottom: 28px;
}

.cta-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-logo img {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* ── CLIENTES ────────────────────────────── */
.clientes-strip {
  background: var(--azul-med);
  padding: 32px 40px;
  overflow: hidden;
}

.clientes-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollClientes 30s linear infinite;
  width: max-content;
}

@keyframes scrollClientes {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cliente-nombre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  transition: color 0.2s;
}

.cliente-nombre:hover { color: rgba(255,255,255,0.9); }

.cliente-sep {
  color: var(--rojo-viv);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: #080f1e;
  color: #8899bb;
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6a7d9e;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #1e2e4a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7d9e;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--rojo-viv);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: #6a7d9e;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: #6a7d9e;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--rojo-viv);
  margin-top: 2px;
}

.footer-contact-item a {
  color: #6a7d9e;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #111d30;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #3a4d6a;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── WHATSAPP FLOAT ───────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

/* ── PÁGINAS INTERNAS (hero pequeño) ─────── */
.page-hero {
  background: var(--azul);
  padding: 140px 60px 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero.webp') center/cover no-repeat;
  opacity: 0.12;
}

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

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--rojo-viv);
}

.page-hero p {
  color: #8899bb;
  font-size: 1rem;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #4a5f80;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a { color: #4a5f80; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--rojo-viv); }

/* ── NOSOTROS ────────────────────────────── */
.nosotros-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nosotros-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--azul);
  line-height: 1.05;
  margin-bottom: 20px;
}

.nosotros-text h2 em {
  font-style: normal;
  color: var(--rojo-viv);
}

.nosotros-text p {
  color: var(--gris-texto);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.nosotros-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.nosotros-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.cliente-chip {
  background: #fff;
  border: 1px solid #dde5f0;
  border-radius: 4px;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul);
  transition: border-color 0.2s, background 0.2s;
}

.cliente-chip:hover {
  border-color: var(--rojo-viv);
  background: rgba(230,50,37,0.04);
}

/* ── SERVICIOS PÁGINA ────────────────────── */
.servicios-detalle {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.servicio-detalle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.servicio-detalle.reverse { direction: rtl; }
.servicio-detalle.reverse > * { direction: ltr; }

.servicio-detalle-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.servicio-detalle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
  transition: transform 0.4s ease;
}

.servicio-detalle-img:hover img { transform: scale(1.04); }

.servicio-detalle-text .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rojo-viv);
  display: block;
  margin-bottom: 10px;
}

.servicio-detalle-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--azul);
  line-height: 1.05;
  margin-bottom: 16px;
}

.servicio-detalle-text p {
  color: var(--gris-texto);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── CONTACTO ────────────────────────────── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contacto-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 8px;
}

.contacto-info p {
  color: var(--gris-texto);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(230,50,37,0.08);
  border: 1px solid rgba(230,50,37,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rojo-viv);
  flex-shrink: 0;
}

.info-item-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 4px;
}

.info-item-text a,
.info-item-text span {
  color: var(--gris-texto);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.info-item-text a:hover { color: var(--rojo-viv); }

.contacto-form {
  background: #fff;
  border-radius: 10px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.contacto-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde5f0;
  border-radius: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: #222;
  background: #fafbfd;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rojo-viv);
  box-shadow: 0 0 0 3px rgba(230,50,37,0.1);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .servicios-grid { grid-template-columns: repeat(3, 1fr); }
  .flota-photos { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .navbar-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--azul);
    padding: 24px 40px;
    gap: 20px;
    border-bottom: 2px solid var(--rojo);
  }

  .navbar-links.mobile-open ~ .navbar-cta {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 100px;
    right: 28px;
    flex-direction: column;
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .hero-content { padding: 110px 28px 60px; }
  .hero h1 { font-size: 3rem; }

  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .flota-photos { grid-template-columns: repeat(2, 1fr); }
  .flota-icons { gap: 28px; }

  .cta-banner { flex-direction: column; padding: 60px 28px; }
  .cta-logo img { height: 120px; }

  .razones-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }
  .razon-item {
    width: calc(50% - 24px);
    min-width: 110px;
  }

  .nosotros-intro { grid-template-columns: 1fr; gap: 40px; }
  .servicio-detalle { grid-template-columns: 1fr; }
  .servicio-detalle.reverse { direction: ltr; }

  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-form { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 50px; }
}

@media (max-width: 540px) {
  /* Servicios: última card sola ocupa ancho completo */
  .servicios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .servicios-grid .servicio-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }

  /* Flota íconos: flex centrado para que 5 íconos queden 3+2 */
  .flota-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 16px;
  }
  .flota-icon-item {
    width: calc(33.333% - 16px);
    min-width: 72px;
  }

  /* Flota fotos: última foto ocupa ancho completo si queda sola */
  .flota-photos {
    grid-template-columns: 1fr 1fr;
  }
  .flota-photo:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* CTA móvil — ocultar logo, solo mostrar texto y botón */
  .cta-banner {
    padding: 48px 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .cta-content { max-width: 100%; }
  .cta-logo { display: none; }

  .footer-logo img { height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 20px; }
}
