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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #1a1a2e;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb700, #ff7b00);
    color: #1a1a2e;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff7b00, #ffb700);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-large {
    padding: 14px 28px;
    font-size: 18px;
}

.btn-play {
    background: linear-gradient(135deg, #ffb700, #ff7b00);
    color: #1a1a2e;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.btn-play:hover {
    transform: scale(1.05);
}

/* Header */
header {
    background-color: #101026;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    color: #ffb700;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.main-nav ul li a {
    color: #fff;
    font-weight: 500;
}

.main-nav ul li a:hover {
    color: #ffb700;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

/* Slots Cards Grid */
.slots-grid, .categories-grid, .providers-grid, .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.categories-grid {
    grid-template-columns: repeat(5, 1fr);
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffb700;
}

.slot-card, .category-card, .provider-card, .benefit-card {
    background-color: #252547;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slot-card:hover, .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.slot-image, .category-image {
    position: relative;
    overflow: hidden;
}

.slot-image img, .category-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-card:hover .slot-image img,
.category-card:hover .category-image img {
    transform: scale(1.05);
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.slot-card h3, .category-card h3, .provider-card h3, .benefit-card h3 {
    padding: 20px 20px 5px;
    font-size: 18px;
    color: #fff;
}

.slot-card p, .category-card p, .provider-card p, .benefit-card p {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 14px;
}

.category-card {
    text-align: center;
}

.provider-card {
    padding: 20px;
    text-align: center;
}

/* Benefit Cards */
.benefit-card {
    padding: 30px 20px;
    text-align: center;
    background-color: #252547;
}

.benefit-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    background-color: #1e1e36;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: #252547;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: #ccc;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/1.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #101026;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #ffb700;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffb700;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffb700;
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-links span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods span {
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}

.copyright p {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .slots-grid, .categories-grid, .providers-grid, .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #1a1a2e;
        padding: 100px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slots-grid, .providers-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section .subtitle {
        font-size: 18px;
    }
    
    section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .slots-grid, .categories-grid, .providers-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 24px;
    }
}
