/* 522bet Cassino Online - Estilos Originais */

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

/* Regras básicas de imagem - OBRIGATÓRIO para evitar overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #f5f0eb;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, #8b2e2e 0%, #a0522d 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area img {
    max-height: 80px;
    width: auto;
    display: inline-block;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #d4a574;
}

.cta-button .btn-jogar {
    background-color: #d4a574;
    color: #2c1810;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button .btn-jogar:hover {
    background-color: #e6b887;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.hero-image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(139,46,46,0.7), rgba(160,82,45,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-bonus {
    font-size: 32px;
    font-weight: bold;
    color: #d4a574;
    margin-bottom: 25px;
}

.btn-hero {
    background-color: #d4a574;
    color: #2c1810;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #e6b887;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    padding: 12px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0d5cc;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 10px;
}

.breadcrumb a {
    color: #8b2e2e;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 50px 0;
}

section h2 {
    font-size: 36px;
    color: #8b2e2e;
    margin-bottom: 30px;
    text-align: center;
}

/* Intro Section */
.intro-section {
    background-color: #fff;
}

.intro-section article {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* Games Section */
.games-section {
    background-color: #f5f0eb;
}

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

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139,46,46,0.2);
}

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

.game-card h3 {
    font-size: 22px;
    color: #8b2e2e;
    padding: 20px 20px 10px;
}

.game-card p {
    padding: 0 20px 20px;
    color: #5a4a42;
    font-size: 16px;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #8b2e2e 0%, #a0522d 100%);
    color: #fff;
}

.bonus-section h2 {
    color: #fff;
}

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

.bonus-card {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid #d4a574;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.bonus-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d4a574;
}

.bonus-value {
    font-size: 42px;
    font-weight: bold;
    color: #d4a574;
    margin: 20px 0;
}

.bonus-card ul {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.bonus-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212,165,116,0.3);
}

/* Payment Section */
.payment-section {
    background-color: #fff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.payment-method {
    background-color: #f5f0eb;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #8b2e2e;
}

.payment-method h3 {
    color: #8b2e2e;
    margin-bottom: 10px;
    font-size: 20px;
}

/* License Section */
.license-section {
    background-color: #f5f0eb;
}

.license-section ul {
    max-width: 800px;
    margin: 20px auto;
    padding-left: 40px;
}

.license-section li {
    margin-bottom: 15px;
    font-size: 17px;
}

/* Support Section */
.support-section {
    background-color: #fff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-method {
    background-color: #f5f0eb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.support-method h3 {
    color: #8b2e2e;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Responsible Gaming */
.responsible-gaming-section {
    background-color: #f5f0eb;
}

.responsible-gaming-section ul {
    max-width: 800px;
    margin: 20px auto;
    padding-left: 40px;
}

.responsible-gaming-section li {
    margin-bottom: 12px;
    font-size: 17px;
}

.responsible-gaming-section a {
    color: #8b2e2e;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f5f0eb;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.faq-item h3 {
    color: #8b2e2e;
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background-color: #f5f0eb;
}

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

.review-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

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

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

.review-rating {
    color: #d4a574;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #5a4a42;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c1810 0%, #3d2417 100%);
    color: #d4a574;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    color: #b8956f;
}

.footer-column a {
    color: #b8956f;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212,165,116,0.3);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #b8956f;
}

.age-restriction {
    font-size: 18px;
    font-weight: bold;
    color: #d4a574;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-area img {
        max-height: 60px;
        margin: 0 auto;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-bonus {
        font-size: 24px;
    }
    
    .btn-hero {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .games-grid,
    .bonus-grid,
    .payment-grid,
    .support-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        border-radius: 0;
        margin-bottom: 0;
    }
}
