/* Animazioni aggiuntive e stili per rendere il sito più incisivo */

/* Pulsantini animati */
.pulse-animation {
    animation: pulse-btn 1.5s infinite;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(118, 183, 41, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(118, 183, 41, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(118, 183, 41, 0);
    }
}

/* Badge di risparmio */
.savings-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e1018d;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
    transform: rotate(10deg);
    z-index: 10;
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(10deg); }
    50% { transform: rotate(-5deg); }
}

/* Modifiche al price tag */
.price-tag {
    position: relative; /* Per posizionare il badge */
}

.price-tag:after {
    content: 'ESCLUSIVA';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e1018d;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Stile migliorato per i form */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-group input {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(118, 183, 41, 0.25);
}

/* Effetti hover per i benefit card */
.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-card .icon {
    transition: all 0.5s ease;
}

.benefit-card:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

/* Miglioramento testimonianze */
.testimonial {
    position: relative;
}

.testimonial:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--card-bg);
}

/* Effetti hover sui bottoni */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-secondary {
    font-weight: 700;
    letter-spacing: 0.5px;
}
