/* ==========================================================================
   REFERER FLOATING BUTTON
   ========================================================================== */
.referer-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.referer-float a {
    display: flex;
    align-items: center;
    background-color: #F7E950;
    color: #673E1E;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 280px;
}

.referer-float a:hover {
    background-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.referer-float img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

/* Estilos para el precio en las tarjetas de servicio */
.price {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #60955B;
    text-align: center;
    margin: 10px 0;
}

.service-card.featured .price {
    color: white;
}

/* Estilos para las notas de servicio */
.service-notes {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-notes p {
    margin-bottom: 0.5rem;
}

/* Estilos para los botones CTA con borde */
.cta-button {
    border: 2px solid #1C1C1A;
}

/* Media queries para el botón de referidos en dispositivos móviles */
@media (max-width: 768px) {
    .referer-float {
        bottom: 20px;
        left: 20px;
    }
    
    .referer-float a {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .referer-float img {
        width: 24px;
        height: 24px;
    }
}

/* Actualización para el grid de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}