/* ===== BONUS SEM DEPOSITO PAGE STYLES ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f26;
    --bg-card: #252b33;
    --bg-elevated: #2d343d;
    --text-primary: #ffffff;
    --text-secondary: #b3bcc7;
    --text-muted: #6b7480;
    --accent-color: #00ff88;
    --accent-hover: #00e67a;
    --border-color: #3d444d;
    --warning-color: #ff6b35;
    
    /* Gradients */
    --secondary-gradient: linear-gradient(135deg, #00ff88 0%, #00b865 100%);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--bg-secondary);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--text-sm);
}

.breadcrumb-nav a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--accent-hover);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* ===== BONUS HERO SECTION ===== */
.bonus-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gift" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%2300ff8820"/></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>');
    opacity: 0.3;
}

.bonus-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-hero h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.bonus-hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bonus-hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* ===== FILTER SECTION ===== */
.bonus-filters {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-md) var(--spacing-xl);
    position: sticky;
    top: 60px;
    z-index: 50;
    backdrop-filter: blur(15px);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-normal);
}

.bonus-filters:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.filter-header {
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.filter-header h2 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    margin: 0;
}

.filter-header h2 i {
    color: var(--accent-color);
    font-size: var(--text-base);
}

.filter-controls {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    min-width: 130px;
}

.filter-group label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    font-size: var(--text-sm);
    min-width: 130px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
    background: var(--bg-elevated);
}

.filter-select:hover {
    border-color: var(--accent-color);
    background: var(--bg-elevated);
    transform: translateY(-1px);
}

.filter-actions {
    display: flex;
    gap: var(--spacing-md);
}

.filter-actions .btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    white-space: nowrap;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.filter-actions .btn:hover {
    transform: translateY(-1px);
}

/* ===== BONUS CONTENT ===== */
.bonus-content {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.section-header h2 i {
    color: var(--accent-color);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FEATURED OFFERS ===== */
.featured-section {
    margin-bottom: var(--spacing-3xl);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

/* ===== BONUS CARDS ===== */
.bonus-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.bonus-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.bonus-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--bg-card) 100%);
}

.bonus-card.featured::before {
    content: 'DESTAQUE';
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

/* ===== CASINO LOGO STYLING ===== */
.casino-logo {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-primary);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

/* ===== CASINO LOGO IMAGES ===== */
.bonus-header img {
    width: 45px !important;
    height: 45px !important;
    border-radius: var(--radius-md) !important;
    object-fit: cover !important;
    border: 1px solid var(--border-color) !important;
    transition: all var(--transition-fast) !important;
    flex-shrink: 0 !important;
}

.bonus-header img:hover {
    transform: scale(1.05) !important;
    border-color: var(--accent-color) !important;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars .star {
    color: #FFD700;
    font-size: var(--text-xs);
}

.rating-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.bonus-offer {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 255, 136, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.bonus-amount {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
}

.bonus-type {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.bonus-description {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.bonus-details {
    margin-bottom: var(--spacing-md);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--text-xs);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.detail-value.highlight {
    color: var(--accent-color);
}

.bonus-terms {
    background: var(--bg-secondary);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.bonus-terms h4 {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.bonus-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-terms li {
    font-size: 10px;
    color: var(--text-muted);
    padding: 1px 0;
    position: relative;
    padding-left: 8px;
    line-height: 1.3;
}

.bonus-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.bonus-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.bonus-actions .btn {
    flex: 1;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--text-xs);
}

.btn-claim {
    background: var(--secondary-gradient);
    color: var(--bg-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* ===== ALL OFFERS SECTION ===== */
.all-offers-section {
    margin-bottom: var(--spacing-3xl);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.load-more-section {
    text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how-works-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    padding: var(--spacing-3xl) 0;
    margin: var(--spacing-3xl) 0;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
}

.how-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 800;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    transition: all var(--transition-fast);
}

.step-number:hover {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

.important-info {
    text-align: center;
}

.info-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--warning-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.info-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-xl);
    font-size: var(--text-base);
    line-height: 1.6;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: var(--text-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin-bottom: var(--spacing-3xl);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.faq-question {
    padding: var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-elevated);
}

.faq-question h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform var(--transition-fast);
    font-size: var(--text-lg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
}

/* ===== TIPS SECTION ===== */
.tips-section {
    margin-bottom: var(--spacing-3xl);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.tip-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.15);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    transition: all var(--transition-fast);
}

.tip-card:hover .tip-icon {
    transform: scale(1.1);
}

.tip-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes filterApplied {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.stat-number.counting {
    animation: countUp 0.8s ease-out;
}

.bonus-card {
    animation: slideInUp 0.6s ease-out forwards;
}

.bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3) { animation-delay: 0.3s; }

.bonus-filters.filtering {
    animation: filterApplied 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .featured-grid,
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .bonus-filters {
        top: 60px;
        padding: var(--spacing-md);
        margin: var(--spacing-lg) var(--spacing-sm);
        border-radius: var(--radius-xl);
    }

    .filter-header {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: stretch;
        margin-bottom: var(--spacing-md);
        text-align: center;
    }

    .filter-header h2 {
        font-size: var(--text-base);
        justify-content: center;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
        width: 100%;
    }

    .filter-group {
        width: 100%;
        min-width: unset;
    }

    .filter-group label {
        font-size: 10px;
        text-align: center;
    }

    .filter-select {
        width: 100%;
        min-width: unset;
        padding: var(--spacing-sm);
        text-align: center;
    }

    .filter-actions .btn {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-lg);
        justify-content: center;
    }

    /* Organizar os botões em linha */
    .filter-actions .btn:last-child,
    .filter-actions .btn:nth-last-child(2) {
        width: calc(50% - var(--spacing-xs));
        display: inline-flex;
    }

    .filter-actions {
        gap: var(--spacing-sm);
    }

    .filter-actions > *:last-child,
    .filter-actions > *:nth-last-child(2) {
        margin-top: var(--spacing-sm);
    }

    .bonus-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .bonus-hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .bonus-hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .bonus-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .bonus-header {
        flex-direction: row;
        text-align: left;
    }
    
    .bonus-actions {
        flex-direction: column;
    }
    
    .how-works-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bonus-filters {
        margin: var(--spacing-sm);
        padding: var(--spacing-sm);
        border-radius: var(--radius-lg);
    }

    .filter-header h2 {
        font-size: var(--text-sm);
    }

    .filter-actions .btn:last-child,
    .filter-actions .btn:nth-last-child(2) {
        width: 100%;
        margin-top: var(--spacing-xs);
    }

    .bonus-card {
        padding: var(--spacing-md);
    }
    
    .bonus-header img,
    .casino-logo {
        width: 40px !important;
        height: 40px !important;
    }
    
    .bonus-amount {
        font-size: var(--text-lg);
    }
    
    .bonus-type {
        font-size: var(--text-sm);
    }
    
    .faq-question {
        padding: var(--spacing-sm);
    }
    
    .step-number,
    .tip-icon,
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: var(--text-base);
    }
    
    .bonus-offer {
        padding: var(--spacing-sm);
    }
    
    .bonus-terms {
        padding: var(--spacing-xs);
    }
    
    .bonus-terms li {
        font-size: 9px;
    }
}