#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #5f9c44;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromRight 0.8s ease-out;
}

#preloader.fade-out {
    animation: slideOutUp 0.8s ease-in forwards;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100vh);
        opacity: 0;
    }
}


.btn-order {
    background-color: #5f9c44;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-order:hover {
    background-color: #3a6827;
    transform: scale(1.05);
}

/* Animación entrada desde la derecha */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50%) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.icon-features-section {
    background-color: #5f9c44;
    padding: 40px 0;
    color: #fff;
}

.feature-icon {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Si es PNG oscuro, para volverlo blanco */
}



.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5f9c44;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #fff;
    color: #fff;
}


/* Título personalizado */
.recomendacion-titulo {
    font-family: 'Gilroy Bold', sans-serif;
    color: #5f9c44;
    font-size: 2rem;
}

/* Fondo de testimonios */
.bg-verde {
    background-color: #5f9c44;
}

/* Fuente regular para párrafos (asegúrate de que esté cargada) */
.bg-verde p {
    font-family: 'Gilroy Regular', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.bg-verde strong {
    font-family: 'Gilroy Bold', sans-serif;
}


.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 18px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    text-decoration: none;
    color: white;
}