/* Menu Hamburguer em todas as telas - Desktop e Mobile */

/* Limitar container do header a 700px */
header .container {
    max-width: 700px !important;
    margin: 0 auto;
}

/* Remover borda do header */
header {
    border-bottom: none !important;
    padding-bottom: 18px !important;
}

/* Border radius no container principal */
.container {
    overflow: hidden;
    padding-left: 30px;
    padding-right: 30px;
}

/* Tag amarela piscando - posicionada em relação ao carousel-title */
.rifa-v2-page .carousel-title {
    position: relative;
}

.rifa-v2-page .carousel-badge {
    position: absolute;
    top: 7px;
    transform: translateY(-100%);
    left: 1rem;
    background-color: #fbbf24; /* Fallback amarelo - será sobrescrito por inline style */
    color: #000000 !important;
    padding: 0.12rem 0.5rem !important;
    border-radius: 0.5rem !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    z-index: 15;
    animation: blinkSlow 4s ease-in-out infinite;
    display: inline-block !important;
    cursor: default !important;
    pointer-events: none !important;
}

@keyframes blinkSlow {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Número da barra de progresso em preto */
.progress-text {
    color: #000 !important;
}

/* Frase de chamada dentro do título do carrossel */
.carousel-title .carousel-subtitle {
    display: block !important;
    font-size: 0.8rem !important;
    color: #ffffff !important;
    font-weight: 200 !important;
    text-align: left !important;
    margin-top: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Forçar menu hamburguer aparecer em todas as resoluções */
#close_in, #header_menu, .cmn-toggle-switch {
    display: block !important;
}

/* Esconder menu desktop horizontal em todas as telas */
@media only screen and (min-width: 992px) {
    .main-menu ul li {
        display: block !important;
        text-transform: none !important;
    }
}

/* Container centralizado de 700px para header e botão X */
.main-menu > #header_menu {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 15px 10px 15px;
    display: block;
    position: relative;
}

#header_menu img,
#header_menu h1 {
    margin: 0;
    text-align: left;
    display: inline-block;
}

/* Botão X de fechar posicionado absolutamente dentro do header_menu */
.main-menu > a#close_in {
    position: absolute !important;
    right: 15px !important;
    top: 25px !important;
    display: block !important;
    width: 30px;
    height: 30px;
    z-index: 10;
}

@media only screen and (min-width: 992px) {
    .main-menu > a#close_in {
        right: 50% !important;
        margin-right: -350px !important;
        margin-right: calc(-350px + 15px) !important;
        top: 25px !important;
    }
}

#close_in i {
    font-size: 24px !important;
    line-height: 30px;
    display: block;
    text-align: center;
}

.dark #close_in i {
    color: #fff !important;
}

.main-menu ul li a:hover,
a.show-submenu:hover,
a.show-submenu:focus,
a.show-submenu-mega:hover,
a.show-submenu-mega:focus {
    color: #E04F67 !important;
    background-color: #F9F9F9;
}

.dark .main-menu ul li a:hover,
.dark a.show-submenu:hover,
.dark a.show-submenu:focus,
.dark a.show-submenu-mega:hover,
.dark a.show-submenu-mega:focus {
    color: #e0e0e0 !important;
    background-color: #505050;
}

.main-menu ul li {
    border-top: none;
    border-bottom: 1px solid #EDEDED;
    color: #FFF;
}

/* Menu mobile first level */
.main-menu ul li a {
    padding: 10px 15px !important;
}

.main-menu h3 {
    font-size: 12px;
    line-height: 14px;
    margin: 0;
    padding: 0 0 15px 15px;
    color: #333;
    text-transform: uppercase;
}

.megamenu .menu-wrapper > div {
    padding: 0;
}

.main-menu li,
.main-menu a {
    display: block;
    color: #333 !important;
}

.dark .main-menu li,
.dark .main-menu a {
    color: #f9f9f9 !important;
}

.main-menu li {
    position: relative;
}

.main-menu a:hover {
    color: #E04F67 !important;
}

.main-menu ul > li {
    padding-bottom: 0;
}

.main-menu ul > li i {
    float: right;
}

/* Menu mobile second level */
.main-menu ul li.submenu ul {
    font-size: 12px;
    border-left: 1px solid #EDEDED;
    margin: 0 0 15px 25px;
}

.main-menu ul li.submenu ul li {
    font-size: 12px;
    border: 0;
}

/* Menu mobile 3rd level */
.main-menu ul li.submenu ul ul {
    border-left: none;
    margin: 0 0 0 15px;
}

