/* =====================================================
   ALLEGROLANDIA - MAIN STYLE
===================================================== */


/* RESET */

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html {
    scroll-behavior:smooth;
}


body {

    font-family:'Inter', sans-serif;
    color:#1D2939;
    background:#ffffff;
    line-height:1.6;
}


body.menu-open {

    overflow:hidden;

}


img {

    max-width:100%;
    display:block;

}


a {

    text-decoration:none;
    color:inherit;

}




/* =====================================================
   VARIABLES
===================================================== */

:root {
    --yellow:#FFD43B;
    --orange:#FF8A00;
    --blue:#1769AA;
    --light-blue:#35B8E8;
    --green:#62C370;

    --dark:#1D2939;
    --grey:#667085;
    --light:#F8FAFC;

    --radius:24px;

    /* Colori predefiniti delle pagine interne */
    --hero-color:rgba(0,0,0,.45);
    --title-color:var(--dark);
}

/* Identità cromatica delle pagine interne */
.page-entrada {
    --hero-color:rgba(255,212,59,.42);
    --title-color:#D99E00;
}

.page-festa {
    --hero-color:rgba(255,138,0,.42);
    --title-color:#E97800;
}

.page-labs {
    --hero-color:rgba(98,195,112,.42);
    --title-color:#36944A;
}

.page-escola {
    --hero-color:rgba(23,105,170,.48);
    --title-color:#1769AA;
}

.page-campus {
    --hero-color:rgba(53,184,232,.43);
    --title-color:#168DB8;
}

.page-eventos {
    --hero-color:rgba(199,70,175,.42);
    --title-color:#B5369D;
}

.page-contacto {
    --hero-color:rgba(255,212,59,.42);
    --title-color:#D99E00;
}


/* =====================================================
   GENERAL
===================================================== */


.container {

    width:min(1200px,90%);
    margin:auto;

}



.section {

    padding:100px 0;

}



h1,
h2,
h3,
h4 {

    font-family:'Fredoka',sans-serif;
    line-height:1.15;

}



h2 {

    font-size:clamp(36px,5vw,54px);
    margin-bottom:25px;

}



p {

    color:var(--grey);
    font-size:18px;

}




/* =====================================================
   BUTTON
===================================================== */


.btn {

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 32px;

    background:var(--yellow);

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}



.btn:hover {

    background:var(--orange);

    transform:translateY(-3px);

}





/* =====================================================
   HEADER
===================================================== */


.header {

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:105px;

    background:white;

    z-index:1000;

    box-shadow:
    0 5px 25px rgba(0,0,0,.08);

}



.nav {

    height:105px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}




.logo {

    display:flex;

    align-items:center;

    padding:10px 0;

}


.logo img {

    width:200px;

    height:auto;

}





.menu {
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:600;
}


.menu a {
    position:relative;
    font-size:14px;
	white-space:nowrap;
    transition:.3s;
}



.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--orange);
    transition:.3s;
}



.menu a:hover{
    color:var(--orange);
}


.menu a:hover::after{
    width:100%;
}


.social-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}


.menu a.active{

    color:var(--orange);

}

.menu a.active::after{

    width:100%;

}



.header-btn {

    background:var(--yellow);

}




.hamburger {

    display:none;

}






/* =====================================================
   HERO
===================================================== */


.hero {

    height:calc(100vh - 90px);

    margin-top:90px;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

}



.hero-video {

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}



.hero-overlay {

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15)
    );

}



.hero-content {

    position:relative;

    z-index:2;

    color:white;

}



.hero h1 {

    font-size:clamp(48px,7vw,90px);

    color:white;

}



.hero p {

    color:white;

    max-width:600px;

    margin:30px 0;

}




.hero-buttons {

    display:flex;

    gap:20px;

}





.secondary {

    background:white;

}


/* =====================================================
   GRID
===================================================== */


