/*
Theme Name: Opera2
Theme URI: http://www.opera2.com.br
Author: Opera2
Author URI: http://www.opera2.com.br
Description: Tema de início para o Wordpress criado pela Opera2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: opera2

Qualquer coisa que você queira escrever para outros desenvolvedores.
*/

@media (min-width: 576px) {
    .sobreposta {
        margin-left: -50px;
        z-index: 2;
        position: relative;
    }
}

.masonry {
    column-count: 1;
    column-gap: 1rem;
    padding: 1rem;
}

.item {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    break-inside: avoid; /* evita quebra entre colunas */
}

.btn {
    text-transform: none !important;
}

/* Responsivo */
@media (min-width: 576px) {
    .masonry {
        column-count: 2;
    }
}

.text-1 { font-size: 0.75rem; }
.text-2 { font-size: 0.875rem; }
.text-3 { font-size: 1rem; }
.text-4 { font-size: 1.25rem; }
.text-5 { font-size: 1.5rem; }
.text-5-5 { font-size: 1.8rem; }
.text-6 { font-size: 2rem; }
.text-7 { font-size: 2.5rem; }
.text-8 { font-size: 3rem; }
.text-9 { font-size: 3.5rem; }
.text-10 { font-size: 4rem; }
.text-11 { font-size: 4.5rem; }
.text-12 { font-size: 5rem; }

.letreiro-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.letreiro-loop {
    display: flex;
    flex-direction: column;
    animation: vertical-loop 35s linear infinite;
}

.letreiro-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

@keyframes vertical-loop {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}


.form-check-input:checked {
    background-color: #621587; /* roxo desejado */
    border-color: #621587;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(98, 21, 135, 0.25);
}

/* Seu arquivo style.css ou um arquivo CSS customizado */

.form-check-input.radio-grande {
    width: 2em;  /* Tamanho que você já definiu */
    height: 2em; /* Tamanho que você já definiu */

    /* --- Ajuste para o Alinhamento --- */
    margin-top: 0.05em; /* Valor menor para 'empurrar' o radio um pouco mais para baixo */
    /* OU */
    /* Você pode precisar de um valor negativo para centralizar, depende da fonte */
    /* margin-top: -0.1em; */

    /* Garante que o alinhamento base do texto seja o centro do rádio, útil para radios maiores */
    vertical-align: middle;
}

.form-check-label.text-4 {
    /* Ajuste o padding-top para alinhar o texto com o radio */
    /* Este valor é um exemplo, você pode precisar ajustar */
    padding-top: 0.1em;
}

.swiper-slide {
    width: auto;
    max-width: 320px;
    transition: transform 0.3s;
}
.swiper-slide img:hover {
    transform: scale(1.03);
    cursor: pointer;
}
.cartaz-img {
    transition: 0.3s ease;
}

.checkbox {
    appearance: none;
    height: 100px;
    width: 100px;
    background-image: radial-gradient(
            circle farthest-corner at 10% 20%,
            rgba(37, 145, 251, 0.98) 0.1%,
            rgba(0, 7, 128, 1) 99.8%
    );
    background-size: 360% 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.checkbox:after {
    content: attr(data-name);
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #3f3f3f;
    z-index: 99;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.checkbox:before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0px;
    height: 200%;
    width: 200%;
    background: #e9e9e9;
    z-index: 0;
    transition: all 0.2s linear;
    transform: scale(0.6) translate(-50%, -50%);
}
.checkbox:hover:before,
.checkbox:focus-visible:before {
    background: #cacaca;
    top: -4%;
    left: 20%;
}
.checkbox:checked:before {
    opacity: 0;
    transform: scale(0.9);
}
.checkbox:checked:after {
    color: white;
}
.checkbox:checked {
    box-shadow: 0px 4px 10px -6px black;
}

.checkbox:focus-visible {
    outline: none;
    box-shadow: 0px 0px 0px 5px #480f5d;
}

.upload-card {
    width: 160px;
    height: 160px;
    background-color: #ede9f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: border 0.3s;
}
.upload-card img,
.upload-card iframe {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.upload-card:hover {
    opacity: 0.9;
}
.icon {
    font-size: 48px;
    color: #888;
}
.label {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
}
.video-active {
    border: 3px solid red;
}
.pointer {
    cursor: pointer;
}

