/* Colores de referencia: Verde principal (#4CAF50), Negro */

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Fondo claro general */
}

/* Estilos de la Sección de Presentación (Hero) */
.hero-section {
    background-color: #ffffff; /* Fondo oscuro (negro) para la sección principal */
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Color del texto principal para el verde del logo */
.text-success {
    color: #4CAF50 !important;
}

#servicios {
    background-color: #388E3C;
}


/* Estilo para los botones principales */
.btn-success {
    background-color: #4CAF50;
    border-color: #4CAF50;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #388E3C; /* Un verde un poco más oscuro al pasar el ratón */
    border-color: #388E3C;
}

.btn-warning {
    background-color: #ffc107; /* Amarillo para destacar el CTA de WhatsApp */
    border-color: #ffc107;
    color: #333;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

/* Estilo para los íconos sociales en el footer */
.social-icon:hover {
    color: #4CAF50 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Estilo del Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Color oficial de WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #1eaa5b;
    transform: scale(1.05);
}

.whatsapp-float i {
    margin: 0;
}