.grid-2 {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



.image-box img {

    border-radius:var(--radius);

}






/* =====================================================
   CARDS
===================================================== */


.section-title {
    text-align:center;
    margin-bottom:60px;
}

/* Titoli principali delle sezioni nelle pagine interne */
body[class*="page-"] .section-title h2,
body[class*="page-"] .section > .container > h2,
body[class*="page-"] .contact-info h2,
body[class*="page-"] .contact-form-section h2 {
    color:var(--title-color);
}

/* Consente di colorare anche una sola parola tramite <span> */
body[class*="page-"] .section-title h2 span,
body[class*="page-"] .section h2 span,
body[class*="page-"] .contact-info h2 span,
body[class*="page-"] .contact-form-section h2 span {
    color:var(--title-color);
}


.cards {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.card {

    background:white;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}



.card:hover {

    transform:translateY(-10px);

}



.card img {

    width:100%;

    height:260px;

    object-fit:cover;

}



.card h3 {

    font-size:30px;

    padding:25px 25px 10px;

}



.card p {

    padding:0 25px 30px;

}







/* Titoli bianchi nelle sezioni con sfondo pieno */
.info-box h2,
.lab-info h2,
.school-cta h2,
.campus-warning h2,
.numbers .section-title h2 {
    color:#ffffff;
}

/* =====================================================
   EVENTS
===================================================== */

.events {

    background:#F3FAFF;

    padding:100px 0;

}


.event-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}


.event-card {

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.event-card i {

    font-size:40px;

    color:var(--orange);

    margin-bottom:20px;

}


.event-card h3 {

    margin-bottom:15px;

}






/* =====================================================
   GALLERY
===================================================== */


.gallery-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.gallery-grid img {

    border-radius:20px;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:.3s;

}



.gallery-grid img:hover {

    transform:scale(1.04);

}





/* =====================================================
   PORQUE ESCOLHER
===================================================== */

.numbers{

    background:var(--blue);

    color:white;

    padding:90px 0;

}

.numbers .section-title h2,
.numbers .section-title p{

    color:white;

}

.numbers-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-top:60px;

    text-align:center;

}

.numbers-grid div{

    padding:10px;

}

.numbers-grid i{

    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:var(--yellow);

    font-size:38px;

}

.numbers-grid h3{

    color:white;

    margin-bottom:15px;

    font-size:26px;

}

.numbers-grid span{

    display:block;

    color:rgba(255,255,255,.85);

    line-height:1.7;

    font-size:16px;

}





/* =====================================================
   CTA
===================================================== */


.opening-hours{

    background:var(--yellow);

    padding:100px 0;

}

.opening-hours .section-title{

    margin-bottom:60px;

}

.hours-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.hours-card{

    background:white;

    border-radius:25px;

    padding:45px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.hours-card i{

    font-size:42px;

    color:var(--orange);

    margin-bottom:20px;

}

.hours-card h3{

    margin-bottom:25px;

}

.hours-card p{

    margin-bottom:20px;

}

.hours-card strong{

    color:var(--dark);

}





/*==================================================
FOOTER
==================================================*/

.footer{

    background:#152238;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

.footer-logo{

    width:190px;

    margin-bottom:20px;

}

.footer h4{

    margin-bottom:20px;

    font-size:22px;

    color:#FFD43B;

}

.footer p{

    color:rgba(255,255,255,.75);

    font-size:16px;

    line-height:1.8;

    margin-bottom:10px;

}

.footer a{

    display:block;

    color:rgba(255,255,255,.75);

    margin-bottom:12px;

    transition:.3s;

}

.footer a:hover{

    color:#FFD43B;

}

.footer i{

    width:20px;

    color:#FFD43B;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    transition:.3s;

}

.footer-social a:hover{

    background:#FFD43B;

    color:#152238;

}

.footer-social i{

    color:inherit;

    font-size:18px;

}

.copyright{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    color:rgba(255,255,255,.55);

    font-size:14px;

}




/* =====================================================
   ANIMATION CLASSES
===================================================== */


.reveal {

    opacity:0;

    transform:translateY(40px);

    transition:1s ease;

}



.reveal.visible {

    opacity:1;

    transform:none;

}


.social-menu {

    display:flex;

    align-items:center;

    gap:10px;

}


.social-menu a {

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#F2F4F7;

    color:#1D2939;

    font-size:14px;

    transition:.3s;

}


.social-menu a:hover {

    background:#FFD43B;

    color:#111;

    transform:translateY(-3px);

}




/* =====================================================
   INTERNAL PAGE HERO
===================================================== */


.page-hero{

    height:420px;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    margin-top:90px;

}


.page-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}


.page-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        120deg,
        var(--hero-color) 0%,
        rgba(0,0,0,.28) 65%,
        rgba(0,0,0,.10) 100%
    );
}


