/* Start custom CSS for html, class: .elementor-element-572e9aa */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Removido estilos de body que podem conflitar com o Elementor */

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    /* Removido position: fixed, top, left, height, background-color, display, flex-direction, justify-content, align-items, z-index */
    /* Estes estilos serão aplicados à classe full-screen-overlay na seção/coluna do Elementor */
}

.verification-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .verification-text {
        font-size: 20px;
    }
}

/* Barra de progresso */
.loading-bar-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.loading-bar-container.hidden {
    opacity: 0;
}

.loading-bar-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    overflow: hidden;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background-color: #e5e5e5;
}

.loading-bar {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 0%;
    background-color: #000;
    border-radius: 9999px;
    transition: width 3s linear;
}

/* Spinner de verificação completa */
.loading-spinner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.loading-spinner.visible {
    opacity: 1;
}

.spinner-container {
    position: relative;
    display: flex;
    height: 64px;
    width: 64px;
}

.spinner-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #27272a;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.spinner-core {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    background-color: #3f3f46;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Classe para sobrepor a tela inteira no Elementor */
.full-screen-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #f5f5f5 !important; /* Cor de fundo da tela de verificação */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important; /* Garante que fique acima de outros elementos */
}

/* Seção inferior (pode ser inserida em outro widget HTML ou Elementor) */
.bottom-section {
    position: fixed; /* Garante que a seção inferior fique fixa na parte de baixo */
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 9998; /* Fica abaixo do container principal, mas acima do resto da página */
}

.buy-button {
    background-color: #dc2626;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-bottom: 20px;
}

.buy-button:hover {
    background-color: #ca2b2b;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Estado clickable */
.clickable {
    cursor: pointer;
}/* End custom CSS */