/* ============================================
   SOBRE ICORP - Diseño Premium Alta Gama
   Colores corporativos: Naranja + Azul
   ============================================ */

/* --- VARIABLES LOCALES --- */
.sobre-page {
  --accent-orange: #ff6b35;
  --accent-orange-dark: #e55a2a;
  --accent-blue: #2a6f8f;
  --accent-blue-dark: #1e5a75;
  --cream: #faf8f5;
  --dark: #0d0d0d;
  --dark-secondary: #1a1a1a;
  --text-body: #5a5a5a;
  --text-light: #888;
  --border-light: rgba(0, 0, 0, 0.06);
}

/* ============================================
   HERO FULLSCREEN
   ============================================ */
.sobre-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: sobreHeroBreath 15s ease-in-out infinite alternate;
  filter: brightness(0.3) saturate(0.4);
}

@keyframes sobreHeroBreath {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.13); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.8) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 55%);
  z-index: 2;
}

/* Líneas arquitectónicas */
.hero-lines-sobre {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.sobre-line {
  position: absolute;
  opacity: 0.1;
}

.sl-1 {
  top: 18%;
  right: 8%;
  width: 1px;
  height: 35vh;
  background: var(--accent-orange);
  animation: linePulse 7s ease-in-out infinite;
}

.sl-2 {
  bottom: 22%;
  left: 10%;
  width: 30vw;
  height: 1px;
  background: var(--accent-blue);
  animation: linePulse 9s ease-in-out infinite reverse;
}

.sl-3 {
  top: 30%;
  left: 20%;
  width: 1px;
  height: 25vh;
  background: var(--accent-orange);
  animation: linePulse 8s ease-in-out infinite 1s;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.2; }
}

