* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5; /* Fondo gris claro elegante */
}

.section {
    padding: 60px 20px;
    text-align: center;
}

h1, h2 {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #222;
}

h2 {
    font-size: 1.8em;
    color: #444;
}

p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

/* Recursos (CV y vídeo) */
.resources-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #B57D4A; /* Color principal de tu logo */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #E2BE7A; /* Color secundario de tu logo */
}

.video-container {
    max-width: 600px;
    width: 100%;
}

.video-container iframe {
    width: 100%;
    height: 315px;
}

/* Logos */
.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.logos-container img {
    max-width: 150px;
    height: auto;
    background-color: #fff; /* Fondo blanco por si los logos no son transparentes */
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.logos-container img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 20px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .video-container iframe {
        height: 200px;
    }
    .logo {
        max-width: 100px;
    }
}