:root {
    --first-color: rgba(0, 51, 107, 1);
    --second-color: rgba(0, 51, 107, 1);
    --third-color: #FEF3F6;
    --fourth-color: #004a99;
    --btn-padding-vertical: 0.5rem;
    --btn-padding-horizontal: 1.1rem;
    --background:rgba(0, 51, 107, 1);
}

/* START BODY */
body {
    font-family: 'Lato', sans-serif;
    margin: 0 auto;
}
/* END BODY */

/* START WIDGET1 - NAVBAR */
.section-wdg-1 {
    width: 100%;
    background-color: var(--third-color);
}

.widget-1 {
    background: var(--third-color);
    margin: 0 auto; 
    padding: 2rem 5%;
}

.widget-1 > div {
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    background: var(--second-color);
    color: white;
    border-radius: 12px;
    align-items: center;
    padding: 1.5rem 1.5rem;
    min-height: 3rem;
}

.widget-1 > div > h1 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 120%;
}

.btn-wdg1 {
    background: #fff;
    color: var(--second-color);
    font-weight: 400;
    padding: 4px 0px;
    padding-left: 18px;
    border-radius: 60.5px;
    text-decoration: none;
    display: flex;
    height: auto;
    text-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: -10260
}

.btn-wdg1:focus,
.btn-wdg1:hover {
   /* outline: 3px solid var(--fourth-color);
    outline-offset: 3px;*/
    color: white;
    background-color: #5AA1D7;
}
.btn-wdg1 > span {
    background: var(--second-color);
    color: #fff;
    border-radius: 30px;
    padding: 15px 18px;
    margin-left: 55px;
    margin-right: 7px;
    text-align: center;
}

.white-arrow-in-navbar {
    width: 90%;
    height: 90%;
}

.navbar-waves {
    position: absolute;
    top: 0;
    left: 50;
    right: 0;
    width: 100%;
    height: 50%;
    background: url('/wp-content/uploads/2025/11/navbar-white-wave.png') no-repeat center top / cover;
    pointer-events: none;
    z-index: 0;
}

/* MEDIA QUERIES */

/* SMARTPHONE (fino a 600px) */
@media (max-width: 600px) {
    .widget-1 > div {
        display: block;
        padding: 1.5rem 1.5rem;
        min-height: auto;
    }
    .btn-wdg1 {
        padding: 1.5rem 1rem;
        margin: 1.5rem auto;
    }
    .btn-wdg1 > span {
        display: none;
    }
    .white-arrow-in-navbar {
        display: inherit;
    }
    .navbar-waves {
        left: 50%;
        width: 50%;
        height: 50%;
        background: url('/wp-content/uploads/2025/11/navbar-white-wave-mobile.png') no-repeat;
    }
}

/* TABLET (da 601px a 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .widget-1 > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 1.5rem;
    }
    .btn-wdg1 {
        padding: 0.5rem 0.5rem;
    }
    .btn-wdg1 > span {
        padding: 0.75rem 1rem;
    }
    .navbar-waves {
        left: 50%;
        width: 50%;
        height: 25%;
        background: url('/wp-content/uploads/2025/11/navbar-white-wave.png') no-repeat center top / cover;
    }
}

/* MONITOR / LAPTOP (da 1025px a 1440px) */
/* Nessuna modifica specifica necessaria, eredita le regole base */