:root {
    --azul-primario: #0b2239;
    --azul-osc: #081a2c;
    --dorado: #c1a15e;
    --gris-fondo: #f5f6f8; /* gris suave general */
    --gris-seccion: #eef1f5; /* gris para secciones claras */
}

/* Fondo general */
html, body {
    background: var(--gris-fondo);
    color: #111;
    scroll-behavior: smooth;
}

/* NAVBAR */
.bg-nav {
    background: #0b2239; /* color sólido, sin transparencia */
    backdrop-filter: none; /* elimina el blur */
}


/* Ítems del menú */
.navbar .nav-link {
    color: #e7edf5;
    font-size: 1.1rem; /* más grande */
    font-weight: 700; /* negrita */
    transition: transform .15s ease, color .15s ease;
}

    .navbar .nav-link:hover {
        color: #fff;
        transform: scale(1.06);
    }

/* LOGO MÁS GRANDE */
.brand-logo {
    height: 64px; /* antes 36–44px */
    width: auto;
    transition: all .2s ease;
}

@media (max-width: 992px) {
    .brand-logo {
        height: 52px; /* responsive */
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    background: url('../img/fotoDFondo.jpeg') center/cover no-repeat fixed;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8,26,44,.55), rgba(8,26,44,.75));
    }

    .hero .inner {
        position: relative;
        z-index: 1;
    }

.lead-hero {
    max-width: 700px;
    color: #e0e6ee;
}

/* Botón primario */
.btn-primario {
    background: var(--dorado);
    border: none;
    color: #111;
}

    .btn-primario:hover {
        background: #b5964d;
        color: #111;
    }

/* Secciones */
.section-title {
    color: var(--azul-primario);
    letter-spacing: .3px;
}

.divider {
    height: 2px;
    width: 80px;
    background: var(--dorado);
    margin: 1rem 0 2rem;
}

/* Para que el navbar fijo no tape los títulos */
section[id], header[id] {
    scroll-margin-top: 84px;
}

.content-wrapper {
    padding-top: 72px;
}

/* Footer */
.footer {
    background: var(--azul-osc);
    color: #cbd5e1;
}

/* Tarjetas */
.card-ghost {
    border: 1px solid rgba(12,18,28,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

/* Fondos alternados */
.bg-light {
    background-color: var(--gris-seccion) !important;
}

/* ---- FOTOS CIRCULARES PARA INTEGRANTES ---- */
.foto-integrante {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%; /* círculo perfecto */
    border: 3px solid var(--dorado);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .2s ease;
}

    .foto-integrante:hover {
        transform: scale(1.05);
    }

/* Scrollbar elegante y minimalista (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b2239; /* azul sobrio */
}

::-webkit-scrollbar-thumb {
    background: #c1a15e; /* el dorado que ya usás */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
        background: #b5964d;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #c1a15e #0b2239;
}

/* Contacto pro */
.contact-list {
    display: grid;
    gap: 14px;
  }
  
  .contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(193,161,94,0.12);
    border: 1px solid rgba(193,161,94,0.35);
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
  }
  
  .contact-label {
    font-size: 0.85rem;
    letter-spacing: .2px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .contact-value {
    font-size: 1rem;
    color: #111;
  }
  
  .contact-link {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid rgba(193,161,94,0.6);
  }
  
  .contact-link:hover {
    color: #0b2239;
    border-bottom-color: rgba(193,161,94,1);
  }
  
.areas-intro {
    max-width: 700px;              
    margin-bottom: 3rem;
  }
  
 
  .areas-intro p {
    font-size: 1.25rem;            
    line-height: 1.7;
    color: #111;
    text-align: justify;
    hyphens: auto;
    margin-bottom: 1.25rem;
  }

  .navbar .nav-link {
    font-weight: normal;
}

.hero {
    min-height: 80vh;          /* que el hero sea alto */
    display: flex;
    align-items: center;      /* centra verticalmente */
}

.hero h1 {
    font-size: 3.2rem;        /* título más grande */
    font-weight: 600;
}

.lead-hero {
    font-size: 1.4rem;        /* texto más grande */
    line-height: 1.6;
    max-width: 750px;         /* que no quede tan ancho */
}

#areas p {
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}
