@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #2a2a2a;
    color: white;
    overflow-x: hidden;
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 50px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* TÍTULO PRINCIPAL */
h1 {
    font-size: 170px;
    color: #ccc;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 70px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

/* LOGO */
.logo {
    margin: 20px 0;
}

.logo-image {
    width: 250px;
    height: auto;
    margin-top: 10px;
}

/* TEXTO DE AGRADECIMENTO */
.thank-you {
    font-size: 20px;
    margin: 40px 0 20px;
    font-weight: semi-bold;
    text-transform: uppercase;
    line-height: 34px;
}

.thank-you span {
    padding: 5px 10px;
    color: #000;
    font-weight: 700;
    background-color: #FFD700;
}

.description {
    font-size: 20px;
    margin-bottom: 60px;
    font-weight: normal;
    font-style: italic;
}

.hashtag {
    color: #FFD700;
    font-weight: bold;
}

.pickup-title {
    font-size: 20px;
    color: #FFD700;
    margin: 40px 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 34px;
}

.local {
    margin-bottom: 20px;
}

.local-title {
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px !important;
}

.local p {
    margin-bottom: 10px;
    font-style: italic;
}

/* SEÇÃO CONSULTA */
.consultation-section {
    background-color: rgba(0,0,0,0.3);
    padding: 50px;
    border-radius: 10px;
    margin: 50px 0;
}

.consultation-title {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
}

.consultation-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: normal;
}

/* CAMPO CPF */
.cpf-input {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* SEÇÃO LISTA DE ESPERA */
.waiting-list {
    margin-top: 60px;
}

.waiting-list p {
    font-size: 18px;
    margin-bottom: 20px;
}

.lista-espera {
    font-weight: bold;
}

/* BOTÕES */
.btn {
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-primary {
    padding: 20px 60px;
    background-color: #FFD700;
    color: black;
}

.btn-secondary {
    padding: 10px 40px;
    background-color: #e0e0e0;
    color: black;
    margin-top: 20px;
}

/* JANELA MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #2a2a2a;
    margin: 10px auto;
    padding: 20px;
    border: 3px solid #FFD700;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #FFD700;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: white;
}

.modal h2 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* FORMULÁRIO */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    color: #FFD700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

/* RESULTADO DA PESQUISA */
.result-box {
    background-color: #1a1a1a;
    padding: 50px;
    border-radius: 10px;
    margin-top: 20px;
}

.result-box h3 {
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.result-box p {
    margin: 10px 0;
    font-size: 16px;
    text-align: center;
}

.success {
    color: #4CAF50 !important;
}

.btn-voucher {
    padding: 10px;
    background-color: #e0e0e0;
    color: black;
    margin-top: 20px;
}

.btn-voucher a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.btn-voucher.disabled a {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.error {
    color: #f44336 !important;
}

.center-btn {
    display: flex;
    justify-content: center;
}


/* RESPONSIVO */

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 110px;
    }

    .warning-stripe {
        font-size: 18px;
    }

    .stripe-bottom {
        bottom: 950px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    h1 {
        font-size: 180px;
    }

    .warning-stripe {
        font-size: 18px;
    }

    .stripe-bottom {
        bottom: 830px;
    }
}

/* Desktop grande */
@media (max-width: 1440px) {
    h1 {
        font-size: 180px;
    }

    .warning-stripe {
        font-size: 18px;
    }

    .stripe-bottom {
        bottom: 830px;
    }

    .btn {
        padding: 15px 40px;
        font-size: 16px;
    }

    .modal-content {
        padding: 20px;
        margin: 10% auto;
    }
}