.page-title{

    position:relative;

    z-index:2;

    color:white;

}


.page-title h1{

    font-size:70px;

    color:white;

}


.page-title p{

    color:white;

    font-size:22px;

    max-width:600px;

}





/* =====================================================
   PRICE
===================================================== */



.price-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}


.price-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.price-card h3{

    font-size:32px;

    margin-bottom:30px;

}


.price-card h4{

    display:flex;

    justify-content:space-between;

    font-size:20px;

    padding:15px 0;

    border-bottom:1px solid #eee;

}


.price-card span{

    color:var(--orange);

    font-size:28px;

}


.daily-pass{

    background:#F8FAFC;

}



.daily-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}



.daily-card{

    background:white;

    border-radius:28px;

    padding:45px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.daily-card.featured{

    background:var(--light-blue);

}



.daily-card i{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(255,212,59,.25);

    color:var(--orange);

    font-size:35px;

}



.daily-card h3{

    font-size:32px;

}



.daily-card strong{

    display:block;

    font-size:55px;

    font-family:'Fredoka',sans-serif;

    color:var(--orange);

    margin:20px 0 0;

}



.daily-card span{

    color:var(--grey);

}



.daily-card ul{

    list-style:none;

    text-align:left;

    margin-top:30px;

}



.daily-card li{

    padding:8px 0;

}


/* =====================================================
   PACOTES DE HORAS
===================================================== */


.packages {

    background:#F8FAFC;

}


.package-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}



.package-card {

    padding:45px 35px;

    border-radius:28px;

    text-align:center;

    background:white;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}



.package-card:hover {

    transform:translateY(-8px);

}



/* Pacote 7 horas */

.package-card:nth-child(1){

    background:#EAF7FF;

}



/* Pacote 14 horas */

.package-card:nth-child(2){

    background:var(--yellow);

    transform:scale(1.05);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}



/* Pacote 30 horas */

.package-card:nth-child(3){

    background:#FFF0E0;

}




.package-card h3 {

    font-size:30px;

    margin-bottom:25px;

}



.package-card strong {

    display:block;

    font-family:'Fredoka',sans-serif;

    font-size:55px;

    line-height:1;

    margin-bottom:10px;

}



.package-card p {

    font-size:20px;

    font-weight:600;

    color:var(--dark);

}



.discount {

    margin-top:25px;

    padding:12px 15px;

    border-radius:50px;

    background:white;

    font-size:14px;

    font-weight:600;

}







/* =====================================================
   FESTA DE ANIVERSÁRIO
===================================================== */


/* INTRO */

.intro-party{

    background:white;

}


.center-text{

    max-width:850px;

    margin:auto;

    text-align:center;

    font-size:20px;

    line-height:1.8;

}





/* PACOTES FESTA */

.party-packages{

    background:#F8FAFC;

}



.package-card ul{

    list-style:none;

    padding:0;

    margin:25px 0;

    text-align:left;

}



.package-card li{

    margin-bottom:10px;

    color:var(--dark);

    font-size:16px;

}



.package-card small{

    display:block;

    margin-top:25px;

    font-weight:600;

    color:var(--grey);

}



/* Pacchetto centrale */

.package-card.featured{

    background:var(--yellow);

    transform:scale(1.05);

}



/* Premium */

.package-card.premium{

    background:#FFF0E0;

}




.popular{

    display:inline-block;

    background:var(--orange);

    color:white;

    padding:7px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}





/* EXTRA */

.extras{

    background:white;

}



.extras-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.extras-grid div{

    background:#F8FAFC;

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

}



.extras-grid div:hover{

    transform:translateY(-8px);

}



.extras-grid i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(255,212,59,.25);

    color:var(--orange);

    font-size:30px;

}



