/* Smart37 SRL - Custom CSS Styles */

/* Miglioramenti per la sezione EcoVoce */
.pricing-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Stili per gli emoji nei titoli */
.section-title h3:contains("🎯") {
    font-size: 1.3rem;
}

/* Miglioramenti per le feature list */
.pricing-list ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-list ul li:last-child {
    border-bottom: none;
}

/* Hover effects per le service cards */
.service-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Stili per i badge di processo */
.how-work-content h3 span {
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-weight: bold;
}

/* Miglioramenti per il footer */
.footer-contact-info h3 {
    color: #4a90e2;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-title h2 {
        font-size: 2rem;
    }
}

/* Animazioni personalizzate */
@keyframes pulse-smart37 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.export-coaching-step:hover .icon-box {
    animation: pulse-smart37 2s infinite;
}

/* Stili per CTA buttons migliorati */
.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

/* Stili per highlight delle tecnologie */
.pricing-box.highlighted-box {
    border: 2px solid #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}