body {
    font-family: 'Archivo', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 10vh;
    background-color: ghostwhite;
}

.fundo-container {
    display: flex;
    justify-content: center;
    /* Remove align-items: center */
    height: 100vh;
}

.fundo-box {
    font-size: 11px;
    background-color: rgb(238, 238, 238);
    color: black;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* Ajuste a largura conforme necessário */
    max-width: 400px;
    /* Limite máximo de largura */
    margin-top: 0;
    /* Adicione esta linha para colar ao topo */
    height: 730px;
    /* Altura automática */
}


.fundo-boxx {
    font-size: 11px;
    background-color: rgb(238, 238, 238);
    color: black;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* Ajuste a largura conforme necessário */
    max-width: 400px;
    /* Limite máximo de largura */
    margin-top: 0;
    /* Adicione esta linha para colar ao topo */
    height: 250px;
    /* Altura automática */
}

.fundo-boxx img {
    margin-top: 10px;
    width: 70%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.fundo-box img {
    margin-top: 10px;
    width: 90%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.imagemLogo {
    max-width: 50%;
    height: auto;
}

.alinhar-esquerda {
    text-align: left;
}

.alinhar-centro {
    text-align: center;
}

.button {
    background-color: red;
    color: rgb(255, 255, 255);
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 50%;
    margin: 5px;
    font-size: 10px;
}

.button:hover {
    background-color: white;
    color: red;
    border-color: red;
}

.confirmar-modal {
    background-color: green;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(64, 64, 64);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 70%;
    margin: 5px;
}

.alert-button {
    background-color: rgb(64, 64, 64);
    color: rgb(255, 255, 255);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 90%;
    border: 1px solid;
}

.confirmar-modal:hover,
.alert-button:hover {
    background-color: white;
    color: black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
}

.modal-content {
    background-color: rgb(238, 238, 238);
    padding: 20px;
    border: 3px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.modal-content input[type="text"],
.modal-content input[type="email"] {
    width: calc(100% - 40px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content input[type="checkbox"] {
    margin: 10px 0;
    width: 20px;
}

.modal-content .terms-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

.modal-content .terms-link:hover {
    color: #0056b3;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#notaFiscalInput,
#telefoneContatoInput {
    width: 65%;
    padding: 8px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
}

#erroNotaFiscal {
    color: red;
    display: none;
}

#opcionaisList {
    list-style-type: none;
}

.social-icons-container {
    color: red;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    margin: 10px;
}

.social-icons-teste {
    margin: 0;
    width: 40px;
}


.fa-check-circle {
    color: green;
}

.fa-rotate-by {
    transform: rotate(45deg);
}

select {
    width: 70%;
    padding: 10px;
    font-size: 30px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

option {
    font-size: 16px;
}


.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Estilo para o dropdown */
.language-selector select {
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

/* Estilo para o dropdown ao passar o mouse */
.language-selector select:hover {
    border-color: #888;
}

/* Estilo para o dropdown ao focar */
.language-selector select:focus {
    border-color: #555;
    outline: none;
}


@media screen and (max-width: 1000px) {
    .fundo-box {
        font-size: 27px;
        max-width: 900px;
        height: 1650px;
        /* Altura automática */
    }

    .button,
    .confirmar-modal {
        font-size: 25px;
        width: 60%;
        padding: 20px 30px;
    }

    .modal {
        font-size: 40px;
    }

    .modal-content {
        font-size: 40px;
        width: 100%;
        max-width: 90%;
    }

    #notaFiscalInput,
    #telefoneContatoInput {
        height: 75%;
        font-size: 40px;
    }

    .alert-button {
        font-size: 30px;
        padding: 30px 30px;
        border-radius: 20px;
        width: 90%;
        margin-top: 20px;
    }

    .social-icons-teste {
        width: 120px;
    }

    .social-icons-container {
        margin: 25px;
    }

    .modal-content input[type="text"],
    .modal-content input[type="email"] {

        font-size: 30px;
    }

    .modal-content input[type="checkbox"] {
        width: 35px;
        height: 35px;
    }

}