/* ========================================
   577bet - CSS Completo
   Cores: Roxo Profundo #2D1B69, Laranja Vibrante #FF6B35, Ciano #00D9FF
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F5F5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00D9FF;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #2D1B69;
    padding: 10px 20px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list li::after {
    content: "›";
    margin-left: 8px;
    color: #FF6B35;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list a {
    color: #00D9FF;
}

.breadcrumb-list a:hover {
    color: #FF6B35;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #2D1B69 0%, #3D2B79 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}

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

.logo-area img {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.logo-area img:hover {
    transform: scale(1.05);
}

.main-nav {
    flex: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-list a {
    display: block;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

.cta-area .cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.cta-area .cta-button:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
}

/* Main Content */
.main-content {
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 27, 105, 0.7) 0%, rgba(45, 27, 105, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

/* Page Hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #2D1B69 0%, #3D2B79 100%);
    padding: 60px 30px 30px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 42px;
    color: white;
    max-width: 1000px;
    margin: 0 auto 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.page-hero-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Card Grid Container */
.card-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Content Cards */
.content-card,
.intro-card,
.games-grid-card,
.responsible-gaming-card,
.about-card,
.payment-card,
.license-card,
.support-card,
.faq-card,
.reviews-card,
.cta-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover,
.intro-card:hover,
.games-grid-card:hover,
.responsible-gaming-card:hover,
.about-card:hover,
.payment-card:hover,
.license-card:hover,
.support-card:hover,
.faq-card:hover,
.reviews-card:hover {
    box-shadow: 0 8px 30px rgba(45, 27, 105, 0.15);
    transform: translateY(-4px);
}

.content-card h2,
.intro-card h2,
.games-grid-card h2,
.responsible-gaming-card h2,
.about-card h2,
.payment-card h2,
.license-card h2,
.support-card h2,
.faq-card h2,
.reviews-card h2,
.cta-card h2 {
    font-size: 32px;
    color: #2D1B69;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF6B35;
}

.content-card h3 {
    font-size: 24px;
    color: #FF6B35;
    margin: 25px 0 15px;
}

.content-card p,
.intro-card p,
.games-grid-card p,
.responsible-gaming-card p,
.about-card p,
.payment-card p,
.license-card p,
.support-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.content-card a,
.responsible-gaming-card a {
    color: #00D9FF;
    text-decoration: underline;
}

.content-card a:hover,
.responsible-gaming-card a:hover {
    color: #FF6B35;
}

/* Games Showcase Grid */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.game-card {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 12px;
    padding: 0;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

.game-card h3,
.game-card p {
    padding: 0 25px;
}

.game-card h3 {
    padding-top: 20px;
}

.game-card p {
    padding-bottom: 25px;
}

.game-card:hover {
    border-left-color: #00D9FF;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}

.game-card h3 {
    font-size: 22px;
    color: #2D1B69;
    margin-bottom: 12px;
}

.game-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* FAQ Timeline */
.faq-timeline {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #00D9FF;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: "Q";
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.faq-item:hover {
    border-left-color: #FF6B35;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.faq-item h3 {
    font-size: 20px;
    color: #2D1B69;
    margin-bottom: 12px;
    padding-left: 10px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 10px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-item {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-radius: 12px;
    padding: 25px;
    border-top: 4px solid #00D9FF;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-top-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(45, 27, 105, 0.15);
}

.review-header h3 {
    font-size: 20px;
    color: #2D1B69;
    margin-bottom: 5px;
}

.review-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.review-rating {
    font-size: 16px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: bold;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-style: italic;
}

.review-date {
    font-size: 13px;
    color: #999;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #2D1B69 0%, #3D2B79 100%);
    text-align: center;
    padding: 50px 40px;
}

.cta-card h2 {
    color: white;
    border-bottom: 3px solid #FF6B35;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: linear-gradient(135deg, #00D9FF 0%, #00B8D4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2D1B69 0%, #1A0F3D 100%);
    color: white;
    padding: 50px 30px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column span {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 8px;
}

.footer-column a {
    display: block;
    font-size: 15px;
    color: #00D9FF;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-container {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .logo-area img {
        width: 80px;
        height: 80px;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .nav-list a {
        text-align: center;
        padding: 10px 15px;
    }
    
    .cta-area {
        width: 100%;
    }
    
    .cta-area .cta-button {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-overlay h1 {
        font-size: 28px;
    }
    
    .hero-overlay p {
        font-size: 16px;
    }
    
    .page-hero {
        padding: 40px 20px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .card-grid-container {
        padding: 0 20px 40px;
        gap: 20px;
    }
    
    .content-card,
    .intro-card,
    .games-grid-card,
    .responsible-gaming-card,
    .about-card,
    .payment-card,
    .license-card,
    .support-card,
    .faq-card,
    .reviews-card,
    .cta-card {
        padding: 25px;
    }
    
    .content-card h2,
    .intro-card h2,
    .games-grid-card h2,
    .responsible-gaming-card h2,
    .about-card h2,
    .payment-card h2,
    .license-card h2,
    .support-card h2,
    .faq-card h2,
    .reviews-card h2,
    .cta-card h2 {
        font-size: 24px;
    }
    
    .games-showcase {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 22px;
    }
    
    .hero-overlay p {
        font-size: 14px;
    }
    
    .page-hero h1 {
        font-size: 24px;
    }
    
    .card-grid-container {
        padding: 0 15px 30px;
    }
    
    .content-card,
    .intro-card,
    .games-grid-card,
    .responsible-gaming-card,
    .about-card,
    .payment-card,
    .license-card,
    .support-card,
    .faq-card,
    .reviews-card,
    .cta-card {
        padding: 20px;
    }
    
    .cta-button-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}
