/* MFDEPUR - STILI PRINCIPALI */

/* RESET GLOBALE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DOCUMENTO HTML */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

/* CORPO PAGINA */
body {
    overflow-x: hidden;
    font-family: var(--font-family);
    font-optical-sizing: auto;
    font-weight: var(--font-weight-normal);
    font-style: normal;
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
    background: var(--bg-white);
}

.container-fluid {
    padding: 0;
    overflow-x: hidden;
}

/* SEZIONI GENERALI */
section {
    min-height: var(--section-min-height);
    display: flex;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
    min-height: 100vh;
    margin: 0 auto;
    align-items: center;
}   

    section .container {
        width: 100%;
    }


.section-content {
    text-align: center;
}

/* COMMON SECTION STYLES */
.section-title {
    font-size: var(--font-size-section-title);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

section h2 {
    font-size: var(--font-size-section-title);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

section p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/*SEPARATORI*/
.separator.skewed {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    z-index: 0;
    transform: skewY(4deg);
    transform-origin: top right;
}
.separator.curved {
    position: relative;
    background: #2c3e50;
    height: 50vh;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}


.custom-shape-divider-bottom-1757962155 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

    .custom-shape-divider-bottom-1757962155 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 113px;
    }

    .custom-shape-divider-bottom-1757962155 .shape-fill {
        fill: #FFFFFF;
    }

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1757962155 svg {
        width: calc(100% + 1.3px);
        height: 63px;
    }
}
.custom-shape-divider-top-1757962496 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .custom-shape-divider-top-1757962496 svg {
        position: relative;
        display: block;
        width: calc(173% + 1.3px);
        height: 177px;
    }

    .custom-shape-divider-top-1757962496 .shape-fill {
        fill: #FFFFFF;
    }

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-top-1757962496 svg {
        width: calc(173% + 1.3px);
        height: 63px;
    }
}

/* CLASSI UTILITY */
.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-overflow-x {
    overflow-x: hidden !important;
}

.no-overflow-y {
    overflow-y: hidden !important;
}

.no-overflow {
    overflow: hidden !important;
}

.no-spaces {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
