/* 567win - Cassino Online Premium - Estilos Globais */

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

:root {
    --primary-color: #6B46C1;
    --secondary-color: #D4AF37;
    --accent-color: #10B981;
    --bg-dark: #1A1A2E;
    --bg-light: #F8F9FA;
    --text-dark: #1F2937;
    --text-light: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header e Navegação */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), #553C9A);
    box-shadow: var(--shadow);
    position: relative;
}

.main-navigation {
    padding: 15px 0;
}

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

.logo-section img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #C19B2E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    padding: 80px 20px;
    color: var(--text-light);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--secondary-color), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 15px 40px;
    border: 2px solid var(--text-light);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Content Sections */
.intro-section,
.content-section {
    padding: 60px 20px;
}

.content-article h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
}

.content-article h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-article h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-article p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-article ul,
.content-article ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-article li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-article strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Games Catalog */
.games-catalog {
    background-color: #F3F4F6;
    padding: 60px 20px;
}

.games-catalog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.game-info p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-game {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-game:hover {
    background-color: #059669;
    transform: translateX(5px);
}

/* Payment Section */
.payment-section {
    padding: 60px 20px;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.payment-features,
.payment-list {
    list-style: none;
    margin-left: 0;
}

.payment-features li,
.payment-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.payment-features li::before,
.payment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.payment-note {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}

/* License Section */
.license-section {
    background-color: #F9FAFB;
    padding: 60px 20px;
}

.license-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.license-badge img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.license-features {
    list-style: none;
    margin-left: 0;
}

.license-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.license-features li::before {
    content: "🔒";
    position: absolute;
    left: 0;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 60px 20px;
    background-color: #FEF2F2;
}

.responsible-tools,
.warning-signs,
.help-resources {
    list-style: none;
    margin-left: 0;
}

.responsible-tools li::before {
    content: "🛡️";
    margin-right: 10px;
}

.warning-signs li::before {
    content: "⚠️";
    margin-right: 10px;
}

.help-resources li::before {
    content: "📞";
    margin-right: 10px;
}

.age-restriction {
    background-color: #FEE2E2;
    border: 2px solid #DC2626;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 60px 20px;
}

.team-list,
.why-choose {
    list-style: none;
    margin-left: 0;
}

.team-list li,
.why-choose li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.team-list li::before {
    content: "👥";
    position: absolute;
    left: 0;
}

.why-choose li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

/* Support Section */
.support-section {
    background-color: #EFF6FF;
    padding: 60px 20px;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-channels,
.help-topics {
    list-style: none;
    margin-left: 0;
}

.support-channels li,
.help-topics li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.support-channels li::before {
    content: "💬";
    position: absolute;
    left: 0;
}

.help-topics li::before {
    content: "📚";
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #4B5563;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background-color: #F9FAFB;
    padding: 60px 20px;
}

.reviews-intro {
    text-align: center;
    color: #6B7280;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
}

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

.reviewer-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.reviewer-location {
    color: #6B7280;
    font-size: 0.9rem;
}

.review-rating {
    color: #F59E0B;
}

.review-card p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-card time {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Author Section */
.author-section {
    padding: 60px 20px;
    background-color: #F3F4F6;
}

.author-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
}

.author-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.author-credentials {
    background-color: #F9FAFB;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.author-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1A1A2E, #2D2D44);
    color: var(--text-light);
    padding: 50px 20px 20px;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 60px;
    height: auto;
    border-radius: 5px;
}

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

.footer-license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-license img {
    width: 80px;
    height: auto;
}

.footer-responsible {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
}

.footer-responsible a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-social {
    margin: 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.footer-copyright {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 20px;
    background-color: #F3F4F6;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #553C9A);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.page-hero img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Game Guide */
.game-guide h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
}

.game-guide h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.game-guide h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #553C9A);
    color: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-content,
    .support-content,
    .license-content,
    .author-card {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .btn-hero,
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
