/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a192f;
    color: #ccd6f6;
}

/* Encabezado */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #112240;
    border-bottom: 4px solid #3a86ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
}

h1 {
    font-size: 28px;
    color: #3a86ff;
    text-transform: uppercase;
    font-weight: 700;
}

/* Navegacion */
nav a {
    text-decoration: none;
    color: #ccd6f6;
    margin: 0 15px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #3a86ff;
}

/* Seccion principal */
.portada {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: linear-gradient(135deg, #112240 0%, #3a86ff 100%);
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    margin: 20px;
    border-radius: 10px;
    color: #fff;
}

.portada h2 {
    font-size: 32px;
    font-weight: 600;
}

.portada label {
    font-size: 18px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
}

/* Secciones generales */
section {
    padding: 40px;
    text-align: center;
}

section label {
    font-size: 18px;
    color: #8892b0;
}

main {
    padding-top: 100px;
}

/* Responsividad */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 10px;
    }
}
/* Estilo para secciones de contenido */
.contenido {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contenido h2 {
    color: #3a86ff;
    font-size: 26px;
    margin-bottom: 15px;
}

.contenido p {
    font-size: 18px;
    color: #ccd6f6;
    line-height: 1.6;
}

/* Seccion de valores */
.valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.valor {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.valor h3 {
    font-size: 20px;
    color: #3a86ff;
    margin-bottom: 10px;
}

.valor p {
    font-size: 16px;
    color: #ccd6f6;
}

/* Responsividad */
@media (max-width: 768px) {
    .valores {
        flex-direction: column;
        align-items: center;
    }
}
.proyectos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}

.proyecto-card {
    background: #112240;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proyecto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.proyecto-card h3 {
    color: #3a86ff;
    margin-bottom: 10px;
}

.proyecto-card p {
    color: #ccd6f6;
    font-size: 16px;
}