/* Estilos globais */
:root {
    --primary-color: #ff6600;
    --primary-hover: #ff8533;
    --secondary-color: #2e4da7;
    --secondary-hover: #3a5fd0;
    --accent-color: #ffcc00;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #f8f9fa;
    --bg-dark: #242a38;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --futebol-color: #4CAF50;
    --basquete-color: #FF5722;
    --tenis-color: #2196F3;
    --esports-color: #9C27B0;
    --mma-color: #F44336;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --header-height: 70px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

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

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    position: relative;
    font-weight: 500;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(46, 77, 167, 0.9), rgba(46, 77, 167, 0.8)),
                url('images/1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

/* Boost Explainer */
.boost-explainer {
    padding: 50px 0;
    background-color: white;
}

.explainer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.explainer-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explainer-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.explainer-text h2 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.boost-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 3px;
}

/* Filter Tabs */
.boost-filter {
    padding: 20px 0;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-tab {
    padding: 8px 20px;
    background-color: var(--bg-color);
    border-radius: 20px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* Featured Boost */
.featured-boosts {
    padding: 40px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: -20px;
    margin-bottom: 40px;
}

.featured-boost-card {
    background-color: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.boost-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--bg-dark);
    color: white;
}

.sport-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sport-tag.futebol {
    background-color: var(--futebol-color);
}

.sport-tag.basquete {
    background-color: var(--basquete-color);
}

.sport-tag.tenis {
    background-color: var(--tenis-color);
}

.sport-tag.esports {
    background-color: var(--esports-color);
}

.sport-tag.mma {
    background-color: var(--mma-color);
}

.boost-badge {
    display: flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.boost-content {
    padding: 25px;
}

.boost-event {
    margin-bottom: 20px;
}

.boost-event h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.event-description {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.boost-bet {
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.bet-description {
    font-weight: 500;
    margin-bottom: 15px;
}

.odds-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.odds-original, .odds-boosted {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.odds-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.odds-original .odds-value {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: var(--text-light);
}

.odds-boosted .odds-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.odds-arrow {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Boost List */
.boost-list {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.boosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.boost-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.boost-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.boost-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    color: white;
}

.event-league {
    font-size: 0.9rem;
    font-weight: 600;
}

.boost-card-content {
    padding: 20px;
}

.event-teams {
    margin-bottom: 15px;
}

.event-teams h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.boost-bet-details {
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.boost-bet-details p {
    margin-bottom: 10px;
    font-weight: 500;
}

.odds-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.original-odds {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: line-through;
    color: var(--text-light);
}

.odds-arrow {
    color: var(--text-light);
}

.boosted-odds {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

/* How it Works */
.how-it-works {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: white;
}

.how-it-works .section-title {
    color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.faq-question {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 0 15px;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(rgba(46, 77, 167, 0.9), rgba(46, 77, 167, 0.8)),
                url('images/1.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--secondary-color);
}

/* Newsletter */
.newsletter {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.footer-column ul li a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 99;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .explainer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .boosts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .odds-comparison {
        flex-direction: column;
    }
    
    .odds-arrow {
        transform: rotate(90deg);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        min-width: auto;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
}
