 
html, body {
    height: 100%; /* serve per ancorare il 100% */
    margin: 0;
    overflow: hidden; /* disabilita lo scroll del body */
}

/*PAGE*/
.page {
    height: 100vh; /* occupa tutto il viewport */
    overflow-y: auto; /* abilita lo scroll verticale */
    scroll-snap-type: y proximity; /* oppure: y mandatory */
    scroll-behavior: smooth; /* scorrimento fluido (opzionale) */
    scroll-padding-top: var(--header-height);
    overflow-x:hidden;
}
.snap-section {
    height: 100vh; /* ogni sezione una “pagina” */
    scroll-snap-align: start; /* snap all'inizio della sezione */
    /* opzionale, utile per forzare lo stop: */
    /* scroll-snap-stop: always; */
}

/*HERO========================*/
/*.page{scroll-snap-type:none !important}*/
.snap-section{height:max-content;}
.hero-container{width:1720px;margin:auto;height:600px}
body {background-color: #FBFBFB;}
#hero{background-color:#FBFBFB;height:max-content;position:relative;padding-top:var(--header-height);overflow:hidden}
.hero-row{display:flex;padding:80px 0px 0px 20px;}
.left-hero {width: 20%;position: relative;z-index: 5;}
.left-hero-header{
    margin-bottom:20px;
    display:flex;
    width:100%; 
    justify-content:space-between;
}
.left-hero-header > :nth-child(1),.left-hero-header > :nth-child(3){
    width: 40%;
}
.right-hero {
    position: relative;
    width: 63%;
    display: flex;
    justify-content: center;
}
.hero-text {
    font-size: clamp(1rem, 2vw, 1rem);
    color: #004F70;
    width:60%;
    padding:60px 0px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.hero-text p{font-size:1.125rem;margin-bottom:20px;line-height:1.4375rem}
.hero-eyebrow {
    display: block;
    color: var(--ink);
    font-weight: 700;
    font-size: 4.25rem;
    letter-spacing: -.01em;
}
.hero-title {
    font-size: 4.25rem;
    color: var(--nav-color);
    font-weight: 400;
    line-height: 0.35;
    margin-bottom: 65px;
}
/*================FAQ===============*/
#faq {
    padding: 0px 0px;
    height: max-content;
    background-color: #FBFBFB;
    position: relative;
    
}
.faq-container {
    height: 100%;
    padding: 50px 140px;
    display: flex;
    flex-direction: column;
}
.faq-group{display:flex;justify-content:space-between;margin-bottom:200px;}
.drops{width:770px;}
.faq-category{width:25%;}
.faq-category h3{font-size:2.625rem;line-height:3rem;}
.faq-text{text-align:center;margin-bottom:40px;}
.faq-text h3{font-size: 2.625rem}
.faq-drops{
    display:flex;
    flex-direction:column;
    flex-grow:1
}
.faq-drop {
    height: 81px;
    width: 100%;
    background-color: #EFF3F4;
    margin: 10px 0px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    overflow: hidden;
    display: flex;
    padding: 23px 40px 23px 40px;
    cursor: pointer;
    transition: height 0.3s ease;
}

.faq-drop ul{padding-left:20px;opacity:0;transition:opacity 800ms ease-in-out}
.faq-drop ul li{line-height:1.2rem;margin-bottom:7px;}

.faq-drop.expand {
    height: 173px;
    width: 100%;
    transition: height 0.3s ease;
}
.faq-drop.faq-drop-ul.expand {height: 205px;}
.faq-drop.custom-drop-1.expand {height: 205px;}
.faq-drop-text{
    flex-grow:1;
}
.faq-drop-text h4 {
    font-size: 1.5rem;
    line-height:1.6rem;
    margin-bottom:10px;
}
.faq-drop-text p {
    opacity: 0;
    font-size: 1.125rem;
    transition: opacity 0.8s ease;
}
.faq-drop.expand p, .faq-drop-ul.expand ul {
    opacity: 1;
    transition: opacity 0.8s ease;
}

.drop-circle > .circle {
    transition: all .45s cubic-bezier(0.65,0,.076,1);
    width: 2rem;
    height: 2rem;
    background: var(--ink);
    border-radius: 1rem;
    z-index: 2;
    pointer-events: none;
    position: relative
}
.drop-circle.expand > .circle{
    background-color:var(--rosaScuro)
}

.drop-circle > .circle .icon.arrow {
    left: .625rem;
    width: 1.125rem;
    height: .125rem;
    background: none
}

.drop-circle >.circle .icon.arrow::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 11px;
    width: .5rem;
    height: .5rem;
    border-top: .125rem solid #fff;
    border-right: .125rem solid #fff;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}

.drop-circle.expand >.circle .icon.arrow::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 11px;
    width: .5rem;
    height: .5rem;
    border-top: .125rem solid #fff;
    border-right: .125rem solid #fff;
    transform: rotate(-45deg)
}

