/* Estilos Gerais */
:root {
    --primary-color: #00ff9d;
    --primary-hover: #00cc7d;
    --dark-bg: #1e2024;
    --dark-bg-2: #17181c;
    --text-muted: #a0a3ad;
    --card-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-features li {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.hero-features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Botões */
.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--dark-bg);
    padding: 15px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Cards e Seções */
.card {
    border: none;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

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

section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Como Funciona */
.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* O Que Compramos */
.product-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.product-card ul li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
}

/* Avaliações */
.rating-stars {
    color: #ffc107;
    font-size: 1.25rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
}

/* FAQ */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    color: white;
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Animações */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Console Grid */
.console-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.console-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.console-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.console-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

/* Utilidades */
.shadow-sm {
    box-shadow: var(--card-shadow) !important;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    background: #1e2024;
    color: white;
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00ff9d;
}

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

.trustpilot-stars {
    color: #00b67a; /* Cor oficial Trustpilot */
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.trustpilot-header {
    background-color: #00b67a;
    padding: 1rem;
    border-radius: 8px;
    color: white;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stars {
    color: #00b67a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.navbar {
padding: 1rem 0;
}

.navbar-brand {
font-weight: bold;
}

.nav-link {
font-weight: 500;
padding: 0.5rem 1rem !important;
}

.btn-success {
background-color: #00ff9d;
border-color: #00ff9d;
color: #1e2024;
}

.btn-success:hover {
background-color: #00cc7d;
border-color: #00cc7d;
color: #1e2024;
}

.footer {
    color: #fff;
    font-size: 0.95rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #00ff9d;
}

.footer h5 {
    font-weight: 600;
}

.social-links a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer h5 {
    font-weight: 600;
}

.footer a:hover {
color: #00ff9d !important;
}


#o-que-compramos,
#como-funciona,
#reviews,
#faq {
    scroll-margin-top: 30px; /* Adjust the value as needed */
}