/* Contenido */
.hero-content-sobre {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  animation: sobreReveal 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

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

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title-sobre {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.title-row {
  display: block;
}

.title-row.accent {
  /* font-style: italic; */
  color: var(--accent-orange);
  font-weight: 500;
}

.hero-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.hero-sep span {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.hero-sep i {
  font-size: 0.3rem;
  color: var(--accent-orange);
}

.hero-text-sobre {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin: 0 auto;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-bar {
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.scroll-fill {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-orange);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   SECCIÓN: HISTORIA
   ============================================ */
.historia-section {
  padding: 8rem 0;
  background: #fff;
}

.historia-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
}

.section-title-sobre {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.historia-texto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.historia-p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
  font-weight: 300;
}

.historia-p .highlight {
  color: var(--accent-orange);
  font-weight: 600;
}

.historia-p strong {
  color: var(--dark);
  font-weight: 600;
}

.historia-visual {
  position: relative;
}

.historia-imagen-wrapper {
  position: relative;
}

.historia-imagen-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.9);
}

.historia-imagen-marco {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-orange);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.historia-destacado {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--accent-orange);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.destacado-numero {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.destacado-texto {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================
   SECCIÓN: UNIDADES DE NEGOCIO
   ============================================ */
.unidades-section {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.unidades-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,107,53,0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(42,111,143,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.unidades-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.unidades-header {
  text-align: center;
  margin-bottom: 5rem;
}

.unidades-intro {
  max-width: 550px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.unidad-card {
  background: #fff;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-top: 3px solid transparent;
}

.unidad-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.unidad-card.destacada {
  border-top: 3px solid var(--accent-orange);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.unidad-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

.unidad-numero {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
    /* font-style: italic; */
  color: rgba(0,0,0,0.04);
  font-weight: 700;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.unidad-icono {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
  margin-bottom: 1.5rem;
}

.unidad-icono i {
  font-size: 1.3rem;
  color: #fff;
}

.unidad-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.unidad-card h3 span {
  font-size: 0.9rem;
  color: var(--accent-blue);
    /* font-style: italic; */
  font-weight: 400;
}

.unidad-subtitulo {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}

.unidad-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.unidad-card p strong {
  color: var(--dark);
}

.unidad-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.unidad-lista li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}

.unidad-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* ============================================
   SECCIÓN: PILARES / VALORES
   ============================================ */
.pilares-section {
  padding: 8rem 0;
  background: #fff;
}

.pilares-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

.pilares-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pilar-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.pilar-item:hover {
  border-color: var(--border-light);
  background: var(--cream);
}

.pilar-icono-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.pilar-item:hover .pilar-icono-wrapper {
  background: var(--accent-orange);
}

.pilar-icono-wrapper i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: color 0.4s ease;
}

.pilar-item:hover .pilar-icono-wrapper i {
  color: #fff;
}

.pilar-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.pilar-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

.pilar-item p strong {
  color: var(--dark);
}

/* ============================================
   SECCIÓN: LÍNEA DE TIEMPO
   ============================================ */
.timeline-section {
  padding: 8rem 0;
  background: var(--cream);
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--accent-orange),
    var(--accent-blue),
    var(--accent-orange)
  );
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-bottom: 4rem;
  padding-left: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -3.35rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  background: var(--accent-orange);
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(255,107,53,0.1);
}

.timeline-contenido {
  background: #fff;
  padding: 2rem;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-contenido {
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transform: translateX(5px);
}

.timeline-ano {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
    /* font-style: italic; */
  color: var(--accent-orange);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.timeline-contenido h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.timeline-contenido p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

/* ============================================
   SECCIÓN: COMPROMISO
   ============================================ */
.compromiso-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.compromiso-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.compromiso-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}

.compromiso-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.compromiso-contenido {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 2rem;
}

.compromiso-tag {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 1.5rem;
}

.compromiso-titulo {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.compromiso-titulo .accent {
    /* font-style: italic; */
  color: var(--accent-orange);
}

.compromiso-texto {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.compromiso-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent-orange);
  color: #fff;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.compromiso-btn i {
  margin-left: 0.8rem;
  transition: transform 0.4s ease;
}

.compromiso-btn:hover {
  background: var(--accent-orange-dark);
  padding-right: 3rem;
}

.compromiso-btn:hover i {
  transform: translateX(6px);
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.footer-premium {
  background: #000;
  position: relative;
  overflow: hidden;
}

.footer-border-top {
  display: flex;
  height: 3px;
}

.border-accent { flex: 1; }
.border-orange { background: var(--accent-orange); }
.border-blue { background: var(--accent-blue); }

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

.footer-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin: 1.5rem 0;
  font-weight: 300;
}

.footer-certifications {
  display: flex;
  gap: 1.5rem;
}

.cert-item {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}

.cert-item i {
  color: var(--accent-blue);
  margin-right: 0.4rem;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.4s ease;
}

.footer-col:hover .footer-heading::after {
  width: 35px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 10px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-weight: 300;
}

.footer-contact-list li i {
  color: var(--accent-orange);
  margin-top: 3px;
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--accent-orange);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 0.9rem;
}

.social-icon-link:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  transform: translateY(-4px);
}

.footer-legal-bar {
  padding: 2.5rem 0;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
}

.legal-divider {
  color: rgba(255,255,255,0.08);
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-copyright sup {
  font-size: 0.55rem;
}

.footer-madeby {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.1);
  letter-spacing: 2px;
    /* font-style: italic; */
  font-family: 'Outfit', sans-serif;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .unidades-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .historia-imagen-wrapper img {
    height: 350px;
  }

  .section-title-sobre {
    font-size: 2.5rem;
  }

  .historia-destacado {
    bottom: -1.5rem;
    left: 1rem;
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .sobre-hero {
    height: 90vh;
    min-height: 600px;
  }

  .hero-title-sobre {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  .hero-text-sobre {
    font-size: 0.95rem;
  }

  .historia-section,
  .unidades-section,
  .pilares-section,
  .timeline-section,
  .compromiso-section {
    padding: 5rem 0;
  }

  .historia-container,
  .unidades-container,
  .pilares-container,
  .timeline-container {
    padding: 0 2rem;
  }

  .section-title-sobre {
    font-size: 2rem;
  }

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

  .timeline {
    padding-left: 2rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-marker {
    left: -2.35rem;
    width: 10px;
    height: 10px;
  }

  .compromiso-titulo {
    font-size: 2.5rem;
  }

  .compromiso-texto {
    font-size: 1rem;
  }

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

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .sobre-hero {
    height: 100vh;
  }

  .hero-tag {
    font-size: 0.6rem;
    letter-spacing: 4px;
  }

  .hero-title-sobre {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .section-title-sobre {
    font-size: 1.8rem;
  }

  .unidad-card {
    padding: 2rem 1.5rem;
  }

  .historia-destacado {
    padding: 1rem 1.2rem;
  }

  .destacado-numero {
    font-size: 2rem;
  }

  .compromiso-titulo {
    font-size: 2rem;
  }

  .footer-container {
    padding: 3rem 1.5rem 0;
  }

  .timeline-ano {
    font-size: 1.5rem;
  }
}