
/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: linear-gradient(to right, #1a1a1a, #0b0c2a);
    flex-wrap: wrap;
    position: relative;
}

.logo img {
    height: 60px;
}

/* MENU NORMAL */
nav {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

/* BOTÃO ÁREA DO VAQUEIRO */
.btn-area {
    background-color: #d4a233;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-area:hover {
    background-color: #b88c2c;
}

/* MENU HAMBURGUER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1000;
    user-select: none;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* BANNER */
.banner {
    position: relative;
    height: 50vh;
    background-image: url('https://senhadovaqueiro.com/novo/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.banner-content {
    color: white;
    max-width: 600px;
    animation: slideInLeft 1s ease-out forwards;
}

.banner-content .subtitulo {
    letter-spacing: 3px;
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
}

.banner-content h1 {
    font-size: 36px;
    color: #d4a233;
    margin: 10px 0;
}

.banner-content h2 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
}

.btn-banner {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    border: 2px solid #d4a233;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background-color: #d4a233;
    color: #000;
}

/* Seção de detalhes da vaquejada */
.vaquejada-detalhe {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background-image: url('https://senhadovaqueiro.com/novo/bg-2.jpg'); /* opcional */
    background-size: cover;
    background-position: center;
    gap: 30px;
    align-items: center;
}
.info-importante {
    background-color: #111;
    padding: 50px 20px;
    color: #fff;
}

.select-categoria select {
    background-color: #2a2a2a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    appearance: none;
}

.input-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: #fff;
}

.input-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4a233; /* cor personalizada da caixinha */
}

.select-categoria select:invalid {
    color: #777;
}

.select-categoria select option {
    background-color: #1a1a1a;
    color: white;
}

.categoria-selecionada {
    background-color: #4caf50; /* fundo escuro */
    color: #ffffff; /* texto branco */
    border: 1px solid #555; /* borda cinza clara */
    border-radius: 8px; /* cantos arredondados */
    padding: 8px 16px; /* espaço interno */
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    min-width: 50px;
}

.btn-categoria {
        background-color: #1e1e1e; /* fundo escuro */
        color: #ffffff; /* texto branco */
        border: 1px solid #555; /* borda cinza clara */
        border-radius: 8px; /* cantos arredondados */
        padding: 8px 16px; /* espaço interno */
        font-family: 'Courier New', monospace; /* fonte monoespaçada */
        font-size: 14px;
        text-align: center;
        cursor: pointer;
        min-width: 50px;

}

.info-importante .container {
    max-width: 1000px;
    margin: auto;
}

.info-importante h2 {
    font-size: 26px;
    color: #d4a233;
    margin-bottom: 25px;
    text-align: center;
}

.info-importante .bloco-infos p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.info-importante .bloco-infos h3 {
    font-size: 20px;
    color: #d4a233;
    margin: 30px 0 10px;
}

.info-importante em {
    font-style: italic;
    color: #ccc;
}
.cartaz img {
    max-width: 250px;
    border-radius: 10px;
}

.vaquejada-detalhe .info h2 {
    color: #d4a233;
    font-size: 24px;
    margin-bottom: 15px;
}

.vaquejada-detalhe .info p {
    margin-bottom: 8px;
}

.vaquejada-detalhe .premio-box {
    background: #2e2e2e;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    margin-top: 10px;
}

/* Categorias */
.categorias {
    padding: 40px 20px;
    background-color: #000;
    text-align: center;
}

.categorias h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 30px;
}

.categoria-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.categoria-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    width: 280px;
    color: white;
    text-align: center;
    box-shadow: 0 0 10px #00000066;
}

.categoria-card img {
    height: 50px;
    margin-bottom: 10px;
}

.categoria-card h4 {
    color: #d4a233;
    font-size: 18px;
    margin-bottom: 10px;
}

.categoria-card p {
    margin: 8px 0;
}

.categoria-card span {
    font-weight: bold;
}

.btn-escolher {
    margin-top: 15px;
    display: inline-block;
    background-color: #d4a233;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-escolher:hover {
    background-color: #b88c2c;
    color: white;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    color: white;
    position: relative;
}

