/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

/* PRESENTACIÓN */

body {
    background-color: #0c1b2a;
    color: #ededed
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #e11d48cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
    background-color: #fff;
    padding: 3px;
    border-radius: 5px;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
}

.Home {
    display: flex;
    flex-direction: row; /* ✅ lado a lado */
    justify-content: space-between;
    align-items: center;
    padding: 6rem 10% 2rem 10%;
    min-height: 100vh;
    gap: 2rem;
    flex-wrap: wrap; /* por si se adapta a móvil */
}

.Home-foto img {
    width: 350px;
    height: auto;
    border-radius: 15px;
    border: 3px solid #2c3e50;
    background-color: #2c3e50;
    padding: 4px;
}

.Home-content {
    max-width: 600px;
}

.Home-content h1 {
    font-size: 56px;
    font-weight: 700;
}

.Home-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

}

.Home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #e11d48;
}

.Home-content p {
    font-size: 16px;
    margin: 20px 0 40px;  /* espacio entre Behance y descripción texto */
}

.Home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #0c1b2a;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    font-size: 19px;
    color: #e11d48;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-box a :hover {
    color: #e11d48
}

.btn-box a:nth-child(1)::before {
    color: #0c1b2a;
}

.btn-box a:nth-child(1)::before {
    background: #e11d48;
}



/* BOTÓN BEHANCE */

.boton-behance {
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.boton-behance:hover {
    transform: translateY(-5px);
    background-color: #2c3e50;
    border-color: #e11d48
}

/* BARRA BOCETOS INDIVIDUAL Y WEBAPP CON BOTON DROPDOWN (DESPLAZABLE CON OPCIONES) */

.bocetos-navegacion {
    margin: 2rem auto;
    padding: 0; /* Sirve para darle espacio al contorno dentro del marco de bocetos */
    background-color: #0c1b2a;
    border-top:0;  /* Si queres ponerle bordes arriba */
    border-bottom:0;  /* Si queres ponerle bordes abajo */
    text-align: center;
}

.bocetos-barra {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn { /* Botones Individual y Webapp */
    background-color: #0c1b2a;
    color: #ededed;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #2c3e50;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.dropbtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 12px #2c3e50;
    background-color: #2c3e50;
    color: #e11d48;
    border-color: #e11d48;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0c1b2a;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: #e11d48;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* SECCIÓN INTEGRANTES VM33 */

/* Caja de cada integrante tipo tarjeta */
.integrantes {
    background-color: #0c1b2a;
    padding: 2rem 1rem;
}

.integrantes article {
    background-color: #0c1b2a;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 250px;
    padding: 1rem;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease; /* aplica transición a todo: sombra + movimiento */

}

.integrantes article:hover {  /* efecto de hover luminoso para que resalten los integrantes al pasar el mouse */
    transform: translateY(-5px);
    box-shadow: 0 0 15px #e11d48cc; /* efecto de brillo azul translúcido */
    border: 1px solid #e11d48;
}

/* Imagen dentro del artículo */
.integrantes article img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.integrantes h2 {
    font-size: 28px;
    color: #fff;
    border-bottom: 2px solid #e11d48;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Texto dentro del artículo */

.integrante_texto {
    text-align: center;
}

.integrante_texto h3 {
    font-size: 16px;
    margin-top: 0.8rem;
    font-weight: bold;
    color: #ededed;
}

.integrante_texto p {
    font-size: 14px;
    color: #e11d48;
    margin: 0.2rem 0;
}

.integrante_texto a {
    background-color: #0c1b2a;
    border: #e11d48;
    cursor: pointer;
    border-bottom-style: ridge;
    font-size: 14px;
    color: #ededed;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
}

.integrante_texto a:hover {
    background-color: #2c3e50;
    transform: translateY(-4px);
    box-shadow: 0 0 12px #2c3e50;
    color: #e11d48;
    border-color: #e11d48;
}

.integrantes .contenedora {
    display: flex;
    flex-direction: row;         /* Asegura disposición horizontal */
    justify-content: center;     /* Centra horizontalmente */
    align-items: flex-start;
    flex-wrap: wrap;             /* Permite que se acomoden en varias filas si no entra */
    gap: 2rem;                   /* Espacio entre tarjetas */
    max-width: 1200px;
    margin: 0 auto;              /* Centrado del contenedor */
    padding: 1rem;
}

/* BOTÓN VM33 */

.boton-vm33 {
    text-align: center;
}

.boton-vm33 a {
    display: inline-block;
    background-color: #0c1b2a;
    border: 1px solid #e11d48;
    border-bottom-style: ridge;
    color: #ededed;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.boton-vm33 a:hover {
    background-color: #2c3e50;
    transform: translateY(-4px);
    box-shadow: 0 0 12px #2c3e50;
    color: #e11d48;
    border-color: #e11d48;
}

/* MATERIAS */

.materias-cursadas {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
    background-color: #0c1b2a;
}

.materias {
    background-color: #0c1b2a;
    color: #ededed;
    border: 2px solid #2c3e50;
    border-radius: 15px;
    padding: 2rem;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    text-align: center;
}

.materias h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e11d48;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.materias ul {
    list-style: none; /* elimina los puntos */
    padding: 0;        /* elimina sangrías */
    margin: 0 auto;    /* centra horizontalmente */
    text-align: center; /* centra el texto */
}

.materias ul li {
    margin-bottom: 0.5rem;
    font-size: 16px;
}

/* SECCIÓN DE DATOS ACADÉMICOS */

.datos-academicos {
    background-color: #0c1b2a;
    color: #ededed;
    text-align: center;
    padding: 3rem 1rem;
}

.datos-academicos h2 {
    font-size: 28px;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e11d48;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.datos-academicos h4 {
    font-size: 16px;
    margin-top: 0.5rem;
    color: #ededed;
    font-weight: bold;
}

.datos-academicos img {
    background-color: #fff;      /* fondo blanco */
    padding: 6px;                /* separación interna como en la barra de navegación */
    border-radius: 8px;          /* mismo efecto redondeado */
    border: 2px solid #2c3e50;   /* contorno fino para remarcar sobre fondo blanco */
}

.contenedor-datos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.institucion {
    width: 300px;
    padding: 1.5rem;
    background-color: #0c1b2a;
    border: 2px solid #2c3e50;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.institucion img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.institucion h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: #ededed;
}

.institucion p {
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: #ededed;
}

.institucion a {
    font-size: 14px;
    color: #e11d48;
    text-decoration: none;
    font-weight: bold;
}

.institucion a:hover {
    text-decoration: underline;
}

/* PIE DE PÁGINA */

footer {
    background-color: #e11d48cc; /* Más oscuro que el fondo principal */
    color: #ededed;
    padding: 2rem 1rem;
    border-top: 1px solid #2c3e50;
  }
  
  .footer-contenido {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 1rem;
  }
 