/* ============================================
 * LANDING PAGE - Stili specifici per landing.html
 * 
 * Questo file contiene le definizioni di layout specifiche
 * per la landing page, separate da main.css per evitare conflitti.
 * ============================================ */

/* Hero Section - Ultra Luxury Velvet Design */
.hero {
    min-height: 100vh;
    background: transparent; /* Usa lo sfondo globale del body (logo) */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
    /* Niente width/max-width qui - box-sizing: border-box gestisce tutto */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem); /* Responsive con clamp */
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive con clamp */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 3px solid transparent;
    background: var(--gradient-golden-rose) border-box;
    padding: 3px;
    box-shadow:
        var(--shadow-luxury),
        var(--glow-golden);
    transition: transform 0.5s ease;
    transform: rotateY(-5deg) rotateX(5deg);
    backface-visibility: hidden;
    position: relative;
    z-index: 1;
    object-fit: contain;
    display: block;
}

/* Mobile: rimuovi perspective e 3D per performance, mantieni qualità visiva */
@media (max-width: 768px) {
    .hero-image-container {
        perspective: none;
        transform-style: flat;
    }
    
    .hero-image {
        transform: none; /* Rimuovi 3D su mobile */
        max-width: 100%;
        box-shadow: var(--shadow-luxury);
    }
    
    .hero {
        perspective: none; /* Rimuovi perspective su mobile */
    }
}

.hero-image:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

@media (max-width: 768px) {
    .hero-image:hover {
        transform: scale(1.02); /* Solo scale su mobile, no 3D */
    }
}

/* Glassmorphism Service Cards */
.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

a.service-card:hover {
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    transition: left 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-golden-rose);
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover::after {
    opacity: 1;
}

