/* ===== PIX CHECKOUT STYLES ===== */
#qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: white;
    border-radius: 8px;
    padding: 15px;
}

#qr-code img {
    max-width: 200px;
    max-height: 200px;
}

#qr-code canvas {
    max-width: 200px !important;
    max-height: 200px !important;
}

.spinner-pix {
    width: 3rem;
    height: 3rem;
}

.form-control:focus {
    border-color: #ff3030 !important;
    box-shadow: 0 0 0 0.15rem rgba(255, 48, 48, 0.25) !important;
}

/* ===== QUANTITY BUTTONS ===== */
.btn-quantity-item {
    background-color: rgb(0, 0, 0) !important;
    color: white !important;
    border: 2px solid rgb(0, 0, 0) !important;
    border-radius: 8px !important;
    padding: 8px 4px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    min-width: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-quantity-item:hover {
    background-color: rgb(30, 30, 30) !important;
    border-color: rgb(30, 30, 30) !important;
    transform: translateY(-1px) !important;
}

.btn-quantity-item.selected {
    background-color: rgb(0, 0, 0) !important;
    border-color: #ff3030 !important;
    box-shadow: 0 0 0 2px rgba(255, 48, 48, 0.3) !important;
}

.btn-quantity-item.mais-popular {
    background-color: rgb(255, 227, 213) !important;
    color: #000 !important;
    border-color: #ff3030 !important;
    position: relative !important;
}

.btn-quantity-item.mais-popular .badge-popular {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff3030;
    color: white;
    font-size: 0.55rem;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 2;
}

/* ===== PACKAGE BUTTONS ===== */
.btn-pacote-titulos {
    background-color: rgb(0, 0, 0) !important;
    border-color: rgb(0, 0, 0) !important;
    color: white !important;
    transition: all 0.2s ease !important;
}

.btn-pacote-titulos:hover {
    background-color: rgb(30, 30, 30) !important;
    border-color: rgb(30, 30, 30) !important;
    transform: translateY(-1px) !important;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn-success {
    background-color: #ff3030 !important;
    border-color: #ff3030 !important;
}

.btn-success:hover {
    background-color: #d42828 !important;
    border-color: #d42828 !important;
}

.btn-primary {
    background-color: #ff3030 !important;
    border-color: #ff3030 !important;
}

.btn-primary:hover {
    background-color: #d42828 !important;
    border-color: #d42828 !important;
}

.btn-outline-primary {
    color: #ff3030 !important;
    border-color: #ff3030 !important;
}

.btn-outline-primary:hover {
    background-color: #ff3030 !important;
    border-color: #ff3030 !important;
    color: white !important;
}

.text-primary {
    color: #ff3030 !important;
}

.bg-primary {
    background-color: #ff3030 !important;
}

/* ===== PLUS/MINUS BUTTONS ===== */
.btn-plus-minus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #ff3030;
    background: white;
    color: #ff3030;
    transition: all 0.2s ease;
}

.btn-plus-minus:hover {
    background: #ff3030;
    color: white;
}

/* ===== PARTICIPAR BUTTON ===== */
.btn-participar-sorteio {
    background-color: #ff3030 !important;
    border-color: #ff3030 !important;
    color: white !important;
    font-weight: bold !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    transition: all 0.2s ease !important;
}

.btn-participar-sorteio:hover {
    background-color: #d42828 !important;
    border-color: #d42828 !important;
    transform: translateY(-1px) !important;
}

/* ===== GENERAL STYLES ===== */
body {
    background-color: rgb(223, 227, 232);
}

.font-xs {
    font-size: 0.8rem;
}

.font-xss {
    font-size: 0.75rem;
}

.font-xsss {
    font-size: 0.7rem;
}

/* ===== HEADER ===== */
.app-header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.app-header .navbar-brand img {
    height: 40px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
}

.hero-section .carousel-item img {
    width: 100%;
    border-radius: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    overflow-y: auto;
}

.mobile-menu-overlay.show {
    display: block;
}

.mobile-menu-overlay .nav-link {
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-overlay .nav-link:hover {
    color: #ff3030;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: white;
    font-size: 1.5rem;
}

/* ===== REGULATION SECTION ===== */
.regulation-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.regulation-content h6 {
    color: #333;
    font-weight: bold;
}

.regulation-content p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.app-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px 0;
}

.app-footer a {
    color: #ff3030;
    text-decoration: none;
}

.app-footer img {
    max-height: 40px;
    margin: 5px 10px;
}

/* ===== MODAL CUSTOMIZATIONS ===== */
.modal-content {
    background-color: var(--incrivel-modalBg, rgb(223, 227, 232));
}

/* ===== CARDS SECTION ===== */
.card-premio {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== ALERTS ===== */
.alert-light {
    background-color: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
}

/* ===== GANHADORES TABLE ===== */
.table-ganhadores {
    font-size: 0.8rem;
}

.table-ganhadores td {
    vertical-align: middle;
}
