@import url('https://fonts.googleapis.com/css2?family=Quattrocento&family=Roboto&display=swap');

/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #852A20;
}

/* Contenitore principale centrato */
.container-centrato {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centra verticalmente */
    align-items: center;
    /* centra orizzontalmente */
    text-align: center;
    padding: 40px;
    gap: 40px;
}

/* Sezione immagini */
.sezione-immagini {
    display: flex;
    gap: 96px;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

.sezione-immagini img {
    width: 150px;
    object-fit: contain;
}

/* Sezione testo */
.sezione-testo {
    max-width: 600px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Quattrocento', serif;
}

/* Bottone */
.sezione-bottone {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.sezione-bottone p {
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.75;
}

.sezione-bottone .btn {
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    background-color: #ffffff;
    color: #852A20;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.sezione-bottone .btn:hover {
    background-color: #f0f0f0;
    color: #242424;
}

.sezione-bottone button:hover {
    background-color: #005fa3;
}

@media (max-width: 767px) {
    .sezione-immagini {
        gap: 48px;
        flex-direction: column;
    }

    .sezione-immagini img {
        width: 100px;
    }
}