*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #333; line-height: 1.6; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #0B3D5C; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: #0B3D5C; color: #fff; }
.btn-primary:hover { background: #082E47; }
.btn-primary::after { content: '→'; color: #7CB342; font-size: 1.1rem; }
.btn-outline { background: transparent; color: #0B3D5C; border: 1.5px solid #0B3D5C; }
.btn-outline:hover { background: #0B3D5C; color: #fff; }
.btn-outline::after { content: '→'; color: #0B3D5C; font-size: 1.1rem; }
.btn-outline:hover::after { color: #fff; }
.btn-green { background: #7CB342; color: #fff; }
.btn-green:hover { background: #689936; }

/* ── TOP BAR ───────────────────────────────────── */
.topbar {
  background: #295781; color: #fff; font-size: 0.8rem;
  padding: 0.4rem 0; text-align: right;
}
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; justify-content: center;
  padding: 0.5rem 1.5rem;
}
.nav-track {
  display: flex; align-items: center;
  background: #fff; border-radius: 50px;
  padding: 0.4rem 1.8rem;
  max-width: 1200px; width: 100%;
  box-shadow: 0 2px 16px rgba(11,61,92,0.10);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  margin-right: auto; white-space: nowrap;
}
.nav-logo img { height: 38px; width: auto; border-radius: 4px; }
.nav-logo .logotype { line-height: 1.2; }
.nav-logo .logotype-main { font-size: 1.2rem; font-weight: 700; color: #1E4E7C; }
.nav-logo .logotype-sub  { font-size: 0.65rem; color: #6B7280; letter-spacing: 0.03em; font-style: italic; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: #9CA3AF;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #1E3A8A; text-decoration: none; font-weight: 600; }
.nav-cta-wrap { margin-left: 1.5rem; }
.nav-cta-wrap .btn-green { font-size: 0.78rem; padding: 0.5rem 1rem 0.5rem 1.3rem; border-radius: 24px; background: #1E3A6F; display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-cta-wrap .btn-green:hover { background: #162D54; }
.nav-cta-wrap .btn-green::after {
  content: '›'; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: #7CB342; color: #fff;
  font-size: 0.95rem; line-height: 1; font-weight: 700;
}
.nav-toggle { display: none; }
.nav-toggle-label { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.nav-toggle-label span { display: block; width: 22px; height: 2px; background: #0B3D5C; border-radius: 2px; }

/* ── HERO ──────────────────────────────────────── */
.hero { display: flex; min-height: 600px; background: #fff; overflow: hidden; position: relative; }
.hero-text {
  flex: 0 0 50%; padding: 5rem 3rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-text h1 { font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 700; color: #0B3D5C; line-height: 1.25; margin-bottom: 1.2rem; max-width: 500px; }
.hero-text p { font-size: 0.95rem; color: #475569; margin-bottom: 2rem; line-height: 1.6; max-width: 460px; }
.hero-text strong { color: #0B3D5C; }
.hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-image {
  position: absolute; top: 0; right: 0; bottom: 0; left: 45%;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); display: block; }
.hero-dots span.active { background: #0B3D5C; width: 12px; height: 12px; }

/* Decorative curved cream shape in top-right of hero text area */
.hero-text::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: #F5F0E8; z-index: -1; pointer-events: none;
}

/* ── SECTIONS ──────────────────────────────────── */
.section { padding: 4rem 0; }
.section-alt { background: #F8F9FA; }

.strip-label {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  margin-bottom: 0.5rem; color: #1E3A5C; letter-spacing: 0.06em;
  padding-left: 0.8rem; border-left: 3px solid #1E3A5C;
}

.section-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700;
  margin-bottom: 0.5rem; color: #0B3D5C; line-height: 1.25;
}
.section-subtitle {
  font-size: 0.95rem; color: #666; margin-bottom: 2rem; max-width: 700px; line-height: 1.7;
}

/* ── VALUE PROPS (collage + bullets) ───────────── */
.split-collage {
  display: flex; gap: 2.5rem; align-items: center;
}
.collage {
  flex: 0 0 48%; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.collage img { width: 100%; height: 100%; min-height: 180px; max-height: 240px; object-fit: cover; border-radius: 6px; }
.collage .wide { grid-column: span 2; min-height: 240px; max-height: 280px; }

.prose { flex: 1; }
.prose .pre { font-size: 0.85rem; font-weight: 600; color: #7CB342; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.prose h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); color: #0B3D5C; line-height: 1.25; margin-bottom: 0.8rem; }
.prose p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 1.5rem; }

.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; list-style: none;
}
.feature-grid li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.88rem; color: #444; line-height: 1.55;
}
.feature-grid li.fg-full { grid-column: 1 / -1; }
.feature-grid li strong { color: #0B3D5C; font-size: 0.92rem; }
.feature-grid .fg-check {
  flex: 0 0 14px; color: #0B3D5C; font-weight: 700; font-size: 1.2rem;
  margin-top: 1px;
}

/* ── CTA BOX ────────────────────────────────────── */
/* ── COVERAGE (white section with map) ────────── */
.cover-split { display: flex; gap: 3rem; align-items: center; }
.cover-text { flex: 1; }
.cover-text h2 { color: #0B3D5C; font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 1rem; line-height: 1.3; }
.cover-text p { color: #555; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.cover-text p strong { color: #333; }
.cover-text .btn { margin-top: 0.5rem; }
.cover-map { flex: 1; min-width: 0; }
.cover-map img { width: 100%; border-radius: 8px; min-height: 320px; object-fit: contain; background: #fff; }

/* ── SUSTAINABILITY ────────────────────────────── */
.sust-split { display: flex; gap: 3rem; align-items: center; }
.sust-text { flex: 1; }
.sust-text h2 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: #0B3D5C; line-height: 1.3; margin-bottom: 1.5rem; }
.sust-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sust-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border-radius: 10px; padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sc-icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sc-icon svg { width: 22px; height: 22px; }
.green-bg { background: #7CB342; }
.sust-card strong { display: block; font-size: 0.95rem; color: #0B3D5C; margin-bottom: 0.2rem; }
.sust-card p { font-size: 0.85rem; color: #666; line-height: 1.5; margin: 0; }
.sust-visual { flex: 1; }
.sust-visual img { width: 100%; border-radius: 12px; object-fit: cover; min-height: 300px; }

/* ── SERVICE CARDS CAROUSEL ────────────────────── */
.services-carousel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem;
}
.service-card {
  border-radius: 12px; min-height: 320px; position: relative; overflow: hidden;
  background: #fff; padding: 1.5rem;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
}
.service-card .sc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  position: relative; z-index: 2; flex-shrink: 0;
}
.service-card .sc-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1rem; color: #0B3D5C; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: #555; line-height: 1.6; }
.service-card.active { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.service-card.active h3 { color: #7CB342; }

/* ── SECTION ACCENT HEADING ────────────────────── */
.section-accent-heading {
  font-size: 1rem; font-weight: 600; color: #333; line-height: 1.4;
  padding-left: 0.8rem; border-left: 3px solid #7CB342; margin-bottom: 1rem;
}

/* ── STATS ─────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-card {
  background: #fff; border-radius: 10px; padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center;
}
.stat-number { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: #0B3D5C; }
.stat-label { font-size: 0.82rem; color: #666; margin-top: 0.3rem; line-height: 1.4; }

/* ── FLEET ─────────────────────────────────────── */
.fleet-head { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2rem; }
.fleet-head .text { flex: 1; }
.fleet-head .tags { flex: 0 0 40%; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-content: flex-start; }
.fleet-tag {
  display: inline-block; padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  border: 1.5px solid #0B3D5C; color: #0B3D5C; background: #fff;
}

/* ── CLIENT LOGOS ──────────────────────────────── */
.client-logos img { height: 50px; max-width: 120px; width: auto; object-fit: contain; opacity: 0.7; }

/* ── FORM SECTION ──────────────────────────────── */
.form-section {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../img/contacto/FRINOA-110.jpg') center/cover no-repeat;
  padding: 3rem 0;
}
.form-section-split { display: flex; gap: 3rem; align-items: center; }
.form-box {
  flex: 1; background: #fff; border-radius: 12px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.form-box h3 { font-size: 1.2rem; color: #0B3D5C; margin-bottom: 1.2rem; }
.form-row { margin-bottom: 0.8rem; }
.form-row input, .form-row textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1px solid #ddd; border-radius: 8px;
  font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.form-row input::placeholder, .form-row textarea::placeholder { font-style: italic; color: #aaa; }
.form-row input:focus, .form-row textarea:focus { border-color: #0B3D5C; }
.form-row-2 { display: flex; gap: 0.8rem; }
.form-row-2 input { flex: 1; }
.form-row textarea { resize: vertical; }
.form-row .btn { width: auto; padding: 0.75rem 1.5rem; border-radius: 50px; }
.form-row .btn::after { content: '»'; color: #7CB342; font-size: 1.1rem; margin-left: 0.3rem; }

.form-cta { flex: 1; color: #fff; }
.form-cta h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; text-transform: uppercase; }
.form-cta p { font-size: 1rem; line-height: 1.7; opacity: 0.9; }

/* ── FOOTER ────────────────────────────────────── */
.footer { background: #f5f5f5; border-top: 1px solid #e0e0e0; padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.3fr 1.2fr; gap: 2rem; align-items: start; }
.footer-brand img { height: 36px; }
.footer-tagline { font-size: 0.85rem; color: #888; font-style: italic; margin-top: 0.4rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav strong { font-size: 0.85rem; color: #0B3D5C; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-nav a { font-size: 0.8rem; color: #555; text-transform: uppercase; letter-spacing: 0.03em; }
.footer-nav a:hover { text-decoration: underline; color: #0B3D5C; }
.footer-info { font-size: 0.82rem; color: #555; line-height: 1.7; }
.footer-info strong { color: #0B3D5C; }
.footer-addr p { margin-bottom: 0.6rem; }
.footer-horario { margin-top: 0.5rem; font-size: 0.8rem; color: #666; }
.footer-map { min-height: 140px; }
.map-placeholder {
  width: 100%; height: 140px; background: #e8ecf0; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 0.85rem; text-transform: uppercase;
}
.footer-copy {
  margin-top: 2rem; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: #999; padding-top: 1.5rem; border-top: 1px solid #e0e0e0;
}
.footer-links a { color: #999; margin: 0 0.3rem; }
.footer-links a:hover { color: #0B3D5C; }
.footer-links span { color: #ccc; margin: 0 0.3rem; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  .nav-track { border-radius: 12px; padding: 0.4rem 1rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: #fff; flex-direction: column; padding: 1rem; border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); gap: 0.6rem; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle-label { display: flex; }
  .nav-cta-wrap { display: none; }
  .nav-toggle:checked ~ .nav-links .nav-cta-wrap { display: block; margin-left: 0; }
  .nav-track { flex-wrap: wrap; }

  .hero { flex-direction: column-reverse; min-height: auto; position: static; }
  .hero-text { flex: auto; padding: 2rem 1.5rem; }
  .hero-image { position: relative; left: 0; min-height: 280px; clip-path: none; }
  .hero::before { display: none; }

  .split-collage { flex-direction: column; }
  .collage { flex: auto; width: 100%; }

  .cta-box { flex-direction: column; text-align: center; border-radius: 16px; gap: 0.8rem; padding: 1rem; }
  .cta-box .btn { width: 100%; justify-content: center; }

  .feature-grid { grid-template-columns: 1fr; }

  .cover-split { flex-direction: column; }

  .sust-split { flex-direction: column; }
  .sust-cards { grid-template-columns: 1fr; }
  .sust-visual { width: 100%; }

  .services-carousel, .services-grid-simple { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .fleet-head { flex-direction: column; }
  .fleet-head .tags { flex: auto; }
  .form-section-split { flex-direction: column-reverse; }
  .form-box { width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-copy { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── INNER PAGE: SERVICES GRID ─────────────────── */
.service-block {
  background: #fff; border-radius: 10px; padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #7CB342;
  display: flex; flex-direction: column; gap: 1rem;
}
.sb-content h3 { font-size: 1.15rem; color: #0B3D5C; margin-bottom: 0.3rem; line-height: 1.3; }
.sb-content p { font-size: 0.9rem; color: #555; line-height: 1.65; }
/* ── INNER PAGE: SECTION STRIP ─────────────────── */
.section-strip { display: flex; align-items: stretch; min-height: 380px; }
.section-strip > .strip-text { flex: 0 0 50%; padding: 3rem 3rem 3rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.section-strip > .strip-text h1 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: #1E3A5F; line-height: 1.2; margin-bottom: 1.2rem; font-weight: 700; }
.section-strip > .strip-text p { font-size: 0.95rem; color: #4A4A4A; line-height: 1.7; margin: 0; }
.section-strip > .strip-visual { flex: 1; overflow: hidden; }
.section-strip > .strip-visual img { width: 100%; height: 100%; object-fit: cover; 
  /* Services page grid */
  .section-strip { flex-direction: column; min-height: auto; }
  .section-strip > .strip-text { flex: auto; padding: 2rem 1.5rem; }
  .sb-image { height: 160px; }
}

/* ── INNER PAGE: SECTION STRIP REVERSE ─────────── */
.section-strip.reverse { flex-direction: row-reverse; }
.section-strip.reverse > .strip-text { padding: 3rem 4rem 3rem 3rem; }

/* ── INNER PAGE: SPLIT COLLAGE REVERSE ─────────── */
.split-collage.reverse { flex-direction: row-reverse; }

/* ── INNER PAGE: SPLIT STRIP ────────────────────── */
/* ── INNER PAGE: FEATURE LIST ─────────────────── */
/* ── FAQ ACORDEÓN (estilo mockup) ──────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1.5px solid #2B5A7F; border-radius: 12px;
  margin-bottom: 0.75rem; padding: 0; overflow: hidden;
}
.faq-item[open] { box-shadow: 0 2px 8px rgba(43, 90, 127, 0.10); }
.faq-item summary {
  padding: 1.2rem 1.5rem; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; color: #2B5A7F;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '›'; font-size: 1.4rem; color: #2B5A7F;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  transition: transform 0.2s, background 0.2s; margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(90deg);
  background: #2B5A7F; color: #fff;
  content: '›';
}
.faq-item .faq-answer {
  padding: 0 1.5rem 1.5rem; color: #374151; font-size: 0.92rem; line-height: 1.7;
}
.faq-item .faq-answer p { margin: 0; }

/* ── INNER PAGE: CONTACT HERO ─────────────────── */
/* ── INNER PAGE: PHONE PREFIX ─────────────────── */
.form-row-phone { display: flex; align-items: stretch; }
.phone-prefix {
  background: #f0f0f0; border: 1px solid #ddd; border-right: none;
  padding: 0.7rem 0.8rem; border-radius: 8px 0 0 8px;
  font-size: 0.9rem; color: #555; display: flex; align-items: center;
  font-weight: 500;
}
.form-row-phone input { border-radius: 0 8px 8px 0 !important; }

/* ── SERVICES GRID SIMPLE (3 cards limpias) ────── */
.services-grid-simple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.service-simple:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.10); }
.ss-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #7CB342; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.ss-icon svg { width: 28px; height: 28px; }
.service-simple h3 { font-size: 1.1rem; color: #0B3D5C; margin-bottom: 0.6rem; line-height: 1.3; font-weight: 600; }
.service-simple p { font-size: 0.88rem; color: #555; line-height: 1.6; }

/* ── SERVICES: cards con accent vertical (estilo mockup) ── */
.services-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
.service-card-accent {
  background: #fff; border-radius: 8px; padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #315E86;
}
.service-card-accent h3 { font-size: 1.15rem; color: #315E86; margin-bottom: 0.25rem; line-height: 1.3; font-weight: 700; }
.service-card-accent .subtitle { font-style: italic; color: #315E86; font-size: 0.93rem; margin-bottom: 0.45rem; display: block; }
.service-card-accent p { font-size: 0.87rem; color: #444; line-height: 1.55; }

/* ── NOSOTROS PAGE ───────────────────────────── */
.hero-nosotros { min-height: 380px; }
.hero-nosotros .hero-image-full {
  position: relative; width: 100%; height: 380px; overflow: hidden;
}
.hero-nosotros .hero-image-full img { width: 100%; height: 100%; object-fit: cover; }
.split-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.col-image img { width: 100%; border-radius: 12px; }
.col-text h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); color: #222; line-height: 1.25; margin-bottom: 1rem; font-weight: 700; }
.col-text p { font-size: 0.95rem; color: #4a4a4a; line-height: 1.7; margin-bottom: 1rem; }
.fleet-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.fleet-card-blue {
  background: #fff; border-radius: 8px; padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid #e8ecf0;
}
.fleet-card-blue h4 { color: #1E4E7C; font-size: 0.95rem; margin-bottom: 0.4rem; font-weight: 700; }
.fleet-card-blue p { color: #4A4A4A; font-size: 0.85rem; line-height: 1.5; margin: 0; }
.nosotros-solar { padding: 0; background: #f8f9fa; }
.nosotros-solar .container-full { width: 100%; }
.nosotros-solar .container-full img { width: 100%; height: 320px; object-fit: cover; display: block; }
.nosotros-solar .container { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.nosotros-solar .solar-text { font-size: 0.95rem; color: #4a4a4a; line-height: 1.7; max-width: 720px; margin-bottom: 0; }

/* responsive */
@media (max-width: 768px) {
  .split-2col { grid-template-columns: 1fr; }
  .fleet-cards { grid-template-columns: 1fr; }
  .nosotros-solar .container-full img { height: 220px; }
}

/* ── CONTACTO PAGE ───────────────────────────── */
.hero-contact-overlay {
  position: relative; min-height: 420px; display: flex; align-items: center;
  overflow: hidden;
}
.hero-contact-overlay .hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-contact-overlay .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,40,80,0.85) 0%, rgba(15,40,80,0.5) 50%, rgba(15,40,80,0.2) 100%);
}
.hero-contact-overlay .container { position: relative; z-index: 2; }
.hero-contact-overlay .hero-text-overlay {
  max-width: 600px; color: #fff;
}
.hero-contact-overlay .hero-text-overlay h1 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15;
  text-transform: uppercase; margin-bottom: 1.2rem; letter-spacing: -0.01em;
}
.hero-contact-overlay .hero-text-overlay p {
  font-size: 1rem; line-height: 1.7; opacity: 0.92; color: #fff;
  text-transform: none;
}

/* Submit button with circular arrow icon */
.btn-arrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.btn-arrow-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #84BD3A; color: #fff; font-size: 0.95rem; font-weight: 600;
  margin-left: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-contact-overlay { min-height: 360px; }
}

/* ── CENTROS PAGE ─────────────────────────── */
.hero-depositos { min-height: 380px; background: #1a3a5c; }
.hero-depositos .hero-image-full { position: relative; width: 100%; height: 380px; overflow: hidden; }
.hero-depositos .hero-image-full img { width: 100%; height: 100%; object-fit: cover; }
.split-2col.reverse-on-mobile .col-text { order: 2; }
.centros-intro .col-text h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: #0B3D5C; line-height: 1.25; margin: 0.5rem 0 1rem; font-weight: 700; }
.centros-intro .col-text p { font-size: 0.95rem; color: #4a4a4a; line-height: 1.7; margin-bottom: 1.2rem; }
.centros-lead { font-size: 0.95rem; color: #4a4a4a; line-height: 1.7; margin: 1rem auto 2rem; max-width: 800px; }

.locaciones { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.locacion {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #0B3D5C;
  display: flex; flex-direction: column;
}
.loc-map { width: 100%; height: 220px; background: #f5f5f5; overflow: hidden; }
.loc-map img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.loc-content { padding: 1.5rem 1.75rem; }
.loc-content h3 { font-size: 1.15rem; color: #0B3D5C; margin-bottom: 0.4rem; font-weight: 600; }
.loc-content .loc-direccion { font-size: 0.9rem; color: #5a7a94; font-style: italic; margin-bottom: 1rem; }
.loc-content p { font-size: 0.88rem; color: #444; line-height: 1.65; margin-bottom: 0.6rem; }

.centros-cta { background: #f8f9fa; }
.centros-cta h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); color: #0B3D5C; line-height: 1.25; margin-bottom: 1rem; font-weight: 700; }
.centros-cta p { font-size: 0.95rem; color: #4a4a4a; line-height: 1.7; margin-bottom: 1rem; }

/* Servicios cards subtitle visibility for Centros */
.service-card-accent .subtitle { display: block; }

/* Servicios cards: variants for Centros */
.services-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.centros-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.centros-grid-4 .service-card-accent { padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
.centros-grid-4 .service-card-accent h3 { font-size: 1rem; }

@media (max-width: 768px) {
  .split-2col.reverse-on-mobile .col-text { order: initial; }
  .locaciones { grid-template-columns: 1fr; }
  .centros-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ── NOSOTROS PAGE: compact sections ─────────── */
.nosotros-intro, .nosotros-flota { padding: 2.5rem 0; }
.nosotros-intro .col-text h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); color: #1A2A3A; line-height: 1.25; margin-bottom: 0.8rem; font-weight: 700; }
.nosotros-intro .col-text p { font-size: 0.9rem; color: #4A4A4A; line-height: 1.65; margin-bottom: 0.8rem; }
.nosotros-flota .col-text h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); color: #1A2A3A; line-height: 1.25; margin-bottom: 0.8rem; font-weight: 700; }
.nosotros-flota .col-text h2:not(:first-child) { margin-top: 1.2rem; }
.nosotros-flota .col-text p { font-size: 0.9rem; color: #4A4A4A; line-height: 1.65; margin-bottom: 0.7rem; }
.fleet-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.8rem; }
.fleet-cards .fleet-card-blue { padding: 0.85rem 1rem; }
.fleet-cards .fleet-card-blue h4 { font-size: 0.85rem; margin-bottom: 0.2rem; font-weight: 700; }
.fleet-cards .fleet-card-blue p { font-size: 0.78rem; line-height: 1.4; }
@media (max-width: 768px) {
  .fleet-cards { grid-template-columns: 1fr; }
}