/* Menu mobile - desce de cima */
.main-menu {
    overflow: auto;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #FFF;
    z-index: 999999;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 5px 10px 0px rgba(50, 50, 50, 0.3);
    -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.dark .main-menu {
    background-color: #252525;
}

.main-menu.show {
    transform: translateY(0);
    background-color: #0A0A0A;
}

/* Conteúdo do menu centralizado e limitado a 600px */
.main-menu > ul {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Centralizar itens do menu */
.main-menu ul li {
    text-align: center;
}

.main-menu ul li a {
    text-align: center;
}

.main-menu .show-submenu + ul,
a.show-submenu-mega + .menu-wrapper {
    display: none;
    visibility: hidden;
}

a.show-submenu-mega + .menu-wrapper.show_mega,
.main-menu a.show-submenu + ul.show_normal {
    display: block;
    visibility: visible;
}

/* Hamburger menu button */
.cmn-toggle-switch {
    position: relative;
    display: block;
    overflow: visible;
    position: absolute;
    top: 0;
    right: 20px;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.cmn-toggle-switch:focus {
    outline: none;
}

.cmn-toggle-switch span {
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    content: "";
}

.sticky .cmn-toggle-switch span::before,
.sticky .cmn-toggle-switch span::after,
.sticky .cmn-toggle-switch span {
    background-color: #333;
}

/* Header plain */
header#plain .cmn-toggle-switch span::before,
header#plain .cmn-toggle-switch span::after,
header#plain .cmn-toggle-switch span,
header#plain.sticky .cmn-toggle-switch span::before,
header#plain.sticky .cmn-toggle-switch span::after {
    background-color: #333;
}

.dark header#plain .cmn-toggle-switch span::before,
.dark header#plain .cmn-toggle-switch span::after,
.dark header#plain .cmn-toggle-switch span,
.dark header#plain.sticky .cmn-toggle-switch span::before,
.dark header#plain.sticky .cmn-toggle-switch span::after {
    background-color: #e0e0e0;
}

/* Header transparent colored */
header#colored.sticky .cmn-toggle-switch span::before,
header#colored.sticky .cmn-toggle-switch span::after,
header#colored.sticky .cmn-toggle-switch span {
    background-color: #FFF;
}

.cmn-toggle-switch span::before {
    top: -10px;
}

.cmn-toggle-switch span::after {
    bottom: -10px;
}

.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}

.cmn-toggle-switch__htx span::before {
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.cmn-toggle-switch__htx span::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active span {
    background: none !important;
}

.cmn-toggle-switch__htx.active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cmn-toggle-switch__htx.active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
    -webkit-transition-delay: 0, 0.3s;
    transition-delay: 0, 0.3s;
}

/* Mobile pequeno - menu full width */
@media only screen and (max-width: 480px) {
    .main-menu {
        width: 100%;
    }

    a#close_in {
        display: block;
        position: absolute;
        right: 15px;
        top: 10px;
        width: 20px;
        height: 20px;
    }

    #close_in i {
        color: #555 !important;
        font-size: 16px;
    }
}

/* ===== TEMA LIGHT - MENU HAMBURGUER ===== */

/* Background do menu - tema light */
.light .main-menu {
    background-color: #ffffff !important;
}

.light .main-menu.show {
    background-color: #ffffff !important;
}

/* Links do menu - tema light */
.light .main-menu li,
.light .main-menu a {
    color: #1f2937 !important;
}

/* Hover dos links - tema light */
.light .main-menu ul li a:hover,
.light .main-menu a:hover,
.light a.show-submenu:hover,
.light a.show-submenu:focus,
.light a.show-submenu-mega:hover,
.light a.show-submenu-mega:focus {
    color: #1f2937 !important;
    background-color: #f3f4f6 !important;
}

/* Bordas dos itens - tema light */
.light .main-menu ul li {
    border-bottom: 1px solid #e5e7eb;
}

/* Submenu - tema light */
.light .main-menu ul li.submenu ul {
    border-left: 1px solid #e5e7eb;
}

/* Título do submenu - tema light */
.light .main-menu h3 {
    color: #1f2937;
}

/* Botão X de fechar - tema light */
.light #close_in i {
    color: #1f2937 !important;
}

/* Ícone hamburguer - tema light */
.light header#plain .cmn-toggle-switch span::before,
.light header#plain .cmn-toggle-switch span::after,
.light header#plain .cmn-toggle-switch span,
.light header#plain.sticky .cmn-toggle-switch span::before,
.light header#plain.sticky .cmn-toggle-switch span::after {
    background-color: #1f2937 !important;
}

/* ========================================
   CHECKOUT NEW LAYOUT
   ======================================== */

#checkout-new-layout {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

#checkout-new-layout .success-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

#checkout-new-layout .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

#checkout-new-layout .success-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    color: #6b7280;
}

.dark #checkout-new-layout .success-title {
    color: #9ca3af;
}


