/* 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-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

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

.btn-bet {
    background-color: #252547;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    font-size: 14px;
}

.btn-bet:hover {
    background-color: #303063;
}

/* 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, .main-nav ul li.active a {
    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;
}

/* Layout Principal */
.sports-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Barra Lateral */
.sports-sidebar {
    width: 250px;
    background-color: #191932;
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.sports-search {
    padding: 0 20px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sports-search input {
    width: 100%;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.sports-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sports-nav ul {
    padding: 0;
}

.sports-nav ul li {
    padding: 0;
}

.sports-nav ul li a {
    padding: 12px 20px;
    display: block;
    color: #ccc;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sports-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.sports-nav ul li.active a {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffb700;
    border-left-color: #ffb700;
}

/* Conteúdo Principal */
.sports-content {
    flex: 1;
    padding: 30px;
    background-color: #1a1a2e;
}

/* Banner Principal */
.hero-banner {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    color: #ddd;
}

/* Seção de Eventos */
section {
    margin-bottom: 50px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffb700;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    background-color: #252547;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
    font-size: 18px;
    font-weight: 700;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffb700;
    min-width: 70px;
    text-align: center;
}

.event-info {
    flex: 1;
    padding: 0 20px;
}

.event-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.event-location {
    color: #aaa;
    font-size: 14px;
}

/* Lutas em Destaque */
.fight-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.fight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fight-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
}

.fight-date {
    color: #ffb700;
    font-weight: 500;
}

.fight-weight {
    color: #aaa;
}

.fighters {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fighter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    text-align: center;
}

.fighter-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.fighter:first-child .fighter-img {
    border-color: #ffb700;
}

.fighter:last-child .fighter-img {
    border-color: #3498db;
}

.fighter-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.fighter-record {
    color: #aaa;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.fighter-odds {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
}

.vs {
    font-size: 20px;
    font-weight: 700;
    color: #aaa;
    margin: 0 15px;
}

.bet-options {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.1);
}

.more-markets {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.more-markets a {
    color: #ffb700;
}

.more-markets a:hover {
    text-decoration: underline;
}

/* Mercados de Apostas */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.market-card {
    background-color: #252547;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.market-card h3 {
    color: #ffb700;
    margin-bottom: 10px;
    font-size: 18px;
}

.market-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Guia de Apostas */
.guide-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #252547;
    border-radius: 10px;
    padding: 30px;
}

.guide-text {
    flex: 1;
}

.guide-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.guide-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.guide-text ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.guide-text ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffb700;
}

.guide-image {
    width: 40%;
    flex-shrink: 0;
}

.guide-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Banner de Promoção */
.promotion-banner {
    background: linear-gradient(135deg, #252547, #1a1a2e);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.promotion-banner:before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 183, 0, 0.1);
    border-radius: 50%;
}

.promotion-banner:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 183, 0, 0.05);
    border-radius: 50%;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promotion-banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.promotion-banner p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

/* Apostas ao Vivo */
.live-betting {
    margin: 60px 0;
}

.live-betting > p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: #252547;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature h3 {
    color: #ffb700;
    margin-bottom: 10px;
}

.feature p {
    color: #ccc;
    font-size: 14px;
}

/* FAQ */
.faq {
    background-color: #1e1e36;
    padding: 50px 0;
    margin: 60px 0 0;
    border-radius: 10px;
}

.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;
    font-size: 15px;
    line-height: 1.6;
}

/* 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;
}

/* Media Queries para Responsividade */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .fight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .sports-container {
        flex-direction: column;
    }
    
    .sports-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 0;
    }
    
    .sports-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding: 0 15px;
    }
    
    .sports-nav ul li a {
        padding: 8px 15px;
        border-left: none;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .sports-nav ul li.active a {
        border-left: none;
        background-color: #ffb700;
        color: #1a1a2e;
    }
    
    .sports-content {
        padding: 20px 15px;
    }
    
    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fight-cards {
        grid-template-columns: 1fr;
    }
    
    .guide-content {
        flex-direction: column;
    }
    
    .guide-image {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }
    
    .guide-text {
        order: 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .header-buttons .btn:not(.mobile-menu-toggle) {
        display: none;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .event-cards {
        grid-template-columns: 1fr;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        height: 60px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .hero-banner {
        height: 200px;
    }
    
    .fight-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .fighters {
        flex-direction: column;
        gap: 30px;
    }
    
    .fighter {
        width: 80%;
    }
    
    .vs {
        margin: 15px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .accordion-header {
        font-size: 16px;
        padding: 15px;
    }
}

/* Javascript para o Menu Mobile e Accordion */
script {
    display: none;
}
