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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

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

/* Cabeçalho */
header {
    background-color: #0c1e35;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    color: #00c853;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
    font-size: 16px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00c853;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: #00c853;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.login-button, .register-button {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-button {
    color: white;
    border: 1px solid white;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.register-button {
    background-color: #00c853;
    color: #0c1e35;
}

.register-button:hover {
    background-color: #00e676;
    color: #0c1e35;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Banner */
.sports-hero {
    background: linear-gradient(to right, #0c1e35, #1a3a5f);
    color: white;
    padding: 60px 0;
}

.sports-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #00c853;
    color: #0c1e35;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #00e676;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Sports Navigation */
.sports-navigation {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.sports-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
}

.sports-tabs .tab {
    white-space: nowrap;
    padding: 10px 20px;
    margin-right: 10px;
    color: #333;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.sports-tabs .tab:hover {
    background-color: rgba(0, 200, 83, 0.1);
    color: #00c853;
}

.sports-tabs .tab.active {
    background-color: #00c853;
    color: white;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    color: #0c1e35;
}

.view-all {
    color: #00c853;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: #00e676;
    text-decoration: underline;
}

/* Live Events */
.live-events, .upcoming-events {
    padding: 50px 0;
    background-color: white;
}

.upcoming-events {
    background-color: #f8f9fa;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.event-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.league {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

.live-indicator {
    background-color: #ff3d00;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

.time {
    color: #666;
    font-size: 14px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

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

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.team-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.score {
    font-size: 28px;
    font-weight: 700;
    color: #0c1e35;
}

.vs {
    font-size: 16px;
    color: #999;
    margin: 0 15px;
}

.event-odds {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #eaeaea;
}

.odd-button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.odd-button:hover {
    background-color: #e3f2fd;
    border-color: #00c853;
}

.odd-type {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.odd-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0c1e35;
}

/* Betting Features */
.betting-features {
    padding: 70px 0;
    background-color: #0c1e35;
    color: white;
    text-align: center;
}

.betting-features h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
}

.learn-more {
    display: inline-block;
    color: #00c853;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.learn-more::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #00c853;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sports Promotions */
.sports-promotions {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.promotions-slider {
    margin: 0 auto;
}

.promotion-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

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

.promotion-content {
    padding: 25px;
    text-align: center;
}

.promotion-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0c1e35;
}

.promotion-content p {
    color: #555;
    margin-bottom: 20px;
}

.promo-button {
    display: inline-block;
    background-color: #00c853;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-button:hover {
    background-color: #00e676;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Sports App Section */
.sports-app {
    padding: 70px 0;
    background-color: white;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0c1e35;
}

.app-text p {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

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

.app-button {
    display: inline-block;
    background-color: #0c1e35;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-button:hover {
    background-color: #00c853;
    color: white;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
footer {
    background-color: #0c1e35;
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-column h3 {
    color: #00c853;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #00c853;
    bottom: 0;
    left: 0;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00c853;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.social-icon:hover {
    background-color: #00c853;
    color: #0c1e35;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.payment-methods span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .mobile-menu-button {
        display: flex;
        order: 2;
    }
    
    .main-nav {
        flex-basis: 100%;
        order: 4;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .user-actions {
        order: 3;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sports-hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .app-content {
        flex-direction: column;
    }
    
    .app-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .sports-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .sports-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .sports-tabs::-webkit-scrollbar-thumb {
        background-color: #00c853;
        border-radius: 2px;
    }
    
    .sports-tabs .tab {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-header, .teams, .event-odds {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .teams .team {
        margin-bottom: 15px;
    }
    
    .odds-button {
        width: 100%;
        margin-bottom: 5px;
    }
}
