/* Animazioni personalizzate per un tocco premium */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* Dimensioni fisse per i box delle icone */
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    background: transparent !important;
    border: 1px solid var(--color-primary);
}

.icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Colori e trasparenze personalizzati equivalenti a Tailwind */
.bg-blue-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

.text-blue-custom {
    color: #0d6efd;
}

.bg-emerald-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.text-emerald-custom {
    color: #198754;
}

.bg-amber-soft {
    background-color: rgba(255, 193, 7, 0.15);
}

.text-amber-custom {
    color: #ffc107;
}

.bg-indigo-soft {
    background-color: rgba(102, 16, 242, 0.1);
}

.text-indigo-custom {
    color: #6610f2;
}

.bg-teal-soft {
    background-color: rgba(32, 201, 151, 0.1);
}

.text-teal-custom {
    color: #20c997;
}

.bg-rose-soft {
    background-color: rgba(220, 53, 69, 0.1);
}

.text-rose-custom {
    color: #dc3545;
}

/* Stile Card Larga Scusa */
.card-dark-gradient {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid #334155;
}

.icon-circle-glass {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

/* Blob di sfondo decorativi */
.bg-blob-1 {
    position: absolute;
    top: -7%;
    right: -43rem;
    width: 58%;
    height: 43%;
    background-color: #00577c;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(10rem);
}

.bg-blob-2 {
    position: absolute;
    top: 22%;
    left: -54rem;
    width: 70%;
    height: 53%;
    background-color: #00577c;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(9rem);
}

.bg-blob-3 {
    position: absolute;
    bottom: 0;
    right: -54rem;
    width: 70%;
    height: 53%;
    background-color: #00577c;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(9rem);
}

.infografico-title {
    font-size: 1.191rem;
    font-weight: 700 !important;

}

@media (min-width: 1200px) and (max-width: 1399px) {
    .icon-box {
        width: 3rem;
        height: 3rem;
    }

    .card-hover {
        padding: 1.5rem 1rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .infografico .col-lg-4 {
        width: 50%;
    }
}

@media (min-width: 576px) and (max-width: 782px) {
    .infografico .col-md-6 {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .bg-blob-2 {
        top: 9%;
        left: -10%;
        width: 70%;
        height: 74%;
    }

    .infografico-title {
        font-size: 1rem;
    }

    .about-area .info h2 {
        margin-bottom: 15px;
        font-size: 35px;
        text-align: center;
    }
}