.extras-grid h3{

    font-size:24px;

    margin-bottom:10px;

}



.extras-grid p{

    font-size:20px;

    font-weight:700;

    color:var(--orange);

}





/* INFO */

.info-box{

    background:var(--blue);

    color:white;

    padding:80px 0;

}



.info-box h2{

    color:white;

    text-align:center;

    margin-bottom:40px;

}



.info-box p{

    color:white;

    max-width:900px;

    margin:15px auto;

    font-size:17px;

}





/* CTA FINALE */

.final-cta{

    background:var(--yellow);

    padding:80px 0;

    text-align:center;

}



.final-cta h2{

    margin-bottom:30px;

}






/* =====================================================
   LABORATÓRIOS CRIATIVOS
===================================================== */


/* GRID LABORATÓRIOS */


.labs-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.lab-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}



.lab-card:hover{

    transform:translateY(-8px);

}



.lab-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}



.lab-card h3{

    font-size:28px;

    padding:25px 25px 10px;

}



.lab-card p{

    padding:0 25px 30px;

    font-size:16px;

    line-height:1.7;

}





/* BOX FINALE */


.lab-info{

    background:var(--blue);

    padding:90px 0;

    text-align:center;

    color:white;

}



.lab-info i{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:var(--yellow);

    font-size:40px;

}



.lab-info h2{

    color:white;

}



.lab-info p{

    max-width:850px;

    margin:20px auto;

    color:white;

    font-size:18px;

}



.lab-info .btn{

    margin-top:30px;

}



.lab-card img{

    transition:.4s;

}


.lab-card:hover img{

    transform:scale(1.05);

}




/* =====================================================
   PACOTE ESCOLAR
===================================================== */


.lunch-menu{

    background:rgba(255,255,255,.6);

    padding:20px;

    border-radius:20px;

    margin-top:25px;

}



.lunch-menu h4{

    margin-bottom:15px;

    font-size:20px;

}




.school-cta{

    background:var(--blue);

    padding:90px 0;

    text-align:center;

}



.school-cta i{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:var(--yellow);

    font-size:40px;

}



.school-cta h2{

    color:white;

}



.school-cta p{

    color:white;

    margin-bottom:30px;

}







/* =====================================================
   CAMPUS DE FÉRIAS
===================================================== */


/* INTRO */

.campus-intro{

    background:white;

}





/* PROGRAMMA GIORNALIERO */


.daily-program{

    background:#F8FAFC;

}



.timeline{

    max-width:900px;

    margin:60px auto 0;

    position:relative;

}



.timeline::before{

    content:"";

    position:absolute;

    left:90px;

    top:0;

    bottom:0;

    width:3px;

    background:var(--yellow);

}



.timeline-item{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:40px;

    margin-bottom:40px;

    align-items:center;

}



.timeline-item > span{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--orange);

    color:white;

    font-family:'Fredoka',sans-serif;

    font-size:24px;

    font-weight:700;

    position:relative;

    z-index:2;

}



.timeline-item div{

    background:white;

    padding:30px;

    border-radius:24px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.timeline-item h3{

    font-size:28px;

    margin-bottom:10px;

}



.timeline-item p{

    font-size:17px;

}





/* DETTAGLI CAMPUS */


.campus-details{

    background:var(--yellow);

    padding:80px 0;

}



.details-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.details-grid div{

    background:white;

    border-radius:24px;

    padding:35px 20px;

    text-align:center;

}



.details-grid i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(255,138,0,.15);

    color:var(--orange);

    font-size:30px;

}



.details-grid h3{

    font-size:24px;

    margin-bottom:15px;

}



.details-grid p{

    font-size:17px;

    color:var(--dark);

}





/* AVVISO ISCRIZIONI */


.campus-warning{

    background:var(--blue);

    padding:90px 0;

    text-align:center;

}



.campus-warning h2{

    color:white;

}



.campus-warning p{

    color:white;

    max-width:800px;

    margin:20px auto;

    font-size:18px;

}



.campus-warning strong{

    color:var(--yellow);

}




.campus-warning .btn{

    margin-top:30px;

}


