/* 555bet - Estilo Dólar Americano Premium 2026 */
/* Tema inspirado em notas de dólar com verde e dourado */

:root {
    --dollar-green: #0a5c36;
    --dollar-dark: #063d24;
    --dollar-light: #1a7a4c;
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --cream-bg: #f5f5dc;
    --dark-bg: #0d1f17;
    --text-light: #f8f8f2;
    --text-dark: #1a1a1a;
    --border-gold: #c9a227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dollar-dark) 50%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.8;
    min-height: 100vh;
}

/* Padrão de fundo estilo nota de dólar */
.dollar-pattern {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Container principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.header-main {
    background: linear-gradient(180deg, var(--dollar-dark) 0%, var(--dollar-green) 100%);
    border-bottom: 3px solid var(--gold-primary);
    padding: 15px 0;
    position: relative;
}

.header-main::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Navegação */
.nav-main {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-main a {
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-main a:hover {
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-play {
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-dark) 100%) !important;
    color: var(--dark-bg) !important;
    font-weight: 700 !important;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 61, 36, 0.7) 0%, rgba(13, 31, 23, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold-primary);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid var(--gold-light);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Seções de conteúdo */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--cream-bg);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.game-card {
    background: linear-gradient(145deg, var(--dollar-dark) 0%, var(--dollar-green) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

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

.game-card-content {
    padding: 25px;
}

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

.game-card p {
    color: var(--cream-bg);
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-card .btn-play {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-card .btn-play:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Seção de autor/E-E-A-T */
.author-section {
    background: linear-gradient(135deg, var(--dollar-dark) 0%, rgba(10, 92, 54, 0.5) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.author-info {
    flex: 1;
    min-width: 280px;
}

.author-name {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.author-title {
    color: var(--cream-bg);
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.author-bio {
    color: var(--text-light);
    line-height: 1.8;
}

/* Avaliações de usuários */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: linear-gradient(145deg, rgba(10, 92, 54, 0.3) 0%, rgba(6, 61, 36, 0.5) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-stars {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--cream-bg);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    padding-left: 30px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
}

.review-name {
    color: var(--gold-primary);
    font-weight: 600;
}

.review-location {
    color: var(--cream-bg);
    opacity: 0.7;
    font-size: 0.9rem;
}

.review-date {
    color: var(--cream-bg);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(10, 92, 54, 0.2) 0%, rgba(6, 61, 36, 0.4) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--cream-bg);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* Métodos de pagamento */
.payment-section {
    text-align: center;
}

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

.payment-icons img {
    height: 60px;
    width: auto;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
}

/* Licença */
.license-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(10, 92, 54, 0.2) 0%, rgba(6, 61, 36, 0.4) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 20px;
    margin: 40px 0;
}

.license-badge {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.license-info {
    color: var(--cream-bg);
    line-height: 1.8;
}

.license-number {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
}

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

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

.breadcrumb span {
    color: var(--cream-bg);
    opacity: 0.7;
}

/* Footer */
.footer-main {
    background: linear-gradient(180deg, var(--dollar-dark) 0%, #041a10 100%);
    border-top: 3px solid var(--gold-primary);
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

.footer-column h4 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
}

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

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

.footer-column ul li a {
    color: var(--cream-bg);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-column p {
    color: var(--cream-bg);
    opacity: 0.8;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-badges img {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer-copyright {
    color: var(--cream-bg);
    opacity: 0.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Jogo Responsável */
.responsible-gaming {
    background: linear-gradient(145deg, rgba(180, 50, 50, 0.1) 0%, rgba(100, 30, 30, 0.2) 100%);
    border: 2px solid #8b4513;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.responsible-gaming h3 {
    color: #d4a574;
    margin-bottom: 20px;
}

.responsible-gaming p {
    color: var(--cream-bg);
    line-height: 1.8;
    margin-bottom: 15px;
}

.responsible-gaming a {
    color: #d4a574;
}

/* Tabelas */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(10, 92, 54, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-table th {
    background: linear-gradient(180deg, var(--dollar-green) 0%, var(--dollar-dark) 100%);
    color: var(--gold-primary);
    font-weight: 600;
}

.info-table td {
    color: var(--cream-bg);
}

.info-table tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

/* Responsivo */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-main {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.8rem;
    }
    
    .nav-main a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-section img {
        height: 400px;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

.support-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(10, 92, 54, 0.2) 0%, rgba(6, 61, 36, 0.4) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.support-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.support-item h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.support-item p {
    color: var(--cream-bg);
    opacity: 0.8;
}

/* Texto de conteúdo */
.content-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--cream-bg);
    line-height: 2;
}

.content-text h2 {
    color: var(--gold-primary);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.content-text h3 {
    color: var(--gold-light);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text ul, .content-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 10px;
}

/* Destaque */
.highlight-box {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-left: 4px solid var(--gold-primary);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin: 0;
    color: var(--cream-bg);
}
