body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

header {
    /*background-color: #D6AF36;
    color: #fff;
    background-image: url('images/PORTADA.WEB.VILLEME.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
}

header .logo {
    width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.5rem;
}

.espacio_header{
    padding-top: 8rem !important;
    padding-bottom: 15rem !important;   
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando la animación */
.fadeInDown {
    animation: fadeInDown 1s ease-in-out;
}


/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando las animaciones */
.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

/* Ocultar las tarjetas inicialmente */
.fade-in-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Mostrar la tarjeta cuando entra en la vista */
.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}

#about h2, #services h2, #tools h2, #contact h2 {
    font-size: 2rem;
    color: #333;
}

#services .card, #tools .card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #D6AF36;
    color: #fff;
}