.fechar {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.cabecalho-modal h3 {
    color: #d4a233;
    margin-bottom: 5px;
}

.grid-senhas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 10px;
    padding: 10px;
    max-height: 350px; /* define altura máxima */
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 10px;
}

/* Barra de rolagem custom (opcional) */
.grid-senhas::-webkit-scrollbar {
    width: 6px;
}

.grid-senhas::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.grid-senhas::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

/* Botões individuais */
.grid-senhas button {
    padding: 12px 0;
    font-size: 14px;
    border-radius: 10px;
    border: 2px solid #555;
    background-color: #1a1a1a;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.grid-senhas button.selecionada {
    background-color: #f3f106;
    border-color: #f3f106;
    color: black;
}

.grid-senhas button.indisponivel {
    background-color: #ec6305;
    border-color: #ec6305;
    color: black;
    cursor: not-allowed;
}

.grid-senhas button.paga {
    background-color: #4caf50;
    border-color: #4caf50;
    color: black;
}

.legenda {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.legenda input {
    accent-color: #555;
}

.legenda .selecionada {
    accent-color: #4caf50;
}
.legenda .indisponivel {
    accent-color: #e53935;
}

.resumo {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-pagamento {
    background: #d4a233;
    color: black;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-pagamento:hover {
    background-color: #b88c2c;
}

/* Responsivo */
@media (max-width: 600px) {
    .linha-dupla {
        flex-direction: column;
    }
    .grid-senhas {
        grid-template-columns: repeat(4, 1fr);
        max-height: 300px;
        padding: 8px;
    }

    .grid-senhas button {
        font-size: 12px;
        padding: 10px 0;
    }

    .resumo {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-pagamento {
        width: 100%;
    }
}

.modal-content {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    color: white;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar custom opcional */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 5px;
}

.topo-modal-fixo {
    position: sticky;
    top: 0;
    background-color: #1a1a1a;
    z-index: 10;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.topo-modal-fixo .voltar {
    position: static; /* remove absolute */
    margin-bottom: 10px;
}

.titulo-pagamento {
    margin: 0;
    font-size: 18px;
    color: #d4a233;
}


.titulo-pagamento {
    color: #d4a233;
    font-size: 20px;
    margin: 30px 0 20px;
}

.voltar {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2e2e2e;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
}

.pagamento-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.formas-pagamento {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opcao-pagamento {
    background-color: #2c2c2c;
    padding: 25px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.opcao-pagamento:hover {
    background-color: #3a3a3a;
}

.resumo-pagamento {
    flex: 1;
    background: #2e2e2e;
    padding: 20px;
    border-radius: 12px;
    color: white;
    min-width: 250px;
}

.resumo-pagamento h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ccc;
}

.resumo-pagamento hr {
    border: 0;
    border-top: 1px solid #555;
    margin: 10px 0;
}

/* Responsivo */
@media (max-width: 700px) {
    .pagamento-layout {
        flex-direction: column;
    }

    .formas-pagamento {
        width: 100%;
    }

    .resumo-pagamento {
        width: 100%;
    }
}


/* FOOTER */
footer {
    background-color: #000;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* ANIMAÇÃO DE ENTRADA NO BANNER */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVO */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 162, 51, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(212, 162, 51, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 162, 51, 0);
    }
}

/* Aplica no botão */
.btn-comprar {
    animation: pulse 2s infinite;
}


.vaquejadas {
    padding: 60px 30px;
    background: linear-gradient(to right, #1a1a1a, #03040e);
    color: white;
    text-align: center;
}

.vaquejadas-header h2 {
    font-size: 32px;
    color: #d4a233;
    margin-bottom: 10px;
}

.vaquejadas-header p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 40px;
}

.vaquejadas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vaquejada-card {
    color: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 0 15px rgba(66, 66, 66, 0.23);
}

.vaquejada-card:hover {

    box-shadow: 0 0 15px rgba(241, 208, 27, 0.2);
}

.card-topo {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-img img {
    width: 200px;
    border-radius: 10px;
}

.card-info {
    flex: 1;
}
.bloco-derby {
    border: 2px solid #d4a233;
    border-radius: 15px;
    padding: 25px 20px;
    background-color: #1a1a1a;
    text-align: center;
    margin-top: 40px;
}

.bloco-derby h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bloco-derby h3 span {
    color: #f0a500;
    font-weight: normal;
}

.bloco-derby h3 strong {
    color: #f0a500;
}

.bloco-derby ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bloco-derby ul li {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bloco-derby .obs {
    font-size: 12px;
    color: #ccc;
    margin-top: 15px;
    text-transform: uppercase;
}

.bloco-derby .obs strong {
    color: #f0a500;
}

.card-info h3 {
    color: #d4a233;
    margin-bottom: 15px;
    font-size: 20px;
}

.cronograma {
    background: #0d0d0d;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.cronograma h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
}

.grade-cronograma {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.item-dia {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.item-dia h3 {
    color: #f0a500;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.item-dia h3 span {
    font-weight: bold;
}

.item-dia p {
    font-size: 14px;
    line-height: 1.6;
}

.item-dia p strong {
    color: #f0a500;
}

.item-dia em {
    color: #ccc;
    display: block;
    margin-top: 8px;
    font-size: 13px;
}


.linha-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.icone {
    font-size: 18px;
}

.premio-box {
    display: inline-block;
    background-color: #2e2e2e;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 10px;
}

.card-rodape {
    text-align: center;
    margin-top: 25px;
}

.btn-comprar {
    background-color: #d4a233;
    color: black;
    font-weight: bold;
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #b88c2c;
    color: #fff;
}


.ver-mais {
    margin-top: 40px;
}

.btn-vermais {
    border: 2px solid #d4a233;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-vermais:hover {
    background: #d4a233;
    color: #000;
}

.modal .mensagem {
    background: #2e2e2e;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.instrucoes, .alternativa, .tempo {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.pix-box {
    background: #2a2a2a;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.qr {
    width: 150px;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

.codigo-pix {
    color: #ccc;
    font-size: 13px;
    max-width: 300px;
    word-break: break-all;
}

.btn-copiar {
    margin-top: 10px;
    padding: 10px 20px;
    background: #d4a233;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.form-cartao {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-cartao input {
    background: #2a2a2a;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.form-cartao label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: -10px;
}

.linha-dupla {
    display: flex;
    gap: 10px;
}

.linha-dupla div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-confirmar {
    margin-top: 20px;
    padding: 14px;
    background: #d4a233;
    border: none;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}
.sucesso {
    text-align: center;
    padding: 30px 20px;
}

.sucesso h2 {
    color: #4caf50;
    font-size: 22px;
    margin-bottom: 10px;
}

.sucesso p {
    margin-bottom: 15px;
}

.detalhes-compra {
    background: #2e2e2e;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    color: #ccc;
}

.btn-voltar {
    display: inline-block;
    background: #d4a233;
    color: black;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.btn-voltar:hover {
    background: #b88c2c;
}

@media (max-width: 600px) {
    .pix-box {
        flex-direction: column;
    }
}

/* Animação */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* Header ajustado */
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Esconde o menu por padrão no mobile */
    nav {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: linear-gradient(to right, #1a1a1a, #0b0c2a);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 30px;
        z-index: 999;
    }

    /* Menu visível quando clicado */
    nav.show {
        display: flex;
    }

    /* Mostra ícone do menu */
    .menu-toggle {
        display: block;
    }

    /* Ajusta o botão */
    .btn-area {
        margin-top: 0;
        align-self: auto;
    }

    /* Banner mobile */
    .banner {
        height: auto;
        padding: 60px 20px;
    }

    .banner-content h1 {
        font-size: 26px;
    }

    .banner-content h2 {
        font-size: 18px;
    }

}

@media (max-width: 600px) {
    .vaquejada-card {
        padding: 15px;
    }

    .card-topo {
        flex-direction: column;
        align-items: center;
    }

    .card-img img {
        width: 100%;
        max-width: 300px;
    }

    .card-info {
        text-align: center;
        margin-top: 20px;
    }

    .card-info h3 {
        font-size: 18px;
    }

    .linha-info {
        justify-content: center;
        font-size: 14px;
    }

    .premio-box {
        font-size: 14px;
        padding: 6px 12px;
    }

    .btn-comprar {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
    }
}