checkout page

#checkout-new-layout {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
#checkout-new-layout .success-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
#checkout-new-layout .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #10b981;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
#checkout-new-layout .success-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    color: #6b7280;
}
.dark #checkout-new-layout .success-title {
    color: #9ca3af;
}
#checkout-new-layout .info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dark #checkout-new-layout .info-card {
    background: #1f2937;
    border-color: #374151;
}
#checkout-new-layout .card-title {
    background: #f9fafb;
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.dark #checkout-new-layout .card-title {
    background: #111827;
    color: #e5e7eb !important;
    border-bottom-color: #374151;
}
#checkout-new-layout .card-title i {
    color: #fbbf24 !important;
    font-size: 1.25rem;
}
.dark #checkout-new-layout .card-title i {
    color: #fbbf24 !important;
}
#checkout-new-layout .card-title span {
    color: #1f2937 !important;
}
.dark #checkout-new-layout .card-title span {
    color: #e5e7eb !important;
}
#checkout-new-layout .info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    gap: 1rem;
}
.dark #checkout-new-layout .info-item {
    border-bottom-color: #374151;
}
#checkout-new-layout .info-item:last-child {
    border-bottom: none;
}
#checkout-new-layout .info-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 14px;
}
.dark #checkout-new-layout .info-label {
    color: #9ca3af;
}
#checkout-new-layout .info-value {
    font-weight: 400;
    color: #111827;
    font-size: 12.8px;
    text-align: right;
}
.dark #checkout-new-layout .info-value {
    color: #f3f4f6;
}
#checkout-new-layout .total-item {
    background: #f9fafb;
    font-weight: 600;
    padding: 1rem 1.25rem;
}
.dark #checkout-new-layout .total-item {
    background: #111827;
}
#checkout-new-layout .total-value {
    color: #10b981 !important;
    font-size: 1.25rem;
    font-weight: 700;
}
.dark #checkout-new-layout .total-value {
    color: #10b981 !important;
}
#checkout-new-layout .raffle-image {
    padding: 1rem 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
