/* ─── PÁGINA INTERIOR: HERO BANNER ─── */
.page-hero {
  position: relative;
  padding: 150px 2rem 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.35);
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.page-hero-content {
  position: relative; max-width: 700px; margin: 0 auto;
}
.page-hero-content .hero-eyebrow { color: var(--naranja); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff; line-height: 1.1; margin-bottom: 1rem;
}
.page-hero-content h1 em { font-style: normal; color: var(--naranja); }
.page-hero-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.6; }

/* ─── CONTENEDOR BASE ─── */
.container { max-width: 1200px; margin: 0 auto; }
.page-section { padding: 5rem 2rem; }

/* ─── GRID SERVICIOS FULL ─── */
.services-full-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-full-card {
  background: #fff; border-radius: var(--radio);
  box-shadow: var(--sombra);
  padding: 2rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
  border-left: 4px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-full-card:hover {
  border-left-color: var(--naranja);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,31,61,.14);
}
.sfc-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--azul); color: var(--naranja);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sfc-icon svg { width: 26px; height: 26px; }
.service-full-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.25rem; color: var(--azul);
  margin-bottom: .5rem;
}
.service-full-card p { color: var(--gris-texto); font-size: .9rem; line-height: 1.6; }

/* ─── NOSOTROS PAGE ─── */
.nosotros-about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.nosotros-about h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--azul); margin-bottom: 1rem; line-height: 1.15;
}
.nosotros-about p { color: var(--gris-texto); line-height: 1.7; margin-bottom: 1rem; }
.check-list { margin: 1.5rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--gris-texto); font-size: .95rem; margin-bottom: .7rem;
}
.check-list li::before {
  content: '✓'; color: var(--naranja);
  font-weight: 700; font-size: 1rem; margin-top: 1px;
}
.about-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,31,61,.14); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ─── VALORES GRID ─── */
.valores-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.valor-card {
  background: #fff; border-radius: var(--radio);
  box-shadow: var(--sombra); padding: 1.8rem;
  text-align: center;
  transition: transform .3s;
}
.valor-card:hover { transform: translateY(-4px); }
.valor-icon {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  background: var(--azul); color: var(--naranja);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.valor-icon svg { width: 26px; height: 26px; }
.valor-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; color: var(--azul);
  margin-bottom: .5rem;
}
.valor-card p { color: var(--gris-texto); font-size: .85rem; line-height: 1.5; }

/* ─── FLOTA GRID ─── */
.flota-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.flota-card {
  border-radius: var(--radio); overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform .3s;
}
.flota-card:hover { transform: translateY(-6px); }
.flota-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.flota-info { padding: 1.4rem; background: #fff; }
.flota-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--azul); margin-bottom: .5rem; }
.flota-info p { color: var(--gris-texto); font-size: .88rem; line-height: 1.5; }

/* ─── CONTACTO ─── */
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contacto-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--azul); margin-bottom: 1rem;
}
.contacto-info p { color: var(--gris-texto); line-height: 1.7; margin-bottom: 2rem; }
.info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.4rem;
}
.info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--azul); color: var(--naranja);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-weight: 600; color: var(--azul); font-size: .9rem; margin-bottom: .2rem; }
.info-list span { color: var(--gris-texto); font-size: .88rem; }
.contacto-form { background: var(--gris-claro); border-radius: 16px; padding: 2.5rem; }
.contacto-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.5rem; color: var(--azul);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--azul); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid rgba(15,31,61,.15);
  border-radius: 8px; font-family: 'Barlow', sans-serif;
  font-size: .92rem; color: var(--texto);
  background: #fff; transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--naranja); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; background: var(--naranja); color: #fff;
  padding: .9rem; border: none; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--naranja-2); transform: translateY(-2px); }

/* ─── SECTION HEADING ─── */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--azul); margin-bottom: .6rem; line-height: 1.15;
}
.section-heading p { color: var(--gris-texto); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ─── RESPONSIVE INNER ─── */
@media (max-width: 860px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .nosotros-about { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .flota-grid { grid-template-columns: 1fr 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .valores-grid { grid-template-columns: 1fr 1fr; }
  .flota-grid { grid-template-columns: 1fr; }
}
