:root {
    --color-primary: #2c3e50;
    --color-secondary: #278eae;
    --color-light: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
}

.hero-section {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/fondo.webp'); */
    background-color: #2c3e50;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.btn-primary {
    background-color: var(--color-secondary);
    border: none;
    padding: 10px 25px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.testimonial-card {
    border-left: 4px solid var(--color-secondary);
}

footer {
    background-color: var(--color-primary);
    color: white;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
}