#checkout-new-layout .raffle-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
#checkout-new-layout .payment-section {
    margin-bottom: 2rem;
}
#checkout-new-layout .payment-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.dark #checkout-new-layout .payment-title {
    color: #e5e7eb !important;
}
#checkout-new-layout .payment-title i {
    color: #fbbf24 !important;
    font-size: 1.25rem;
}
.dark #checkout-new-layout .payment-title i {
    color: #fbbf24 !important;
}
#checkout-new-layout .payment-title span {
    color: #1f2937 !important;
}
.dark #checkout-new-layout .payment-title span {
    color: #e5e7eb !important;
}
#checkout-new-layout .payment-methods {
    display: grid;
    gap: 1rem;
}
#checkout-new-layout .payment-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dark #checkout-new-layout .payment-card {
    background: #1f2937;
    border-color: #374151;
}
#checkout-new-layout .payment-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}
#checkout-new-layout .payment-logo {
    text-align: center;
    margin-bottom: 1rem;
}
#checkout-new-layout .payment-logo img {
    max-width: 120px;
    height: auto;
}
#checkout-new-layout .payment-content {
    text-align: center;
    font-size: 0.9rem;
    color: #4b5563;
}
.dark #checkout-new-layout .payment-content {
    color: #d1d5db;
}
#checkout-new-layout .receipt-section {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.dark #checkout-new-layout .receipt-section {
    background: #1e3a5f;
    border-color: #1e40af;
}
#checkout-new-layout .receipt-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 1rem 0;
}
.dark #checkout-new-layout .receipt-title {
    color: #93c5fd;
}
#checkout-new-layout .receipt-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
#checkout-new-layout .btn-receipt {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
#checkout-new-layout .btn-system {
    background: #3b82f6;
    color: #fff;
}
#checkout-new-layout .btn-system:hover {
    background: #2563eb;
}
#checkout-new-layout .btn-whatsapp {
    background: #25d366;
    color: #fff;
}
#checkout-new-layout .btn-whatsapp:hover {
    background: #20ba5a;
}
/* ===== TIMER ===== */
#checkout-new-layout .timer-box {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #92400e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.dark #checkout-new-layout .timer-box {
    background: #451a03;
    border-color: #d97706;
    color: #fbbf24;
}
#checkout-new-layout .timer-display {
    font-weight: 700;
    font-size: 1.1rem;
    color: #b45309;
}
.dark #checkout-new-layout .timer-display {
    color: #fbbf24;
}
/* ===== PAYMENT BOX ===== */
#checkout-new-layout .payment-box {
    margin-bottom: 2rem;
}
#checkout-new-layout .pix-qrcode {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.dark #checkout-new-layout .pix-qrcode {
    background: #1f2937;
    border-color: #374151;
}
#checkout-new-layout .qrcode-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}
/* ===== FORMULÁRIO DE PAGAMENTO ===== */
#checkout-new-layout .payment-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}
.dark #checkout-new-layout .payment-form {
    background: #1f2937;
    border-color: #374151;
}
#checkout-new-layout .form-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.dark #checkout-new-layout .form-title {
    color: #e5e7eb !important;
}
#checkout-new-layout .form-title i {
    color: #fbbf24 !important;
}
#checkout-new-layout .form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#checkout-new-layout .form-group {
    margin: 0;
}
#checkout-new-layout .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #111827;
}
.dark #checkout-new-layout .form-control {
    background: #111827;
    border-color: #4b5563;
    color: #f3f4f6;
}
#checkout-new-layout .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.dark #checkout-new-layout .form-control:focus {
    border-color: #60a5fa;
}
#checkout-new-layout .form-control::placeholder {
    color: #9ca3af;
}
.dark #checkout-new-layout .form-control::placeholder {
    color: #6b7280;
}
/* ===== BOTÕES ===== */
#checkout-new-layout .back-payment {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.dark #checkout-new-layout .back-payment {
    border-color: #4b5563;
    color: #9ca3af;
}
#checkout-new-layout .back-payment:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.dark #checkout-new-layout .back-payment:hover {
    background: #374151;
    border-color: #6b7280;
}
#checkout-new-layout .btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}
#checkout-new-layout .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
#checkout-new-layout .btn-submit:active {
    transform: translateY(0);
}
/* ===== UTILITY ===== */
.hidden {
    display: none !important;
}
#checkout-new-layout .hidden {
    display: none !important;
}
#checkout-new-layout .bank-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.dark #checkout-new-layout .bank-name {
    color: #f3f4f6;
}
#checkout-new-layout .bank-info {
    margin: 0.25rem 0;
    color: #6b7280;
    font-size: 0.85rem;
}
.dark #checkout-new-layout .bank-info {
    color: #9ca3af;
}
#checkout-new-layout .pix-key {
    font-weight: 500;
    color: #059669;
    background: #d1fae5;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    word-break: break-all;
}
.dark #checkout-new-layout .pix-key {
    background: #064e3b;
    color: #6ee7b7;
}
#checkout-new-layout .pending-text {
    color: #f59e0b;
    font-style: italic;
    font-size: 0.85rem;
}
#checkout-new-layout .numbers-list {
    max-height: 150px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
}
.dark #checkout-new-layout .numbers-list {
    background: #111827;
}
#checkout-new-layout .participant-message {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.dark #checkout-new-layout .participant-message {
    background: #1f2937;
    color: #e5e7eb;
}
#checkout-new-layout .discount-value {
    color: #ef4444;
}
/* ===== ESTILOS PARA ELEMENTOS FORA DO WRAPPER ===== */
#box_payment {
    max-width: 600px;
    margin: 2rem auto !important;
    display: block !important;
}
#box_payment.hidden {
    display: none !important;
}
#box_payment .payment-form,
#box_payment #frm-payment {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}
.dark #box_payment .payment-form,
.dark #box_payment #frm-payment {
    background: #1f2937;
    border-color: #374151;
}
#box_payment h5 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 0 0 1.5rem 0;
}
.dark #box_payment h5 {
    color: #e5e7eb !important;
}
#box_payment h5 i {
    color: #fbbf24 !important;
}
#box_payment .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffffff;
    color: #111827;
}
.dark #box_payment .form-control {
    background: #111827;
    border-color: #4b5563;
    color: #f3f4f6;
}
#box_payment .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
#box_payment .btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
}
#box_payment .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
#box_payment .form-group {
    margin-bottom: 1rem;
}
#box_payment .back-payment {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 640px) {
    #checkout-new-layout {
        padding: 2rem 1rem !important;
    }
    #checkout-new-layout .info-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    #checkout-new-layout .receipt-buttons {
        flex-direction: column;
    }
    #checkout-new-layout .btn-receipt {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   LOADER PIX - CHECKOUT
   ======================================== */

/* Loader PIX */
#checkout-new-layout .pix-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem;
}

#checkout-new-layout .pix-loader-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #fbbf24;
    border-radius: 50%;
    animation: pixSpin 0.8s linear infinite;
}

.dark #checkout-new-layout .pix-loader-spinner {
    border-color: #374151;
    border-top-color: #fbbf24;
}

@keyframes pixSpin {
    to { transform: rotate(360deg); }
}

#checkout-new-layout .pix-loader-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.dark #checkout-new-layout .pix-loader-text {
    color: #9ca3af;
}