/* ============================================
   HERO DINAMICO – FAISA-CONFAIL
============================================ */
.fc-hero {
    width: 100%;
    height: clamp(160px, 30vw, 260px); /* ← scala fluida: 160px mobile → 260px desktop */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.fc-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    /* 👇 Spazio laterale intelligente */
    padding: 0 clamp(20px, 5vw, 60px);
    /* 👇 Limita larghezza su schermi grandi */
    margin: 0 auto;
    animation: heroFade 0.8s ease-out forwards;
    opacity: 0;
}
.fc-hero-title {
    font-size: clamp(20px, 5vw, 38px); /* ← 20px mobile → 38px desktop */
    font-weight: 700;
    margin-top: 12px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
/* Icona */
.fc-hero-icon i {
    font-size: clamp(30px, 7vw, 52px); /* ← 30px mobile → 52px desktop */
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* Animazione contenitore */
@keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Icona animata */
.animate-hero-icon {
    animation: heroIconBounce 1.2s ease-out;
}
@keyframes heroIconBounce {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}
.fc-hero-subtype {
    font-size: clamp(13px, 2.5vw, 20px); /* ← 13px mobile → 20px desktop */
    margin-top: 6px;
    opacity: 0.85;
    letter-spacing: 1px;
    text-transform: uppercase;
}
