/* ===== VARIÁVEIS ===== */
:root {
    --primary-color: #006400; /* Verde escuro */
    --secondary-color: #ffcc00; /* Amarelo */
    --accent-color: #ff9900; /* Laranja */
    --dark-color: #111;
    --light-color: #f9f9f9;
    --medium-gray: #777;
    --light-gray: #eee;
    --text-color: #333;
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== ESTILOS BÁSICOS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px */
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
}

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

.btn-primary:hover {
    background-color: #004d00;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.btn-secondary:hover {
    background-color: #f4f4f4;
}

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

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

.btn-large {
    padding: 1.4rem 3rem;
    font-size: 1.8rem;
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

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

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1.5rem 0;
    background-color: var(--light-gray);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.8rem;
    color: var(--medium-gray);
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== BANNER PRINCIPAL ===== */
.hero-banner {
    padding: 6rem 0;
    background-color: #004d00;
    color: white;
    background-image: linear-gradient(45deg, rgba(0, 70, 0, 0.9), rgba(0, 100, 0, 0.85));
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-content {
    padding: 5rem 0;
}

.content-section {
    margin-bottom: 7rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.8rem;
    color: var(--medium-gray);
}

.content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text p {
    margin-bottom: 1.6rem;
}

.content-text h3 {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
}

.content-image {
    flex: 1;
}

.rounded-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Lista de benefícios */
.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.icon-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    position: relative;
}

.icon-check::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

/* ===== COMO USAR O CASH OUT ===== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.step-item {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Exemplo Prático */
.example-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.example-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
}

.example-header h3 {
    font-size: 2rem;
    margin: 0;
}

.example-content {
    padding: 3rem;
    display: flex;
    gap: 3rem;
}

.example-scenario {
    flex: 2;
}

.example-scenario p {
    margin-bottom: 1rem;
}

.example-image {
    flex: 1;
}

/* ===== TIPOS DE CASH OUT ===== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 3rem 2.5rem;
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.cash-out-full {
    background-color: var(--primary-color);
}

.cash-out-partial {
    background-color: var(--accent-color);
}

.cash-out-auto {
    background-color: var(--secondary-color);
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* ===== ESPORTES DISPONÍVEIS ===== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.sport-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.sport-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
    color: white;
}

.sport-name {
    font-size: 1.8rem;
    font-weight: 500;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.faq-question h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

/* ===== DICAS ===== */
.tips-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.tip-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
}

.tip-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ===== RODAPÉ ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    opacity: 0.8;
}

.footer-column a:hover,
.footer-column a.active {
    opacity: 1;
    color: var(--secondary-color);
}

.payment-methods {
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 1.4rem;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #004d00;
    transform: translateY(-5px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .content-wrapper,
    .example-content {
        flex-direction: column;
    }
    
    .content-image {
        order: -1;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 57.5%;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-container,
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
