
:root{
  --white:#ffffff;
  --white-dark:#ffffff;

  --bg:#000000;          /* 60% base */
  --primary:#050BFD;     /* 30% action */
  --primary-dark:#040AE0;
  --primary-darker:#0308C0;
  --accent:#050BFD;      /* 10% highlight */
  --text:#FFFFFF;
  --text-muted:#B0B8C1;
  --danger:#E63946;
}

/* Utility helpers */
.text-accent{ color: var(--accent) !important; }
.badge-accent{ background: #050BFD; color:#050BFD; font-weight:700; padding:.25rem .5rem; border-radius:.5rem; }
.btn-primary{ background: #050BFD; color:#fff; border-radius:12px; padding:.75rem 1.25rem; box-shadow:0 4px 20px rgba(5,11,253,.35); transition:all .3s ease;   justify-content: center;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 28px rgba(5,11,253,.45); }
.alert-light{ background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.5); color:#ffffff; padding:.75rem 1rem; border-radius:.75rem; }



.badge-accent{ background: #050BFD; color:#050BFD; font-weight:700; padding:.25rem .5rem; border-radius:.5rem; }
.btn-primary{ background: #050BFD; color:#fff; border-radius:12px; padding:.75rem 1.25rem; box-shadow:0 4px 20px rgba(5,11,253,.35); transition:all .3s ease;   justify-content: center;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 28px rgba(5,11,253,.45); }
.alert-light{ background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.5); color:#ffffff; padding:.75rem 1rem; border-radius:.75rem; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 11, 253, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    min-height: 80px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    min-height: 60px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    max-height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    object-fit: contain;
}

.logo img {
    max-width: 110px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    color: #050BFD;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #050BFD;
}

.btn-register {
    background: #050BFD;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(5, 11, 253, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 11, 253, 0.4);
}

/* Hero Section */
.hero-section {
    margin-top: 100px;
    padding: 4rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050BFD;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-cta {
    background: #050BFD;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    background: #050BFD;
}

.hero-visuals {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.money-stack {
    width: 200px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="10" y="20" width="180" height="80" rx="8" fill="%23059669" stroke="%23047857" stroke-width="2"/><text x="100" y="70" text-anchor="middle" fill="white" font-family="Arial" font-size="24" font-weight="bold">100</text><text x="100" y="45" text-anchor="middle" fill="white" font-family="Arial" font-size="10">REPÚBLICA FEDERATIVA DO BRASIL</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    transform: rotate(-5deg);
}

.money-stack::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="10" y="20" width="180" height="80" rx="8" fill="%23059669" stroke="%23047857" stroke-width="2"/><text x="100" y="70" text-anchor="middle" fill="white" font-family="Arial" font-size="24" font-weight="bold">100</text><text x="100" y="45" text-anchor="middle" fill="white" font-family="Arial" font-size="10">REPÚBLICA FEDERATIVA DO BRASIL</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
}

/* ========================================
   STEPS & GAMES SECTIONS - MODERN DESIGN
   ======================================== */

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Connecting Lines */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--primary) 33%, 
        rgba(5, 11, 253, 0.3) 33%, 
        rgba(5, 11, 253, 0.3) 66%, 
        rgba(5, 11, 253, 0.3) 66%, 
        rgba(5, 11, 253, 0.3) 100%
    );
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(5, 11, 253, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6b7280;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(5, 11, 253, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon:hover::before,
.step-icon.active::before {
    opacity: 1;
}

.step-icon.active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 
        0 0 30px rgba(5, 11, 253, 0.3),
        0 0 60px rgba(5, 11, 253, 0.1);
    background: linear-gradient(145deg, rgba(5, 11, 253, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.step-icon:hover {
    border-color: rgba(34, 197, 94, 0.6);
    color: var(--primary);
    transform: scale(1.05);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-title.active {
    color: var(--primary);
}

.step-item:hover .step-title {
    color: var(--primary);
}

.step-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.step-item:hover .step-description {
    color: #e5e7eb;
}

/* Games Section */
.games-section {
    padding: 4rem 2rem;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.game-category {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(5, 11, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-category:hover::before {
    opacity: 1;
}

.game-category:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 11, 253, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(5, 11, 253, 0.1);
}

.game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 3px solid rgba(5, 11, 253, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.game-category:hover .game-icon {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 
        0 0 40px rgba(5, 11, 253, 0.3),
        0 0 80px rgba(5, 11, 253, 0.1);
    transform: scale(1.05);
}

.game-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.game-category:hover .game-title {
    color: var(--primary);
}

.game-description {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.game-category:hover .game-description {
    color: #e5e7eb;
}

.game-btn {
    background: #050BFD;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(5, 11, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-btn:hover {
    background: #050BFD;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 11, 253, 0.4);
    color: white;
}

.game-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.game-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .steps-section,
    .games-section {
        padding: 3rem 1rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-category {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .game-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .game-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .game-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .game-category {
        padding: 2rem 1rem;
    }
    
    .game-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .game-title {
        font-size: 1.4rem;
    }
    
    .game-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Animation on scroll */
.step-item,
.game-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-item.animate-fade-in-up,
.game-category.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.2s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.4s; }

.game-category:nth-child(1) { transition-delay: 0.1s; }
.game-category:nth-child(2) { transition-delay: 0.3s; }

/* Prize Carousel */
.prize-carousel {
    padding: 2rem 0;
    background: var(--bg);
    overflow: hidden;
}

.prize-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    padding: 1rem 0;
}

.prize-item {
    min-width: 200px;
    background: linear-gradient(135deg, rgba(5, 11, 253, 0.1), rgba(16, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    white-space: nowrap;
}

.prize-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.prize-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.prize-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(5, 11, 253, 0.1);
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(5, 11, 253, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Added by ChatGPT: make the Depositar button green */
.btn-deposit {
  background: #28a745 !important;
  color: #fff !important;
  border: none !important;
  padding: .75rem 1.25rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: .5rem !important;
  justify-content: center !important;
  box-shadow: none !important;
}
.btn-deposit:hover{ transform:translateY(-2px); box-shadow:0 8px 28px rgba(34,197,94,.45); }



/* --- FIX: Mobile header + logo spacing (2025-08-21) --- */
@media (max-width: 480px){
  .header{ padding: .75rem 0; min-height: 72px; }
  .logo{ min-height: 56px; }
  .logo img{ max-height: 60px; max-width: 110px; }
  .nav-menu{ gap: .75rem; }
  .nav-menu .btn, .nav-menu .button, .nav-menu a.button{ padding: .5rem .75rem; font-size: .95rem; }
}



@media (max-width: 480px){
  }


/* evita que o botão cubra o conteúdo no mobile */


/* um pouco mais acima */
  z-index: 1000;
  padding: 0.5rem;
  background: transparent;
  pointer-events: none;
}
.whiteen-cta__content{
  pointer-events: auto;
  margin: 0 auto;
  width: min(980px, 95vw);
  border-radius: 16px;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap:.75rem;
  background: #050BFD !important;
  color: #fff; /* letras brancas */
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.whiteen-cta__text{ display:flex; flex-direction:column; line-height:1.1; }
.whiteen-cta__title{ font-size:.85rem; letter-spacing:.06em; opacity:.9; }
.whiteen-cta__subtitle{ font-size:1.2rem; }
.whiteen-cta__arrow{ font-size:1.6rem; }
@media (min-width:768px){
  .whiteen-cta__title{ font-size:.95rem; }
  .whiteen-cta__subtitle{ font-size:1.35rem; }
  .whiteen-cta__arrow{ font-size:1.8rem; }
}
body{ padding-bottom: 160px; } /* garante espaço no mobile */


/* novo amarelo dourado */
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.whiteen-cta__text{ display:flex; flex-direction:column; line-height:1.1; }
.whiteen-cta__title{ font-size:.85rem; letter-spacing:.06em; color:#fff; } /* PROMOÇÃO ATIVA branco */
.whiteen-cta__subtitle{ font-size:1.2rem; color: #050BFD; } /* +150% DE BÔNUS verde do site */
.whiteen-cta__arrow{ font-size:1.6rem; color:#fff; }
@media (min-width:768px){
  .whiteen-cta__title{ font-size:.95rem; }
  .whiteen-cta__subtitle{ font-size:1.35rem; }
  .whiteen-cta__arrow{ font-size:1.8rem; }
}
body{ padding-bottom: 160px; }


/* agora branco */
.whiteen-cta__arrow{ font-size:1.6rem; color:#fff; }
@media (min-width:768px){
  .whiteen-cta__title{ font-size:.95rem; }
  .whiteen-cta__subtitle{ font-size:1.35rem; }
  .whiteen-cta__arrow{ font-size:1.8rem; }
}
body{ padding-bottom: 160px; }


/* === Golden Bottom CTA (fixo) === */
.whiteen-cta{
  position: fixed;
  left: 0; right: 0; bottom: 70px;
  z-index: 1000;
  padding: 0.5rem;
  background: transparent !important;
  pointer-events: none;
}
.whiteen-cta__content{
  pointer-events: auto;
  margin: 0 auto;
  width: min(980px, 95vw);
  border-radius: 16px;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap:.75rem;
  background: #050BFD !important;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.whiteen-cta__text{ display:flex; flex-direction:column; line-height:1.1; }
.whiteen-cta__title{ font-size:.85rem; letter-spacing:.06em; color:#fff; } /* PROMOÇÃO ATIVA branco */
.whiteen-cta__subtitle{ font-size:1.2rem; }
.whiteen-cta__subtitle .amount{ color: #050BFD; } /* +150% verde do site */
.whiteen-cta__subtitle .label{ color:#fff; } /* DE BÔNUS branco */
.whiteen-cta__arrow{ font-size:1.6rem; color:#fff; }
@media (min-width:768px){
  .whiteen-cta__title{ font-size:.95rem; }
  .whiteen-cta__subtitle{ font-size:1.35rem; }
  .whiteen-cta__arrow{ font-size:1.8rem; }
}
body{ padding-bottom: 160px; }


/* === Bottom CTA (whiteen-cta) overrides === */
.whiteen-cta__content{
  background: #050BFD !important;
  color: #fff !important;
}
.whiteen-cta__title{ color:#fff !important; }
.whiteen-cta__arrow{ color:#fff !important; }
.whiteen-cta__subtitle .amount{
  background: #050BFD;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #050BFD;
  background-clip: text;
  color: #050BFD;
  font-weight: 900;
}
.whiteen-cta__subtitle .label{ color:#fff !important; }

/* Força fundo preto em toda a tela inicial */
body { background:#000000 !important; }


/* Força fundo preto também nos containers principais da home */
.main-content, .home-section, .hero-section, .content, .page-wrapper {
  background: #000000 !important;
  background-color: #000000 !important;
}



/* Overrides específicos da home para garantir fundo 100% preto atrás dos banners */
main,
.main,
.page-wrapper,
.content,
.hero-section,
.home-section,
.section,
.container-fluid.home,
body > main {
  background: #000000 !important;
  background-color: #000000 !important;
}



/* Ícone novo do presente (emoji) */
.whiteen-cta__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 1.25rem;
  margin-right: .5rem;
  line-height: 1;
}

/* Desktop: deixa a barra menor no canto inferior direito */
@media (min-width: 1024px){
  .whiteen-cta{
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    width: auto;
  }
  .whiteen-cta__content{
    width: 360px; /* compacto no desktop */
    border-radius: 14px;
    padding: .8rem 1rem;
  }
  .whiteen-cta__title{ font-size: .9rem; }
  .whiteen-cta__subtitle{ font-size: 1.1rem; }
  .whiteen-cta__icon{ font-size: 1.6rem; } /* maior como a 2ª foto */
  .whiteen-cta__arrow{ font-size: 1.4rem; }
}



/* === Golden CTA refinado (layout igual ao de referência, mantendo cores atuais) === */
.whiteen-cta{
  position: fixed;
  left: 0; right: 0; bottom: 70px;
  z-index: 1000;
  padding: 0.5rem;
  background: transparent !important;
  pointer-events: none;
}
.whiteen-cta__content{
  pointer-events: auto;
  margin: 0 auto;
  width: min(980px, 95vw);
  border-radius: 16px;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap:.75rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.whiteen-cta__text{ display:flex; flex-direction:column; line-height:1.1; }
.whiteen-cta__title{ font-size:.85rem; letter-spacing:.06em; }
.whiteen-cta__subtitle{ display:flex; align-items:baseline; gap:.35rem; font-size:1.2rem; }
.whiteen-cta__subtitle .amount{ display:inline-flex; align-items:baseline; gap:0; font-weight:900; }
.whiteen-cta__subtitle .amount .num{ font-size:1.1em; }
.whiteen-cta__subtitle .label{ display:inline-block; font-weight:800; }
.whiteen-cta__arrow{ font-size:1.4rem; }

/* Blocos laterais para alinhar como no layout roxo */
.whiteen-cta__left{ display:flex; align-items:center; justify-content:center; }
.whiteen-cta__right{ display:flex; align-items:center; justify-content:center; }

/* Icone do presente grande */
.whiteen-cta__icon{
  display:inline-flex; align-items:center; justify-content:center;
  font-size: 1.25rem; line-height:1; width:auto; height:auto;
}

/* Botão fechar em forma de bolinha, posicionado no canto superior direito do card */
.whiteen-cta__close{
  position:absolute; top:-10px; right:-10px;
  width:28px; height:28px; border-radius:50%;
  border:0; cursor:pointer;
  background: #050BFD; color:#fff; font-size:18px; line-height:28px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}

/* Seta dentro de círculo à direita */
.whiteen-cta__arrow-circle{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background: rgba(255,255,255,.22); color:#fff; font-weight:900;
  font-size: 1.15rem;
}

/* Desktop: compacto no canto inferior direito (mesmo layout do roxo) */
@media (min-width:1024px){
  .whiteen-cta{ left:auto; right:24px; bottom:24px; padding:0; width:auto; }
  .whiteen-cta__content{
    width: 340px; border-radius: 16px; padding: .9rem 1rem; position:relative;
    box-shadow: 0 16px 32px rgba(0,0,0,.45), 0 0 22px rgba(0,0,0,.25); /* leve glow */
  }
  .whiteen-cta__left{ margin-right:.3rem; }
  .whiteen-cta__icon{ font-size: 1.8rem; } /* ícone maior no desktop */
  .whiteen-cta__title{ font-size:.9rem; }
  .whiteen-cta__subtitle{ font-size:1.1rem; }
  .whiteen-cta__arrow-circle{ width:36px; height:36px; font-size:1.1rem; }
}

/* Garantir baseline igual do valor e rótulo */
.whiteen-cta__subtitle .amount, .whiteen-cta__subtitle .label{
  vertical-align: baseline;
}



/* === Ajustes finais: texto branco e bloco de texto colado no ícone === */
.whiteen-cta__title,
.whiteen-cta__subtitle,
.whiteen-cta__subtitle .amount,
.whiteen-cta__subtitle .label {
  color: #FFFFFF !important;
}

/* Aproximar texto do ícone (desktop e mobile) */
.whiteen-cta__content { gap: .5rem; }
.whiteen-cta__left { margin-right: .35rem; }
.whiteen-cta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .15rem; /* título e subtítulo mais juntinhos */
}

/* Desktop: ainda mais juntinho */
@media (min-width: 1024px){
  .whiteen-cta__left { margin-right: .3rem; }
  .whiteen-cta__content { padding-left: .9rem; padding-right: .9rem; }
  .whiteen-cta__text { gap: .12rem; }
}



/* === Ajustes fortes: tudo branco + texto colado no ícone === */
.whiteen-cta__title,
.whiteen-cta__subtitle,
.whiteen-cta__subtitle .amount,
.whiteen-cta__subtitle .label,
.whiteen-cta__text * {
  color: #FFFFFF !important;
  background: #050BFD;
  -webkit-text-fill-color: #FFFFFF !important;
  background-clip: border-box !important;
  -webkit-background-clip: initial !important;
}

/* Deixar o texto literalmente do lado do ícone, com quase nada de espaço */
.whiteen-cta__content { gap: 0.25rem !important; align-items: center !important; }
.whiteen-cta__left { margin-right: 0.2rem !important; }
.whiteen-cta__text { gap: 0.05rem !important; }

/* Desktop: compacto e mais colado ainda */
@media (min-width: 1024px){
  .whiteen-cta__content{ width: 330px !important; padding-left: .8rem !important; padding-right: .8rem !important; }
  .whiteen-cta__left{ margin-right: 0.16rem !important; }
}



/* === Fix: texto ao ladinho do ícone (alinhado à esquerda) === */
.whiteen-cta__content{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:.3rem !important;
}
.whiteen-cta__left{ display:flex !important; align-items:center !important; justify-content:center !important; margin-right:.25rem !important; }
.whiteen-cta__text{ display:flex !important; flex-direction:column !important; align-items:flex-start !important; text-align:left !important; gap:.1rem !important; }
.whiteen-cta__right{ margin-left:auto !important; display:flex !important; align-items:center !important; }
.whiteen-cta__icon{ font-size:1.8rem !important; line-height:1 !important; }
.whiteen-cta__title, .whiteen-cta__subtitle, .whiteen-cta__subtitle .amount, .whiteen-cta__subtitle .label, .whiteen-cta__text *{
  color:#fff !important;
  background:#050BFD;
  -webkit-text-fill-color:#fff !important;
  background-clip:border-box !important;
  -webkit-background-clip:initial !important;
}

/* Desktop compacto no canto */
@media (min-width:1024px){
  .whiteen-cta{ left:auto !important; right:24px !important; bottom:24px !important; padding:0 !important; }
  .whiteen-cta__content{ width: 330px !important; padding:.8rem .9rem !important; }
}


:root{ --header-height: 72px; }

/* Safe top space under fixed header (mobile only) */
@media (max-width: 480px){
  main{ padding-top: 30px !important; }
}
/* Override for home title: force white */
.hero-subtitle{color:#FFFFFF !important;}


/* === Header: saldo ao lado do botão Depositar ===
   Mantém a arquitetura do tema e define apenas a cor do texto
   do componente de saldo, sem alterar utilitários globais. */
.balance-display {
    color: var(--text);
}
.balance-display #headerSaldo {
    color: var(--text);
}

