/* Estilos principales para GEOLAHV */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

header {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

nav {
    background-color: #f5f5dc; /* crema */
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: bold;
}

nav a {
    text-decoration: none;
    color: black;
    padding: 10px;
}

nav a:hover {
    background-color: black;
    color: white;
    border-radius: 5px;
}

section {
    padding: 40px 20px;
}

.consultoria, .academica, .social {
    margin-bottom: 40px;
}

h2 {
    border-left: 10px solid black;
    padding-left: 10px;
    color: #333;
}

.consultoria p, .academica p, .social p {
    line-height: 1.6;
}

.consultoria img, .social img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border: 2px solid #000;
}

.video-preview {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video-preview video {
    width: 100%;
    max-width: 500px;
    border: 2px solid #000;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
}

footer a {
    color: #f5f5dc;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .video-preview {
        flex-direction: column;
        align-items: center;
    }
}
