/* Estilos Personalizados */
.welcome {
    background: url('img/bk6.jpeg') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
}

.welcome h1 {
    animation: slideInDown 2s ease-in-out;
}

.service-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#subscribe-btn {
    border-radius: 50px;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
}

#subscribe-btn:hover {
    background-color: #ffdd57;
    color: #000;
}

