
    /* ── HEADER ── */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 65px;
      background-color: var(--azul-oscuro);
        border-bottom: 1px solid #3d2060;
    }

:root {
    --azul-oscuro: #2a1540;
    --azul-claro: #7f7af3;
    --cyan: #5ce0e5;
} 

.logo {
    text-decoration: none;
}
    
.logo-texto {
      font-size: 18px;
      font-weight: 600;
      color: #f1f1f1;
      letter-spacing: 0.02em;
}

.logo-con {
  font-weight: 700;        /* bold */
  font-style: normal;
  color: var(--azul-claro);
}

.logo-tigo {
  font-weight: 300;        /* light */
  font-style: italic;
  color: var(--azul-claro);
}
 
    /* ── NAVEGACIÓN ── */
    nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }
 
    nav a {
      text-decoration: none;
      border: 1px solid transparent;
      font-size: 15px;
      color: #b0b0b0;
      padding: 8px 16px;
      border-radius: 6px;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    nav a:hover {
        border-color: var(--cyan);
        color: var(--cyan);
        background-color: transparent;
    }
 
    nav a.activo {
      color: #ffffff;
      font-weight: 500;
    }

/* ── HERO ── */
.hero {
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-titulo {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--azul-claro);
}

.hero-titulo .logo-con {
    color: var(--azul-claro);
    font-weight: 700;
}

.hero-titulo .logo-tigo {
    color: var(--azul-claro);
    font-weight: 300;
    font-style: italic;
}

.hero-subtitulo {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background-color: var(--cyan);
    color: #1a1a2e;
    font-size: 17px;
    font-style: italic;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--azul-claro);
    color: #ffffff;
    transform: scale(1.04);
}    

/* ── Fondo general ── */
body {
    background-color: #f1edea;
    background-image: url('fondo.jpg');
    background-repeat: repeat;
    background-size: 100%;
}

/* ── Hero con imagen anclada ── */
.hero {
    position: relative;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);  /* centra horizontalmente */
    width: 1200px;                /* tamaño fijo, nunca se achica */
    pointer-events: none;
    z-index: 0;
}

.hero-bg img {
    width: 1200px;    /* fijo, igual que el contenedor */
    display: block;
}

.hero-contenido {
    position: relative;
    z-index: 1;
}


/* ── RECUADRO INFO ── */
.recuadro-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-claro);
    border-radius: 16px;
    margin: 0 auto 50px auto;
    max-width: 860px;
    padding: 10px 30px;
    gap: 0;
}

.recuadro-col {
    flex: 1;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.recuadro-divisor {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

 body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f1edea;
    color: #222;
    text-align: center;
}

.container-principal {
    max-width: 1200px;       
    margin: 0 auto;          
    padding: 0 40px;         
    box-sizing: border-box; 
}

/* Card centrada */
.contenedor {
    width: 250px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn-rotulo {
    display: inline-block;
    background-color: var(--cyan);
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-rotulo:hover {
    background-color: var(--azul-claro);
    color: #ffffff;
    transform: scale(1.04);
}

.grilla {
    display: grid;
    grid-template-columns: repeat(3, 250px); 
    gap: 120px;
    margin: 40px auto;  
    width: fit-content; 
}

/* Imagen circular */
.contenedor img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top; /* probá también center, 30% 20%, etc */
}
/* Nombre */
h2 {
    margin: 5px 0;
    text-align: center;
    font-weight: bold;
    margin: 20px auto 24px auto; 
}

.datos { margin: 5px 0;
    text-align: left;
    font-weight: bold;
    padding: 0 24px;
    margin: 20px 0 24px 0;
    box-sizing: border-box;  }

.subtitulo{
    text-align: center;
}


/* Texto materias */
p {
    margin: 5px 0 15px;
    color: #555;
}

/* Estilos para la lista de datos académicos */
.lista-academica {
    list-style: none;      
    padding: 0 24px;
    margin: 20px 0 40px 0; 
    text-align: left;     
    max-width: 900px;      
    box-sizing: border-box;
    
    /*  EL SCROLLahora figura eliminado === */
    max-height: none;   
    overflow: visible;  
}

.lista-academica li {
    background-color: transparent; 
    padding: 6px 0;               
    font-size: 15px;              
    color: #333;                  
    border-radius: 0;             
    cursor: default;              
    transition: none;             
}

.lista-academica li:hover {
    background-color: transparent;
    color: #333;
    font-weight: normal; 
    cursor: default;
}


.texto-destacado {
    display: block;         
    max-width: 900px;         
    margin: 0 auto 40px auto; 
    text-align: center;       
    line-height: 1.6;        
    font-size: 16px;         
    padding: 0 20px;
}

/* Subtítulo */
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}


/* Lista */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

/* Items */
li {
    background-color: #f8f9fa;
    margin: 5px 0;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover */
li:hover {
    background-color: #00bfff; /* celeste */
    color: white;
    font-weight: bold; /* ← esto agrega el bold */
    cursor: pointer;
}
/* Scroll prolijo */
ul::-webkit-scrollbar {
    width: 6px;
}

ul::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

.botones{
    margin-top: 30px;
    display: flex;
    justify-content: center; /* CENTRA */
    gap: 20px;
}

.btn{
    background: #004c9e;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: bold;
}

.btn:hover{
    background: #444;
    transform: scale(1.05);
}
.contenedor{
    transition: 0.3s ease;
}

.contenedor:hover{
    transform: translateY(-5px);
}

.legal {
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18ch, 1fr));
    gap: 1.5rem 3rem;
    color: var(--azul-claro);
    text-align: left;
    background-color: var(--azul-oscuro);
}

.legal p {
    color: #ffffff;
}

footer {
    background-color: var(--azul-oscuro);
    padding: 0px 2.5rem 30px;
    font-size: 14px;
    color: #e3e3e3;
    line-height: 1.6;
    text-align: center;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    color: #e3e3e3;
    line-height: 1.6;
    text-align: center;
}

/* Rótulos personales */
.rotulo {
    min-height: 100vh;
    padding: 1px 20px 40px;
    background-color: transparent;
    box-sizing: border-box;
}

.rotulo-contenedor {
    width: 360px;
    max-width: 100%;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.rotulo img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.rotulo h2 {
    margin: 10px 0;
}

.rotulo p {
    margin: 5px 0 15px;
    color: #555;
}

.rotulo h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.rotulo ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
}

.rotulo li {
    background-color: transparent;
    margin: 4px 0;
    padding: 2px 0;
    border-radius: 0;
    font-size: 14px;
    transition: none;
}

.rotulo li:hover {
    background-color: transparent;
    color: inherit;
    font-weight: normal;
    cursor: default;
}

.rotulo ul::-webkit-scrollbar {
    width: 6px;
}

.rotulo ul::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

.rotulo footer {
    margin-top: 60px;
}

/* Paginas de la navegacion */
.pagina-imagen {
    width: min(1200px, calc(100% - 40px));
    margin: 40px auto;
    text-align: center;
}

.pagina-imagen h1 {
    margin: 0 0 24px;
    font-size: 32px;
}

.pagina-imagen img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 32px;
}
