body {
    background: #2F3E43;
    font-family: 'Helvetica Neue', sans-serif;
                                                
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 30px 0;
}
.logo-wrapper img {
    width: 100%;
    height: 100%;
}
.row {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.main-wrapper {
    height: 100vh;
}

.section {
    display: flex;
    height: 100%;
    width: 100%;
}

.column {
    width: 100%;
    height: 100%;
    height: max-content;
}

.logo-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: clamp(200px, 13.01vw, 250px);
}

.landing-text-wrapper {
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    margin-bottom: 40px;
    text-wrap: balance;
}

.landing-text-wrapper strong {
    font-size: clamp(20px, 1.55vw, 30px);
}

.landing-text-wrapper span {
    font-size: clamp(18px, 1.24vw, 24px);
}

/* Heading countdown */
.landing-countdown-heading {
    color: #fff;
    font-weight: bold;
    font-size: clamp(26px, 2.07vw, 40px);
    text-align: center;
    margin-bottom: 30px;
}

/* Box countdown */
.landing-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
    color: #AE9F73;
    font-size: clamp(22px, 4.16vw, 80px);
    font-weight: bold;
    background: #ffffff26;
    border-radius: 20px;
    padding: 30px 0px;
    width: max-content;
}

/* Singole colonne (giorni, ore, ecc.) */
.landing-countdown > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    position: relative;
    padding: 0 20px;
    line-height: 1;
}

/* Separatore verticale tra gli elementi */
.landing-countdown > div::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 40px;
    border-right: 1px solid #fff;
    transform: translate(-50%, -50%);
}

/* Nessun separatore sull’ultimo elemento */
.landing-countdown > div:last-child::after {
    display: none;
}

/* Label (Giorni, Ore, Minuti, Secondi) */
.landing-countdown span {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: clamp(16px, 1.03vw, 20px);
    font-weight: 400;
}

/* Desktop */


.landing-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(30px, 3.12vw, 60px);
    align-items: center;
    margin-top: 40px;
    color: #fff;
}

.landing-whatsapp, .landing-whatsapp-qr {
    display: flex;
    align-items: center;
    gap: 20px;
    text-wrap: balance;
    color: #fff;
    font-size: clamp(22px, 1.34vw, 26px);
    line-height: 1.3;
}

.landing-whatsapp a{
    transition: 300ms;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.landing-whatsapp a:hover{
    transition: 300ms;
    text-decoration: underline;
    color: #fff;
}
.landing-whatsapp-qr img {
    width: 100%;
    height: 100%;
    max-width: clamp(80px,6.76vw, 130px);
}
@media (min-width: 1025px) {
    .landing-countdown {
        padding: clamp(30px, 2.07vw, 40px) clamp(20px, 4.68vw, 90px);
    }

    .landing-countdown > div {
        padding: 0 44px;
    }
    .landing-footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: clamp(30px, 3.12vw, 60px);
        align-items: center;
        margin-top: 40px;
        color: #fff;
    }
}