:root {
    --azul: #0ea5e9;
    --azul-oscuro: #071e36;
    --azul-medio: #0056a3;
    --celeste: #7bcce8;
    --celeste-suave: rgba(123,204,232,0.15);
    --negro: #0f2342;
    --blanco: #FFFFFF;
    --gris-claro: #f5f5f5;
    --gris: #b0bac8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--blanco);
    color: var(--azul-oscuro);
    overflow-x: hidden;
  }

  body > nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(110deg, rgba(12,31,67,0.98), rgba(8,24,43,0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem clamp(1rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(123,204,232,0.28);
    box-shadow: 0 18px 42px rgba(5,17,42,0.24);
    gap: 1rem;
  }

  body > nav.visible { transform: translateY(0); }

  .nav-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--blanco);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .nav-brand span { color: var(--celeste); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .auth-menu {
    position: relative;
    display: flex;
    align-items: center;
  }

  .auth-menu-button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(123,204,232,0.35);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--blanco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .auth-menu-button:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(123,204,232,0.55);
    transform: translateY(-1px);
  }

  .auth-menu-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .auth-menu-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    min-width: 220px;
    padding: 0.55rem;
    border-radius: 16px;
    background: rgba(13,31,66,0.98);
    border: 1px solid rgba(123,204,232,0.18);
    box-shadow: 0 24px 55px rgba(5,17,42,0.28);
    display: grid;
    gap: 0.4rem;
    z-index: 120;
  }

  .auth-menu-panel[hidden] { display: none; }

  .auth-menu-label {
    padding: 0.45rem 0.65rem 0.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  .auth-menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--blanco);
    text-decoration: none;
    text-align: left;
    font: inherit;
    padding: 0.8rem 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .auth-menu-item:hover {
    background: rgba(255,255,255,0.08);
  }

  .auth-menu-item[hidden] {
    display: none;
  }

  .auth-menu-item.danger {
    color: #ffd7d7;
  }

  .auth-menu-item.danger:hover {
    background: rgba(255,110,110,0.12);
  }

  .session-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(8,16,34,0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .session-popup.open {
    opacity: 1;
    pointer-events: auto;
  }

  .session-popup-card {
    width: min(420px, 100%);
    border-radius: 22px;
    background: linear-gradient(180deg, #08182b 0%, #020b14 100%);
    color: var(--blanco);
    border: 1px solid rgba(123,204,232,0.2);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    padding: 1.4rem;
  }

  .session-popup-card h3 {
    margin: 0 0 0.45rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
  }

  .session-popup-card p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    line-height: 1.6;
  }

  .session-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .session-popup-actions a,
  .session-popup-actions button {
    border: 0;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.8rem 1rem;
    border-radius: 10px;
  }

  .session-popup-actions .primary {
    background: var(--celeste);
    color: var(--negro);
  }

  .session-popup-actions .secondary {
    background: rgba(255,255,255,0.08);
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,0.14);
  }

  .auth-menu-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: currentColor;
  }

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(123,204,232,0.35);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--blanco);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .nav-toggle:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(123,204,232,0.55);
  }

  .nav-toggle-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
  }

  .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.3rem;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
  }

  .nav-link-primary {
    background: linear-gradient(135deg, #a5e5f3 0%, var(--celeste) 100%);
    color: #0f2342;
    box-shadow: 0 8px 24px rgba(123,204,232,0.2);
  }

  .nav-link-secondary {
    border: 1px solid rgba(255,255,255,0.24);
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.04);
  }

  .nav-link:hover { opacity: 0.88; }
  .nav-link-secondary:hover {
    background: var(--celeste);
    color: #0f2342;
    border-color: var(--celeste);
  }

  .hero {
    min-height: 100vh;
    background:
      radial-gradient(circle at 82% 18%, rgba(123,204,232,0.24), transparent 22%),
      radial-gradient(circle at 12% 78%, rgba(37,88,168,0.38), transparent 28%),
      linear-gradient(135deg, #0d2551 0%, var(--azul-oscuro) 48%, #2865b5 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(7rem, 14vh, 10rem) clamp(1.2rem, 5vw, 4rem) 6rem;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent 0 49.8%, rgba(123,204,232,0.06) 50%, transparent 50.2%),
      radial-gradient(circle at 50% 36%, rgba(255,255,255,0.06), transparent 34%),
      radial-gradient(ellipse 80% 60% at 50% 110%, rgba(123,204,232,0.2) 0%, transparent 70%),
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 70px;
    background: var(--blanco);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .hero-badge {
    display: inline-block;
    background: rgba(123,204,232,0.15);
    border: 1px solid rgba(123,204,232,0.4);
    color: var(--celeste);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    animation: fadeDown 0.8s ease both;
    position: relative;
  }

  .hero-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    font-weight: 900;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    animation: fadeDown 0.8s 0.1s ease both;
    position: relative;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 900;
    color: var(--blanco);
    line-height: 1.02;
    margin-bottom: 0.8rem;
    animation: fadeDown 0.9s 0.2s ease both;
    position: relative;
  }

  .hero h1 span {
    color: var(--celeste);
    display: block;
  }

  .hero-sub {
    font-size: clamp(0.88rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    max-width: 680px;
    text-wrap: balance;
    line-height: 1.65;
    margin-bottom: 1.4rem;
    animation: fadeDown 0.9s 0.35s ease both;
    position: relative;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    position: relative;
    animation: fadeDown 0.9s 0.5s ease both;
    margin-bottom: 0.5rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  }
  .hero-cta-primary {
    background: linear-gradient(135deg, #a5e5f3 0%, var(--celeste) 100%);
    color: var(--negro);
    box-shadow: 0 8px 30px rgba(123,204,232,0.35);
  }

  .hero-cta-secondary {
    border: 1px solid rgba(255,255,255,0.38);
    color: var(--blanco);
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(8px);
  }

  .hero-cta:hover {
    transform: translateY(-3px);
  }

  .hero-cta-primary:hover {
    box-shadow: 0 14px 40px rgba(123,204,232,0.5);
  }

  .hero-cta-secondary:hover {
    background: var(--blanco);
    color: var(--azul-oscuro);
  }

  .hero h1 {
    text-wrap: balance;
    text-shadow: 0 12px 38px rgba(3,15,39,0.22);
  }

  .scroll-hint {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeDown 1s 0.9s ease both;
  }

  .scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: bounce 1.6s infinite;
  }

  .section {
    padding: 6rem 1.5rem;
    position: relative;
  }

  #valores {
    background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--celeste);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--azul-oscuro);
    margin-bottom: 4rem;
    line-height: 1.1;
  }

  .noticias {
    position: relative;
    z-index: 1;
    padding: 1.5rem 1.2rem 0;
  }

  .noticias-shell {
    background: linear-gradient(180deg, #08182b 0%, #020b14 100%);
    border: 1px solid rgba(123,204,232,0.18);
    border-radius: 28px;
    padding: 2rem;
    color: var(--blanco);
    box-shadow: 0 28px 80px rgba(7,20,44,0.2);
    position: relative;
    overflow: hidden;
  }

  .noticias-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(123,204,232,0.18), transparent 28%),
      radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 25%);
    pointer-events: none;
  }

  .noticias-header,
  .noticias-layout {
    position: relative;
    z-index: 1;
  }

  .noticias-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 1.5rem;
  }

  .noticias-header .section-eyebrow {
    color: var(--celeste);
    margin-bottom: 0.65rem;
  }

  .noticias-header .section-eyebrow::before {
    background: rgba(123,204,232,0.55);
  }

  .noticias-header .section-title {
    color: var(--blanco);
    margin-bottom: 0;
    max-width: 720px;
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .noticias-meta {
    max-width: 340px;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .news-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(123,204,232,0.25);
    color: var(--celeste);
    background: rgba(123,204,232,0.08);
    margin-bottom: 0.8rem;
  }

  .noticias-layout {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }

  @media (min-width: 760px) {
    .noticias-layout {
      grid-template-columns: 1fr;
    }
  }

  .noticias-feed {
    display: grid;
    gap: 1rem;
  }

  .noticias-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
  }

  .news-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
  }

  .news-status {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
  }

  .news-view-all,
  .news-refresh,
  .auth-action,
  .news-submit,
  .signout-btn {
    border: 0;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }

  .news-view-all,
  .news-refresh,
  .signout-btn {
    background: rgba(255,255,255,0.08);
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,0.14);
  }

  .auth-action.primary,
  .news-submit {
    background: var(--celeste);
    color: var(--negro);
    box-shadow: 0 10px 24px rgba(123,204,232,0.25);
  }

  .auth-action.secondary {
    background: rgba(255,255,255,0.08);
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,0.14);
  }

  .news-view-all:hover,
  .news-refresh:hover,
  .auth-action:hover,
  .news-submit:hover,
  .signout-btn:hover {
    transform: translateY(-2px);
  }

  .noticias-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
  }

  @media (min-width: 640px) {
    .noticias-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }

  .noticia-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(5,17,42,0.18);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-align: left;
  }

  .noticia-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(2,10,26,0.25);
    border-color: rgba(123,204,232,0.35);
  }

  .noticia-media {
    position: relative;
    aspect-ratio: 16 / 10;
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
  }

  .noticia-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .noticia-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(16,16,6,0.55);
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,0.12);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }

  .noticia-body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .noticia-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .noticia-kicker,
  .modal-kicker {
    display: inline-flex;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--celeste);
  }

  .noticia-date,
  .modal-meta {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
  }

  .noticia-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.25;
    color: var(--blanco);
    margin-top: 0.1rem;
  }

  .noticia-excerpt {
    color: rgba(255,255,255,0.76);
    line-height: 1.65;
    font-size: 0.92rem;
  }

  .noticia-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .noticia-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--celeste);
  }

  .panel-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 1.25rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 30px rgba(2,10,26,0.16);
  }

  .panel-card + .panel-card {
    margin-top: 1rem;
  }

  .panel-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--blanco);
    margin-bottom: 0.5rem;
  }

  .panel-card p,
  .panel-card small,
  .panel-card label,
  .panel-card .helper-text {
    color: rgba(255,255,255,0.76);
    line-height: 1.55;
  }

  .session-box {
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(123,204,232,0.08);
    border: 1px solid rgba(123,204,232,0.18);
    display: grid;
    gap: 0.35rem;
  }

  .session-email {
    color: var(--blanco);
    font-weight: 600;
    word-break: break-word;
  }

  .form-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.9rem;
  }

  .field {
    display: grid;
    gap: 0.35rem;
  }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    background: rgba(10,20,50,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: var(--blanco);
    padding: 0.85rem 0.95rem;
    font: inherit;
    outline: none;
  }

  .field textarea {
    min-height: 100px;
    resize: vertical;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: rgba(255,255,255,0.42);
  }

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    border-color: rgba(123,204,232,0.55);
    box-shadow: 0 0 0 3px rgba(123,204,232,0.12);
  }

  .auth-actions {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.9rem;
  }

  .auth-message,
  .form-message {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .helper-text {
    font-size: 0.86rem;
  }

  .form-lock {
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.16);
  }

  .news-submit {
    width: 100%;
    margin-top: 0.35rem;
  }

  .news-disabled {
    opacity: 0.55;
    pointer-events: none;
  }

  .news-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: var(--celeste);
    color: var(--negro);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,20,50,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .modal {
    background: linear-gradient(160deg, #071e36 0%, #071e36 100%);
    border: 1px solid rgba(123,204,232,0.25);
    border-radius: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 680px;
    max-height: 90vh;
    width: 100%;
    box-shadow: 0 40px 100px rgba(5,17,42,0.5);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
  }

  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }

  /* Gallery slider */
  .modal-gallery {
    position: relative;
    background: #071e36;
    overflow: hidden;
    padding-top: 0.75rem;
    border-radius: 20px 20px 0 0;
  }

  .modal-gallery-track {
    display: flex;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  }

  .modal-gallery-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-image {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .modal-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10,20,50,0.65);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--blanco);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
    user-select: none;
  }

  .modal-gallery-btn:hover { background: rgba(10,20,50,0.9); }
  .modal-gallery-btn.prev { left: 0.6rem; }
  .modal-gallery-btn.next { right: 0.6rem; }

  .modal-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0.55rem 0 0.4rem;
    background: #071e36;
  }

  .modal-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .modal-gallery-dot.active {
    background: var(--celeste);
    transform: scale(1.3);
  }

  .modal-body {
    padding: 2rem 2.2rem 2.4rem;
  }

  .modal-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--celeste);
    margin-bottom: 0.7rem;
    display: block;
  }

  .modal-meta {
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 900;
    color: var(--blanco);
    line-height: 1.15;
    margin-bottom: 1.1rem;
  }

  .modal-text {
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
  }

  .modal-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    margin: 0.2rem 0 1.2rem;
  }

  .modal-video-wrap iframe,
  .modal-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .modal-share-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.14);
  }

  .modal-share-btn {
    border: 1px solid rgba(123,204,232,0.4);
    background: rgba(123,204,232,0.14);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    cursor: pointer;
  }

  .modal-share-btn:hover {
    background: rgba(123,204,232,0.28);
  }

  .modal-share-status {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
  }

  .modal-no-image {
    min-height: 220px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.72);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10,20,50,0.75);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--blanco);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
    z-index: 10;
  }

  .modal-close:hover {
    background: rgba(255,255,255,0.25);
  }

  .valores-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  @media (min-width: 700px) {
    .valores-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (min-width: 1000px) {
    .valores-grid { grid-template-columns: 1fr 1fr 1fr; }
  }

  .valor-card {
    background: var(--blanco);
    border: 1px solid rgba(14,165,233,0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s, border-color 0.3s;
  }

  .valor-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(14,165,233,0.12);
    border-color: var(--azul);
  }

  .valor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--azul), var(--celeste));
  }

  .valor-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(14,165,233,0.06);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .valor-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .valor-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
  }

  .valor-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
  }

  .impulso {
    background: linear-gradient(135deg, var(--azul-oscuro), var(--azul));
    position: relative;
    overflow: hidden;
  }

  .impulso::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  }

  .impulso-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    position: relative;
  }

  @media (min-width: 800px) {
    .impulso-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .impulso-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .impulso-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .impulso-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--celeste);
    line-height: 1;
    margin-bottom: 0.7rem;
  }

  .impulso-label {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .equipo {
    background: var(--gris-claro);
  }

  .equipo-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    align-items: center;
  }

  @media (min-width: 900px) {
    .equipo-layout {
      grid-template-columns: 1.1fr 0.9fr;
    }
  }

  .equipo-photo-wrap {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .equipo-photo-wrap.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .equipo-photo {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 3px solid rgba(123,204,232,0.35);
    box-shadow: 0 20px 60px rgba(14,165,233,0.18);
    display: block;
    object-fit: contain;
    object-position: center;
    min-height: 0;
    max-height: min(70vh, 520px);
    background: linear-gradient(160deg, rgba(14,165,233,0.08) 0%, rgba(123,204,232,0.18) 100%);
  }

  .equipo-fallback {
    width: 100%;
    min-height: 320px;
    border-radius: 18px;
    background: linear-gradient(160deg, var(--azul) 0%, var(--azul-oscuro) 100%);
    border: 3px solid rgba(123,204,232,0.35);
    box-shadow: 0 20px 60px rgba(14,165,233,0.18);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .equipo-fallback strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.6rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
  }

  .equipo-fallback span {
    margin-top: 1rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.6;
  }

  .equipo-copy {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .equipo-copy.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .equipo-copy p {
    font-size: 1rem;
    line-height: 1.85;
    color: #4A5568;
    margin-bottom: 1.2rem;
  }

  .equipo-note {
    background: var(--blanco);
    border-left: 4px solid var(--celeste);
    border-radius: 10px;
    padding: 1.25rem 1.3rem;
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.7;
    box-shadow: 0 14px 40px rgba(14,165,233,0.07);
  }

  .equipo-note code {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: var(--azul-oscuro);
  }

  .acciones {
    background: var(--gris-claro);
  }

  .acciones-list {
    display: grid;
    gap: 3px;
  }

  .accion-row {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .accion-row.visible {
    opacity: 1;
    transform: translateX(0);
  }

  @media (min-width: 760px) {
    .accion-row {
      flex-direction: row;
      align-items: stretch;
    }
  }

  .accion-num {
    background: var(--azul);
    color: var(--blanco);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
  }

  .accion-row:nth-child(even) .accion-num {
    background: var(--celeste);
    color: var(--negro);
  }

  .accion-content {
    background: var(--blanco);
    padding: 1.8rem 2rem;
    flex: 1;
  }

  .accion-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--azul-oscuro);
    margin-bottom: 0.4rem;
  }

  .accion-content p {
    font-size: 0.95rem;
    color: #5A6A7A;
    line-height: 1.7;
  }

  .cta-final {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    content: 'NNGG';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28vw;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
  }

  .cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4.3rem);
    font-weight: 900;
    color: var(--blanco);
    line-height: 1.1;
    margin-bottom: 1.4rem;
    position: relative;
  }

  .cta-final p {
    color: rgba(255,255,255,0.8);
    font-size: 1.08rem;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
  }

  .cta-group {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.05rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  }

  .cta-btn-primary {
    background: var(--celeste);
    color: var(--negro);
    box-shadow: 0 8px 30px rgba(123,204,232,0.3);
  }

  .cta-btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--blanco);
    background: rgba(255,255,255,0.05);
  }

  .cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .cta-btn-primary:hover {
    box-shadow: 0 16px 50px rgba(123,204,232,0.45);
  }

  .cta-btn-secondary:hover {
    background: var(--blanco);
    color: var(--azul-oscuro);
  }

  footer {
    background: var(--azul-oscuro);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    line-height: 1.7;
  }

  footer strong { color: rgba(255,255,255,0.8); }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
  }

  .valor-card:nth-child(2) { transition-delay: 0.08s; }
  .valor-card:nth-child(3) { transition-delay: 0.16s; }
  .valor-card:nth-child(4) { transition-delay: 0.24s; }
  .valor-card:nth-child(5) { transition-delay: 0.32s; }
  .valor-card:nth-child(6) { transition-delay: 0.40s; }

  .impulso-card:nth-child(2) { transition-delay: 0.08s; }
  .impulso-card:nth-child(3) { transition-delay: 0.16s; }
  .impulso-card:nth-child(4) { transition-delay: 0.24s; }

  .accion-row:nth-child(2) { transition-delay: 0.07s; }
  .accion-row:nth-child(3) { transition-delay: 0.14s; }
  .accion-row:nth-child(4) { transition-delay: 0.21s; }

  @media (max-width: 700px) {
    body > nav {
      padding: 0.9rem 1rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-brand {
      font-size: 0.95rem;
    }

    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .nav-actions {
      width: 100%;
      justify-content: flex-start;
      display: none;
      flex-direction: column;
      padding-top: 0.5rem;
    }

    body > nav.menu-open .nav-actions {
      display: flex;
    }

    .nav-link {
      width: 100%;
      text-align: center;
    }

    .auth-menu {
      width: 100%;
      justify-content: center;
    }

    .auth-menu-button {
      width: 100%;
      border-radius: 12px;
      justify-content: center;
      padding: 0 0.9rem;
      gap: 0.7rem;
    }

    .auth-menu-button::after {
      content: 'Cuenta';
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .auth-menu-panel {
      position: static;
      min-width: 100%;
      margin-top: 0.45rem;
    }
  }

  /* Portada: lenguaje visual nocturno y de producto digital. */
  body {
    font-family: 'Outfit', 'Barlow', sans-serif;
    background-color: #020b14;
    background-image: radial-gradient(circle at 50% 8%, #071e36 0%, #020b14 62%);
    color: #f8fafc;
  }

  body::before {
    z-index: -1;
    opacity: 0.58;
    background-image: radial-gradient(rgba(14,165,233,0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
  }

  .hero {
    background:
      radial-gradient(circle at 78% 20%, rgba(14,165,233,0.16), transparent 24%),
      radial-gradient(circle at 18% 78%, rgba(0,86,163,0.2), transparent 30%),
      linear-gradient(180deg, rgba(7,30,54,0.72), rgba(2,11,20,0.98));
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, #ad1519 0 33%, #fabd00 33% 66%, #ad1519 66%) 1;
  }

  .hero::after {
    background: #020b14;
  }

  .hero-badge {
    background: rgba(14,165,233,0.09);
    border-color: rgba(14,165,233,0.28);
    color: #7dd3fc;
  }

  .hero-logo {
    font-family: 'Outfit', 'Barlow', sans-serif;
    color: rgba(248,250,252,0.56);
  }

  .hero h1 span,
  .section-eyebrow,
  .noticia-kicker {
    color: #0ea5e9;
  }

  .hero h1,
  .section-title,
  .valor-title,
  .accion-content h3 {
    font-family: 'Outfit', 'Barlow', sans-serif;
  }

  .hero-sub,
  .noticia-date {
    color: #94a3b8;
  }

  .hero-cta-primary,
  .cta-btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0056a3 100%);
    color: #f8fafc;
    box-shadow: 0 12px 30px rgba(14,165,233,0.24);
  }

  .hero-cta-secondary,
  .cta-btn-secondary {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.045);
    color: #cbd5e1;
    backdrop-filter: blur(10px);
  }

  .section,
  #valores,
  .equipo,
  .acciones {
    background: #020b14;
  }

  .section-title {
    color: #f8fafc;
  }

  .section-eyebrow::before {
    background: #0ea5e9;
  }

  .valor-card {
    background: rgba(8,24,43,0.7);
    border-color: rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.24), inset 0 1px 1px rgba(255,255,255,0.04);
  }

  .valor-card:hover {
    border-color: rgba(14,165,233,0.32);
    box-shadow: 0 25px 60px rgba(0,86,163,0.24), inset 0 1px 1px rgba(255,255,255,0.08);
  }

  .valor-title {
    color: #f8fafc;
  }

  .valor-text,
  .equipo-copy p,
  .equipo-note,
  .accion-content p {
    color: #94a3b8;
  }

  .valor-num {
    color: rgba(14,165,233,0.1);
  }

  .equipo-note,
  .accion-content {
    background: rgba(8,24,43,0.7);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 55px rgba(0,0,0,0.2);
  }

  .accion-content h3 {
    color: #f8fafc;
  }

  footer {
    background: #020b14;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* La portada de noticias comparte el cristal y el contraste del nuevo hero. */
  .noticias {
    padding-inline: clamp(0.4rem, 2vw, 1.2rem);
  }

  .noticias-shell {
    background: rgba(8,24,43,0.72);
    border-color: rgba(255,255,255,0.09);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .noticias-shell::before {
    background:
      radial-gradient(circle at 86% 8%, rgba(14,165,233,0.15), transparent 26%),
      radial-gradient(circle at 10% 90%, rgba(0,86,163,0.18), transparent 28%);
  }

  .noticias-header .section-title {
    font-family: 'Outfit', 'Barlow', sans-serif;
    letter-spacing: -0.04em;
  }

  .news-view-all,
  .news-refresh {
    background: rgba(255,255,255,0.045);
    border-color: rgba(255,255,255,0.14);
    color: #cbd5e1;
    backdrop-filter: blur(10px);
  }

  .news-view-all:hover,
  .news-refresh:hover {
    background: rgba(14,165,233,0.14);
    border-color: rgba(14,165,233,0.42);
    color: #f8fafc;
  }

  .noticia-card {
    background: rgba(255,255,255,0.045);
    border-color: rgba(255,255,255,0.1);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22), inset 0 1px 1px rgba(255,255,255,0.035);
  }

  .noticia-card:hover {
    border-color: rgba(14,165,233,0.42);
    box-shadow: 0 22px 48px rgba(0,86,163,0.28), inset 0 1px 1px rgba(255,255,255,0.08);
  }

  .noticia-image {
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease;
  }

  .noticia-card:hover .noticia-image {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
  }

  .noticia-title {
    font-family: 'Outfit', 'Barlow', sans-serif;
    font-weight: 700;
  }