/* Reduced animation intensity */
.service-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Mobile: rimuovi transform-style 3D e backdrop-filter pesante */
@media (max-width: 768px) {
    .service-card {
        transform-style: flat;
        backdrop-filter: blur(5px) !important; /* Ridotto drasticamente su mobile */
        -webkit-backdrop-filter: blur(5px) !important;
        background: rgba(0, 0, 0, 0.7) !important; /* Fallback solido più opaco */
    }
    
    .service-card:hover {
        transform: translateY(-3px) scale(1.005); /* Animazione più leggera su mobile */
    }
    
    .stat-item {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .about-content {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .testimonial-card {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .contact-form {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
}

.service-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.service-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: #ffffff;
    transition: all 0.5s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    transition: all 0.5s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Ultra Luxury CTA Button */
.cta-button {
    background: var(--gradient-golden-rose);
    color: var(--luxury-velvet);
    padding: clamp(0.9rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    border: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        var(--shadow-luxury),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        var(--glow-golden);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    letter-spacing: 0.5px;
    cursor: none;
    text-transform: uppercase;
    /* Touch-friendly: minimo 44x44px */
    min-height: 44px;
    min-width: 44px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 40px rgba(212, 175, 55, 0.6);
    color: var(--luxury-velvet);
}

/* Section Styling */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    background: var(--luxury-velvet);
    /* Niente width/max-width/overflow-x qui - box-sizing: border-box gestisce tutto */
}

.section-divider {
    width: clamp(150px, 25vw, 200px);
    height: 2px;
    background: var(--gradient-golden-rose);
    margin: clamp(2rem, 4vw, 3rem) auto;
    border-radius: 2px;
    box-shadow: var(--glow-golden);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive con clamp */
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

/* About Section with Luxury Glass */
.about-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-golden-rose);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

/* Luxury Stats */
.stat-item {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-golden-rose);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 0.2;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
    display: block;
}

.stat-label {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ============================================
 * RESPONSIVE DESIGN - Landing Page
 * ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .service-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 1rem 4rem;
        margin: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        min-height: 44px; /* Touch-friendly */
    }
    
    .section {
        padding: 4rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .section-title {
        font-size: 2.3rem;
        margin-bottom: 2rem;
        text-align: center;
        width: 100%;
    }
    
    .service-card {
        min-height: auto;
        padding: 2rem 1.5rem;
        margin: 0 auto 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .service-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .stat-item {
        padding: 1.5rem;
        margin: 0 auto 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Carousel immagini - altezza fissa su mobile */
    .carousel-item img {
        height: 400px !important;
        object-fit: cover;
    }
    
    .carousel-caption {
        padding: 1rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .carousel-item img {
        height: 300px !important;
    }
}

/* ============================================
 * TESTIMONIALS SECTION - Landing Page
 * ============================================ */
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: var(--glass-shadow);
    margin: 0 clamp(10px, 2vw, 15px);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: "\"";
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.25;
    z-index: 0;
    font-weight: 700;
}

.testimonial-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-style: italic;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    flex: 1;
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-top: 0;
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author picture {
    display: block;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.testimonial-author img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--metallic-gold);
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: block;
    margin: 0;
    padding: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-author-info h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-golden-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.75rem 1.5rem 1.75rem;
        margin: 0 10px;
        min-height: auto;
        justify-content: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .testimonial-card::before {
        display: none;
    }
    
    .testimonial-content-wrapper {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: row !important;
        align-items: center;
        text-align: left;
        gap: 15px;
        width: 100%;
        margin-bottom: 0;
    }
    
    .testimonial-author picture {
        display: block;
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border-radius: 50%;
    }
    
    .testimonial-author img {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        max-width: 80px;
        max-height: 80px;
        aspect-ratio: 1;
        flex-shrink: 0;
        border-radius: 50%;
        object-fit: cover;
        object-position: center center;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .testimonial-author-info {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }
    
    .testimonial-author-info h5 {
        font-size: 1.05rem;
        margin-bottom: 0.3rem;
    }
    
    .testimonial-author-info p {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-top: 0;
        padding-left: 1.5rem;
        line-height: 1.7;
        margin-bottom: 0;
        margin-top: 0 !important;
        position: relative;
        flex-grow: 0 !important;
    }
    
    /* Quote mark piccolo inline all'inizio del testo */
    .testimonial-text::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -0.2rem;
        font-size: 2.5rem;
        background: var(--gradient-golden-rose);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        opacity: 0.4;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem 1.25rem 1.5rem;
        justify-content: flex-start !important;
    }
    
    .testimonial-card::before {
        display: none;
    }
    
    .testimonial-content-wrapper {
        gap: 1.25rem;
    }
    
    .testimonial-author {
        gap: 12px;
        flex-direction: row !important;
        align-items: center;
        margin-bottom: 0;
    }
    
    .testimonial-author picture {
        display: block;
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border-radius: 50%;
    }
    
    .testimonial-author img {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
        aspect-ratio: 1;
        border-radius: 50%;
        object-fit: cover;
        object-position: center center;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .testimonial-author-info {
        align-items: flex-start;
        text-align: left;
    }
    
    .testimonial-author-info h5 {
        font-size: 1rem;
    }
    
    .testimonial-author-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 1.25rem;
        padding-top: 0;
        line-height: 1.6;
        margin-bottom: 0;
        margin-top: 0 !important;
        flex-grow: 0 !important;
    }
    
    .testimonial-text::before {
        font-size: 2rem;
        top: -0.15rem;
    }
}

/* ============================================
 * CONTACT FORM - Landing Page
 * ============================================ */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-golden-rose);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.contact-info {
    padding: clamp(1.5rem, 3vw, 2rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info i {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.contact-info h5 {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(0.4rem, 1vw, 0.5rem);
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .hero {
        padding: clamp(4rem, 8vw, 6rem) clamp(0.75rem, 2vw, 1rem) clamp(3rem, 6vw, 4rem);
    }
    
    .section {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(0.75rem, 2vw, 1rem);
    }
    
    .hero-content,
    .about-content,
    .service-card,
    .stat-item,
    .contact-form {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Solo media responsive per immagini */
    img,
    video {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Evita che il testo esca dal box - supporto multilingua */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

