
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #111B21;
    color: #E9EDEF;
    line-height: 1.6;
}

.navbar{
      border-bottom: 2px solid #25D366;
}

header {
    background-color: #202C33;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #25D366;
}

.Titulos {
    background-color: #202C33;
    padding: 20px;
    text-align: center;
    
}

.Titulos-solos {
    background-color: transparent;
    padding: 20px;
    text-align: center;

}

header h1 {
    color: #25D366;
    font-size: 2.2rem;
}


nav {
    background-color: #202C33;
    padding: 10px 0;
}



nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
}

nav a{
    text-decoration: none;
    color: #25D366;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.no-hover:hover {
    background-color: transparent;
    color: #25D366;
}


.nav ul {
    text-decoration: none;
    color: #E9EDEF;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #25D366;
    color: #111B21;
    padding: 8px 14px;
    transition: transform 0.2s, background 0.3s;
    
}

.contenedor-bio {
    display: flex;          /* Alinea los hijos en una fila */
    align-items: top;    /* Centra la imagen y el texto verticalmente */
    gap: 30px;              /* Crea el espacio entre la foto y el texto */
    padding: 20px;
     /* El color oscuro de tu fondo */
    border-radius: 10px;
}

.texto-bio {
    flex: 1;                /* Hace que el texto use todo el espacio restante */
    color: white;           /* Color de fuente */
}

main {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

section {
    background-color: #202C33;
    margin-bottom: 30px;
    margin-top: 60px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);

}

section h2 {
    color: #25D366;
    margin-bottom: 15px;
    border-bottom: 1px solid #128C7E;
    padding-bottom: 5px;
}
.section-tarjeta {
    display: flex;
    flex-direction: column;
    align-items: center; /* centra imagen y texto */
    gap: 10px;
    background-color: #202C33;
    border-radius: 10px;
    padding: 20px;
    
}

.info-imagen {
    background-color: #111B21;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.info-imagen h5 {
    margin: 0;
    color: #25D366;
    font-size: 1.1rem;
}

.info-imagen p {
    margin: 0;
    font-size: 0.9rem;
    color: #8696A0;
}





.submenu {
    list-style: none;
}

.submenu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111B21;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: transform 0.2s, background 0.3s;
}

.submenu li:hover {
    background-color: #1F2C34;
    transform: scale(1.01);
}


.submenu a {
    color: #25D366;
    font-weight: bold;
    text-decoration: none;
}

.submenu a:hover {
    text-decoration: underline;
}


.descripcion {
    color: #8696A0;
    font-size: 0.9rem;
}
.card-body{
    background-color: #202C33;
    
    color: #E9EDEF;
    border-radius: 30px,30px,0px,0px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.card h5 {
    color: #25D366;
    margin-bottom: 10px;
}

footer {
    background-color: #202C33;
    text-align: center;
    padding: 15px;
    border-top: 2px solid #25D366;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
}
    


footer p {
    color: #8696A0;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;

}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .submenu li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
