body {
    background: #f9f9f9
}

a {
    color: #222
}

a:hover {
    color: #666
}

.texto {
    font-weight: 400;
    font-size: 14pt;
    color: #555;
    line-height: 30px;
}

.capaGrande {
    max-width: 540px
}

.capaMedia {
    max-width: 270px
}

.capaPequena {
    max-width: 135px
}

.tempoCarregamento {
    font-size: .7em;
    float: right;
    color: white;
}

.overflow {
    position: relative;
    overflow: hidden;
}

.zoom img {
    transition: all 0.2s linear;
}

.zoom:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pagination>li>a,
.pagination>li>span {
    color: #333
}

.pagination span.active {
    background: #555;
    color: #fff;
    border: none
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

.hljs {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

.slide img {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}

.iconeEmail {
    font-size: 10em;
    color: #999
}


.lista-pacotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- CARD DO PACOTE --- */
.pacote-card {
    background-color: #000;
    /* Fundo totalmente preto */
    border: 1px solid #222;
    /* Borda bem fina e discreta */
    border-radius: 0px;
    /* Bordas retas */
    transition: border-color 0.2s ease-in-out;
    position: relative;
}

/* Removemos efeitos exagerados de hover */
.pacote-card:hover {
    border-color: #222;
}

/* Classe ativa (foco minimalista na borda) */
.pacote-card.ativo {
    border-color: #eee;
    /* Borda clara fina ao selecionar */
    background-color: #000;
}

/* --- TIPOGRAFIA --- */
.tipo-ingresso {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ddd;
}

.preco-destaque {
    font-size: 1.25rem;
    color: #eee;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.taxa-text {
    font-size: 0.75rem;
    color: #666;
}

/* --- DROPDOWN MINIMALISTA --- */
.input-qtd-wrapper label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.minimal-select {
    background-color: #000;
    color: #eee;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Tamanho fixo via CSS para evitar style inline */
    width: 100%;
    max-width: 100px;

    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23AAAAAA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.65rem auto;
    padding-right: 2rem;
}

.minimal-select:focus {
    outline: none;
    border-color: #eee;
}

.minimal-select::-webkit-scrollbar {
    width: 8px;
}

.minimal-select::-webkit-scrollbar-track {
    background: #000;
}

.minimal-select::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

/* --- Total e Botão Checkout --- */
.total-summary {
    border-bottom: 1px solid #222;
    padding-bottom: 0.8rem;
}

.total-summary .fs-6 {
    color: #666;
}

.total-summary .fs-2 {
    color: #eee;
}

.checkout-button {
    background-color: #eee;
    color: #000;
    border: none;
    border-radius: 0px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: background-color 0.2s ease;
}

.checkout-button:hover {
    background-color: #fff;
    color: #000;
}


body {
    background-color: #121212 !important;
    color: #fff;
}

.candidate-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.candidate-card:hover {
    transform: translateY(-5px);
    border-color: #555;
}

.img-container {
    position: relative;
    width: 100%;
    padding-top: 133%;
    overflow: hidden;
    background-color: #000;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.candidate-card:hover .img-container img {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.candidate-card:hover .zoom-icon {
    opacity: 1;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.candidate-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: #eee;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.btn-vote {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 8px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-vote:hover {
    background-color: #e0e0e0;
    color: #000;
}

footer.footer-dark {
    background-color: #000;
    border-top: 1px solid #222;
    color: #888;
}

footer.footer-dark a {
    color: #ccc !important;
    transition: color 0.2s;
}

footer.footer-dark a:hover {
    color: #fff !important;
}

/* --- MODAL DARK --- */
.modal-content-dark {
    background-color: #121212;
    border: 1px solid #333;
    color: #fff;
    border-radius: 12px;
}

.modal-header-dark {
    border-bottom: 1px solid #333;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-floating>.form-control-dark {
    background-color: #222222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
}

.form-floating>.form-control-dark:focus {
    background-color: #222222;
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}


.form-floating>label {
    color: #b2b2b2;
    background-color: transparent !important;
}

.form-floating>.form-control-dark:focus~label,
.form-floating>.form-control-dark:not(:placeholder-shown)~label {
    color: #ccc;
    background-color: transparent !important;
}

/* Correção do Autocomplete amarelo do Chrome */
.form-control-dark:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #050505 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}


.input-group-text-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ccc;
    border-right: none;
}

/* O campo do arquivo em si */
input[type="file"].form-control-dark {
    background-color: #050505;
    border: 1px solid #333;
    color: #aaa;
    /* Cor do texto "Nenhum arquivo..." */
}

/* Estiliza o botão interno "Escolher arquivo" */
input[type="file"].form-control-dark::file-selector-button {
    background-color: #333;
    color: #fff;
    border: none;
    border-right: 1px solid #444;
    padding: 0.375rem 0.75rem;
    margin-right: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

input[type="file"].form-control-dark:hover::file-selector-button {
    background-color: #444;
}

/* Botão de Enviar */
.btn-send {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 50px;
    transition: background 0.2s;
}

.btn-send:hover {
    background-color: #e0e0e0;
}

.checkout-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.btn-whatsapp {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none;
    transition: opacity 0.2s;
}

.btn-whatsapp:hover {
    opacity: 0.9;
}

.mp-banner {
    background-color: #1a1a1a;
    color: #aaa;
    font-size: 0.8rem;
    padding: 8px 40px;
    border-radius: 4px;
    font-weight: 500;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #eee;
}

.form-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.form-control-dark {
    background-color: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0px;
    padding: 12px;
}

.form-control-dark:focus {
    background-color: #000;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
}

.btn-votar {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    border: none;
}

.btn-votar:hover {
    background-color: #e6e6e6;
    color: #000;
    transition: background-color 0.3s ease;
}

.step-disabled {
    opacity: 0.3;
    margin-top: 3rem;
    font-size: 1.75rem;
    font-weight: 300;
}

.summary-box {
    border: 1px solid #333;
    background-color: #161616;
}

.timer-box {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #ddd;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.summary-content {
    padding: 20px;
}

.summary-title {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 5px;
}

.summary-subtitle {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 20px;
}

.coupon-link {
    display: block;
    color: #aaa;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 1.1rem;
    color: #fff;
    background-color: #2a2a2a;
    margin: 0 -20px -20px -20px;
    padding: 20px;
}

.payment-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-dark {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.form-control-dark {
    background-color: #000;
    border: 1px solid #333;
    color: #fff;
    font-family: monospace;
}

.form-control-dark:focus {
    background-color: #000;
    color: #fff;
    border-color: #555;
    box-shadow: none;
}

.jBox-wrapper .jBox-container,
.jBox-wrapper .jBox-title,
.jBox-wrapper .jBox-content {
    background-color: #1e1e1e !important;
    color: white !important;
    border-color: #333 !important;
}

.jBox-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
}