.season-badge{

    display:inline-block;

    background:var(--yellow);

    color:var(--dark);

    padding:8px 20px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}



/* =====================================================
   EVENTOS
===================================================== */


.event-cards-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.event-card2{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}



.event-card2:hover{

    transform:translateY(-8px);

}



.event-card2 img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.4s;

}



.event-card2:hover img{

    transform:scale(1.05);

}



.event-card2 h3{

    padding:18px 25px 10px;

    font-size:26px;

}



.event-card2 p{

    padding:0 25px 30px;

    font-size:16px;

}



.tag{

    display:inline-block;

    margin:20px 25px 0;

    padding:7px 16px;

    border-radius:30px;

    color:white;

    font-size:13px;

    font-weight:700;

}



.orange{background:#FF8A00;}
.green{background:#62C370;}
.blue{background:#35B8E8;}
.yellow{background:#FFD43B;color:#333;}
.red{background:#E53935;}
.purple{background:#8E44AD;}
.pink{background:#EC5FA9;}





/* =====================================================
   CONTACTO
===================================================== */


/* BOX CONTATTI */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.contact-card{

    background:white;

    padding:35px 25px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}



.contact-card:hover{

    transform:translateY(-8px);

}



.contact-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(255,212,59,.25);

    color:var(--orange);

    font-size:32px;

}



.contact-card h3{

    font-size:25px;

    margin-bottom:15px;

}



.contact-card p{

    font-size:16px;

    color:var(--grey);

}





/* MAPPA E ORARI */

.contact-info{

    background:#F8FAFC;

}



.contact-info iframe{

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}



.hours-box{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.hours-box p{

    color:var(--dark);

    font-size:17px;

    line-height:1.8;

}



.hours-box strong{

    font-family:'Fredoka',sans-serif;

    font-size:22px;

}



.hours-box hr{

    border:0;

    height:1px;

    background:#eee;

    margin:20px 0;

}





/* FORM CONTATTI */

.contact-form-section{

    background:white;

}



.contact-form{

    max-width:750px;

    margin:50px auto 0;

    display:grid;

    gap:20px;

}



.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #E4E7EC;

    border-radius:15px;

    font-family:'Inter',sans-serif;

    font-size:16px;

    outline:none;

    transition:.3s;

}



.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--orange);

}



.contact-form textarea{

    min-height:160px;

    resize:none;

}



.contact-form .btn{

    border:none;

    cursor:pointer;

    justify-self:center;

}





/* CTA FINALE */

.lab-info{

    background:var(--blue);

    padding:90px 0;

    text-align:center;

}



.lab-info i{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    background:rgba(255,255,255,.15);

    border-radius:50%;

    color:var(--yellow);

    font-size:35px;

}



.lab-info h2{

    color:white;

}



.lab-info p{

    color:white;

    max-width:800px;

    margin:20px auto;

}



.lab-info .btn{

    margin-top:25px;

}



.contact-info iframe {

    height:500px;
    border-radius:25px;

}



.contact-header{

    background:var(--yellow);

    padding:150px 0 80px;

    text-align:center;

}



.contact-header h1{

    font-size:70px;

    color:var(--dark);

    margin-bottom:20px;

}



.contact-header p{

    max-width:700px;

    margin:auto;

    font-size:20px;

    color:var(--dark);

}




.birthday-form-section {
    background: var(--light);
}

.birthday-form {
    max-width: 950px;
    margin: 45px auto 0;
    padding: 45px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(29, 41, 57, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label,
.form-group legend {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.form-group small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 400;
    color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9dee7;
    border-radius: 12px;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-choice {
    margin: 0;
    padding: 18px;
    border: 1px solid #d9dee7;
    border-radius: 12px;
}

.form-choice legend {
    padding: 0 6px;
}

.form-choice label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 25px;
    font-weight: 400;
    cursor: pointer;
}

.form-choice input {
    width: auto;
    margin: 0;
}

.privacy-check {
    margin: 28px 0;
    font-size: 14px;
    color: var(--grey);
}

.privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-check input {
    margin-top: 3px;
}

.privacy-check a {
    color: var(--blue);
    text-decoration: underline;
}

.birthday-form .btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}
