/* General */
body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(213, 224, 233)!important; 
} 

.navbar {
    background-color: rgb(213, 224, 233)!important;     
}

.navbar-brand img {
    background-color: rgb(213, 224, 233)!important; 
    height: auto;
    width: auto;
}

.hero-section {
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-section div {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

/* Secciones */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Tarjetas de servicios */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Beneficios */
.list-group-item {
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

/* Formulario de contacto */
form input, form textarea {
    border-radius: 10px;
    border: 1px solid #ced4da;
}

form button {
    border-radius: 10px;
}

/* Botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}