/* 378bet - Cassino Online Premium do Brasil */
/* CSS completamente original - Design de floresta tropical */

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

/* Regras de imagem responsivas (OBRIGATÓRIO) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d6b2d 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand .logo {
    width: 80px;
    height: auto;
    display: inline-block;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a4d1a;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #e8f5e8;
    padding: 12px 0;
    border-bottom: 2px solid #2d6b2d;
}

.breadcrumb span {
    color: #1a4d1a;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(26, 77, 26, 0.85);
    padding: 40px 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e8f5e8;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a4d1a;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* Sections */
section {
    margin-bottom: 80px;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a4d1a;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a4d1a, #ffd700, #1a4d1a);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5a7a5a;
    margin-bottom: 40px;
}

/* Introduction Section */
.intro-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e2c;
    margin-bottom: 20px;
    text-align: justify;
}

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

.game-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(26, 77, 26, 0.2);
    border-color: #ffd700;
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d1a;
    margin-bottom: 12px;
}

.game-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a7a5a;
}

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

.promo-card {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d6b2d 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(26, 77, 26, 0.3);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: scale(1.05);
}

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

.promo-value {
    font-size: 42px;
    font-weight: 800;
    color: #ffed4e;
    margin-bottom: 15px;
}

.promo-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8f5e8;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.payment-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ffd700;
}

.payment-card h3 {
    font-size: 20px;
    color: #1a4d1a;
    margin-bottom: 12px;
}

.payment-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a7a5a;
}

/* Responsible Gaming */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.responsible-card {
    background: #fff8e1;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #ff9800;
}

.responsible-card h3 {
    font-size: 20px;
    color: #e65100;
    margin-bottom: 12px;
}

.responsible-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5d4037;
}

.responsible-card a {
    color: #1976d2;
    text-decoration: underline;
}

.age-restriction {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    margin-top: 30px;
    padding: 15px;
    background: #ffebee;
    border-radius: 10px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e2c;
    margin-bottom: 20px;
    text-align: justify;
}

.about-section h3 {
    font-size: 26px;
    color: #1a4d1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-size: 17px;
    line-height: 2;
    color: #2c3e2c;
    padding-left: 10px;
}

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

.support-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2196f3;
}

.support-card h3 {
    font-size: 22px;
    color: #1565c0;
    margin-bottom: 12px;
}

.support-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a4d1a;
}

.faq-item h3 {
    font-size: 19px;
    color: #1a4d1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a7a5a;
}

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

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #ffd700;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author strong {
    display: block;
    font-size: 18px;
    color: #1a4d1a;
    margin-bottom: 4px;
}

.review-location {
    font-size: 14px;
    color: #757575;
}

.review-rating {
    font-size: 18px;
}

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

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

/* License Section */
.license-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.license-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e2c;
    margin-bottom: 20px;
    text-align: justify;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4d1a 0%, #0d2e0d 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #e8f5e8;
    margin-bottom: 15px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8f5e8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-top: 15px;
    display: inline-block;
}

.footer-payment {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.footer-payment p {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons span {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b0c4b0;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 13px;
    color: #ffccbc;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-brand .logo {
        width: 60px;
        margin: 0 auto;
    }
    
    .hero-content {
        padding: 25px 20px;
        position: static;
        transform: none;
        margin-top: -50px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-hero {
        font-size: 16px;
        padding: 12px 28px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .games-grid,
    .promo-grid,
    .payment-grid,
    .responsible-grid,
    .support-grid,
    .faq-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-icons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .game-card,
    .promo-card,
    .payment-card,
    .responsible-card,
    .support-card,
    .faq-item,
    .review-card {
        padding: 20px;
    }
}