@media (max-width: 1700px) {
    .hero-container{width:95vw;height:525px;}
    /*==========HERO================*/
    .right-hero {width: 50%;}
    .hero-text{padding:40px 0px;width:75%}
    .left-hero {width: 25%;}
    .hero-eyebrow {font-size:3.5rem;}
    .hero-title {font-size: 3.5rem;margin-bottom:40px;}
    .hero-text p{font-size:1.1rem;margin-bottom:20px;line-height:1.25rem}
    .hero-row{padding:50px 0px 0px 20px;}
    /*=============FAQ==================*/
    .faq-container {padding: 30px 140px;}
    .faq-drop.expand {height: 140px;}
    .faq-text {margin-bottom: 20px;}
    .faq-drop {height: 105px;margin: 8px 0px;padding: 23px 40px 23px 40px;;border-radius:20px;}
    .faq-drop-text h4{font-size:1.2rem;margin-bottom:5px;}
    .faq-drop-text p{font-size:1rem;}
    #forma-pink-row {right: 5%;top: -17%; height: 160px;}
    #forma-pink-row img{height:100%}
}

@media (max-width: 1400px) {
    /*==========HERO================*/
    .hero-text{padding:40px 0px;}
    .hero-eyebrow {font-size:2.85rem;}
    .hero-title {font-size: 2.85rem;margin-bottom:40px;}
    .hero-text p{font-size:1rem;margin-bottom:20px;line-height:1.25rem}
    .hero-row{padding:50px 0px 0px 20px;}
    .right-hero{padding-right:0px;width:100%;}
    .btn-primary{font-size:1rem}
    .btn-secondary{font-size:1rem}
    .left-hero{display:none;}
    .faq-category h3 {font-size: 2.025rem;line-height: 2.5rem;}
    /*=============FAQ==================*/
    .faq-container {padding: 30px 0px;}
    #forma-pink-row {height: 120px;}
    #forma-pink-row img{height:100%}
}

@media(max-width:1300px){
    
}

@media(max-width:1100px) {
    /*==============FAQ================*/
    .faq-group{display:block;}
    .faq-category{width:100%;}
    .drops{width:100%;}
    .faq-container{width:80vw;}
}

@media(max-width:870px){
    .faq-group{margin-bottom:150px;}
    .faq-drop.expand {height: 245px;}
    .faq-drop.faq-drop-ul.expand {height: 250px;}
    .faq-drop.custom-drop-1.expand {height: 250px;}
}

@media(max-width:576px){
    /*==========FAQ===============*/
    .hero-text {justify-content: end;}
    .hero-container {height: 365px;}
    #faq {height: max-content;padding: 0px 0px;}
    .hero-text {padding: 40px 0px 0px;}
    .faq-group {margin-bottom: 70px;}
    .faq-container {padding: 90px 0px;width:90%;}
    .faq-drop-text h4{font-size:1rem;line-height: 1.1rem;}
    .faq-drop-text p{font-size:0.9rem;}
    .faq-drop {
        height: 80px;
        margin: 8px 0px;
        padding: 18px 10px 23px 15px;
        border-radius: 10px;
    }
    #forma-pink-row {
        right: 5%;
        top: -15%;
        height: 85px;
    }
}