  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --azul: #185FA5;
    --azul-claro: #E6F1FB;
    --azul-oscuro: #0C447C;
    --azul-medio: #378ADD;
    --gris: #2C2C2A;
    --gris-medio: #888780;
    --gris-claro: #F1EFE8;
    --blanco: #ffffff;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--gris); background: var(--blanco); font-size: 16px; line-height: 1.7; }
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem; height: 70px;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #e8e6df;
    backdrop-filter: blur(8px);
  }
  .logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gris); letter-spacing: -0.5px; }
  .logo-icon { 
    width: 28px;           /* Tamaño fijo */
    height: 28px;
    object-fit: contain;   /* Mantiene proporciones */
    vertical-align: middle; /* Se alinea con el texto */
    flex-shrink: 0;        /* No se achica */
}
  .logo span { color: var(--azul); }
  nav ul { display: flex; list-style: none; gap: 2.5rem; }
  nav ul a { text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris-medio); transition: color 0.2s; }
  nav ul a:hover, nav ul a.active { color: var(--azul); }
  section { display: none; padding-top: 70px; }
  section.active { display: block; }
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
  .hero-text { display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem 4rem; }
  .hero-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--azul); margin-bottom: 1.5rem; }
  .hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.15; color: var(--gris); margin-bottom: 1.5rem; letter-spacing: -1px; }
  .hero-title em { color: var(--azul); font-style: normal; }
  .hero-desc { font-size: 1rem; color: var(--gris-medio); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.8; }
  .btn-primary { display: inline-block; background: var(--azul); color: white; padding: 0.8rem 2rem; border-radius: 2px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
  .btn-primary:hover { background: var(--azul-oscuro); }
  .hero-image { background: var(--gris-claro); position: relative; overflow: hidden; }
  .hero-image-inner { width: 100%; height: 100%; background: linear-gradient(135deg, #85B7EB 0%, #185FA5 60%, #0C447C 100%); display: flex; align-items: center; justify-content: center; }
  .hero-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.07) 40px, rgba(255,255,255,0.07) 41px); }
  .hero-badge { position: relative; z-index: 1; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); border-radius: 2px; padding: 2rem 2.5rem; text-align: center; color: white; }
  .hero-badge-num { font-family: var(--font-display); font-size: 4rem; font-weight: 700; line-height: 1; }
  .hero-badge-txt { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 0.4rem; }
  .stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #e8e6df; }
  .stat-item { padding: 2rem 4rem; border-right: 1px solid #e8e6df; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--azul); line-height: 1; }
  .stat-label { font-size: 0.8rem; color: var(--gris-medio); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
  .about-left { background: var(--gris); padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
  .about-left h2 { font-family: var(--font-display); font-size: 2.6rem; color: white; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
  .about-left h2 em { color: #85B7EB; font-style: normal; }
  .about-left p { color: #B4B2A9; font-size: 0.95rem; line-height: 1.9; margin-bottom: 1rem; }
  .about-right { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; gap: 2rem; }
  .value-item { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid #e8e6df; }
  .value-item:last-child { border-bottom: none; padding-bottom: 0; }
  .value-icon { width: 40px; height: 40px; background: var(--azul-claro); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
  .value-title { font-weight: 500; font-size: 0.95rem; color: var(--gris); margin-bottom: 0.3rem; }
  .value-desc { font-size: 0.88rem; color: var(--gris-medio); line-height: 1.7; }
  .gallery-section { padding: 5rem 4rem; min-height: calc(100vh - 70px); }
  .section-header { margin-bottom: 3rem; }
  .section-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--azul); margin-bottom: 0.8rem; }
  .section-title { font-family: var(--font-display); font-size: 2.4rem; color: var(--gris); letter-spacing: -0.5px; line-height: 1.2; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e8e6df; }
  .gallery-item { aspect-ratio: 1; background: var(--gris-claro); overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-color { width: 100%; height: 100%; transition: transform 0.4s ease; }
  .gallery-item:hover .gallery-color { transform: scale(1.04); }
  .gallery-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,0.92); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.7rem; color: var(--gris); }
  .noticias-section { padding: 5rem 4rem; min-height: calc(100vh - 70px); }
  .noticias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .noticia-card { border: 1px solid #e8e6df; transition: border-color 0.2s; }
  .noticia-card:hover { border-color: var(--azul); }
  .noticia-img { height: 180px; overflow: hidden; }
  .noticia-body { padding: 1.5rem; }
  .noticia-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--azul); margin-bottom: 0.6rem; }
  .noticia-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--gris); line-height: 1.4; margin-bottom: 0.8rem; }
  .noticia-desc { font-size: 0.85rem; color: var(--gris-medio); line-height: 1.7; }
  .noticia-date { display: block; font-size: 0.75rem; color: #B4B2A9; margin-top: 1rem; }
  .contacto-section { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
  .contacto-left { background: var(--azul); padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
  .contacto-left h2 { font-family: var(--font-display); font-size: 2.6rem; color: white; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
  .contacto-left p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.9; margin-bottom: 2rem; }
  .contact-info-item { display: flex; gap: 1rem; align-items: center; color: white; font-size: 0.9rem; margin-bottom: 1rem; }
  .contact-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .contacto-right { padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
  .form-group { margin-bottom: 1.5rem; }
  .form-label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris-medio); margin-bottom: 0.5rem; }
  .form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e8e6df; background: white; font-family: var(--font-body); font-size: 0.95rem; color: var(--gris); outline: none; transition: border-color 0.2s; border-radius: 2px; }
  .form-input:focus { border-color: var(--azul); }
  textarea.form-input { resize: vertical; min-height: 120px; }
  footer { background: var(--gris); color: #B4B2A9; padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
  footer .footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: white; }
  footer .footer-logo span { color: #85B7EB; }
  .social-links { display: flex; gap: 1rem; }
  .social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #B4B2A9; text-decoration: none; font-size: 14px; transition: border-color 0.2s, color 0.2s; }
  .social-link:hover { border-color: #85B7EB; color: #85B7EB; }
