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

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    background: url('../img/sfondo-pagina-cortesia.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}


.pagina-cortesia {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    width: 220px;
    margin-bottom: 30px;
}


h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 10px;
}


.linea {
    width: 700px;
    height: 2px;
    background: #fff;
    margin: 25px 0;
    opacity: 0.8;
}

/* Testo */
p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Bottone */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #55684a;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta img {
    width: 18px;
}

.cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .divider {
        width: 200px;
    }

    p {
        font-size: 16px;
    }
}


.cta i {
    margin-right: 8px;
    font-size: 1.2em;
    color: #55684a;
}

