/* 939bet - Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

.site-header {
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

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

.logo-container {
    flex: 0 0 auto;
}

.site-logo {
    height: 60px;
    width: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c0c0c0;
}

.header-actions {
    flex: 0 0 auto;
}

.btn-primary {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #000;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-overlay p {
    color: #c0c0c0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-hero {
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    color: #fff;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-hero:hover {
    transform: scale(1.1);
}

.main-content {
    background-color: #1a1a1a;
    min-height: 100vh;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    color: #c0c0c0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section {
    background-color: #2a2a2a;
    padding: 3rem 0;
}

.intro-content p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.games-overview {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

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

.game-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    color: #c0c0c0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-info p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.btn-game {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s;
}

.btn-game:hover {
    transform: scale(1.05);
}

.live-casino-section,
.sports-betting-section,
.payment-section,
.license-section,
.support-section {
    padding: 3rem 0;
}

.live-casino-section {
    background-color: #2a2a2a;
}

.sports-betting-section {
    background-color: #1a1a1a;
}

.payment-section {
    background-color: #2a2a2a;
}

.license-section {
    background-color: #1a1a1a;
}

.support-section {
    background-color: #2a2a2a;
}

.live-casino-content,
.sports-content,
.payment-content,
.license-content,
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.live-casino-image,
.sports-image,
.payment-image,
.license-image,
.support-image {
    width: 100%;
    border-radius: 15px;
}

.live-casino-text p,
.sports-text p,
.payment-text p,
.license-text p,
.support-text p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.payment-text h3,
.license-text h3 {
    color: #c0c0c0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.payment-text ul,
.license-text ul {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    list-style-position: inside;
}

.faq-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.faq-item {
    background-color: #2a2a2a;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #c0c0c0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ddd;
    font-size: 1.1rem;
}

.reviews-section {
    background-color: #2a2a2a;
    padding: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.review-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #ddd;
    margin-bottom: 1rem;
}

.author-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.author-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
}

.author-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    color: #c0c0c0;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.page-hero {
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #c0c0c0;
    font-size: 1.25rem;
}

.content-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.feature-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 15px;
}

.content-section h2 {
    color: #c0c0c0;
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    color: #fff;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 2rem;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

.site-footer {
    background-color: #0a0a0a;
    color: #888;
    padding: 2rem 0;
    text-align: center;
}

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

.site-footer p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .live-casino-content,
    .sports-content,
    .payment-content,
    .license-content,
    .support-content,
    .author-card {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
