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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    background: var(--dark);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-guarantee {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Software Mockup */
.software-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--light);
}

.mockup-header {
    background: var(--dark);
    padding: 12px 15px;
}

.mockup-buttons {
    display: flex;
    gap: 8px;
}

.mockup-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-btn.red { background: #ff5f57; }
.mockup-btn.yellow { background: #ffbd2e; }
.mockup-btn.green { background: #28c940; }

.mockup-body {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 140px;
    background: var(--light);
    padding: 20px 10px;
}

.mockup-menu-item {
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 5px;
    cursor: default;
}

.mockup-menu-item.active {
    background: var(--primary);
    color: var(--white);
}

.mockup-menu-item:not(.active) {
    color: var(--gray);
}

.mockup-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(37,99,235,0.1) 0%, rgba(16,185,129,0.1) 100%);
    border-radius: 8px;
}

.chart-bar {
    width: 30px;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.mockup-numbers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

/* Stats Section */
.stats {
    background: var(--dark);
    padding: 60px 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-light);
    font-size: 1rem;
    margin-top: 10px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 25px;
}

.about-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.highlight-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats-inline {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light);
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-card-header {
    margin-bottom: 20px;
}

.about-card-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.about-checklist {
    list-style: none;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    color: var(--dark-light);
    font-size: 0.95rem;
}

.about-checklist li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Fechamentos / Closed Bets Section */
.closed-bets {
    padding: 100px 0;
    background: var(--white);
}

.closed-bets-intro {
    margin-bottom: 50px;
}

.intro-box {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-light);
}

.intro-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.intro-box p {
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.closed-bet-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s;
}

.closed-bet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.closed-bet-card.featured {
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.cb-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cb-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cb-icon {
    font-size: 2rem;
}

.cb-card-header h3 {
    font-size: 1.2rem;
    color: var(--dark);
}

.cb-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cb-example {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cb-example strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.cb-example p {
    color: var(--dark-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cb-benefits {
    list-style: none;
}

.cb-benefits li {
    padding: 8px 0;
    color: var(--dark-light);
    font-size: 0.9rem;
}

.cb-benefits li::before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: 700;
}

.closed-bets-benefits {
    margin-bottom: 60px;
}

.closed-bets-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.benefit-card {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.benefit-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.closed-bets-example {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    border-radius: 16px;
    padding: 40px;
}

.closed-bets-example h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

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

.example-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    max-width: 350px;
}

.example-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

.example-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.example-stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    color: var(--dark);
}

.stat-value.highlight {
    color: var(--primary);
    font-size: 1.1rem;
}

.vs-badge {
    background: var(--dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
}

.example-save {
    background: var(--success);
    color: var(--white);
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.results-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

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

.tab-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.tab-icon {
    font-size: 1.2rem;
}

.results-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.lottery-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.concurso-info {
    color: var(--gray);
    font-size: 1rem;
}

.premio-info {
    text-align: right;
}

.premio-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.premio-valor {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
}

.dezenas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.dezena {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.results-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    color: var(--gray);
}

.admin-hint {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-left: 4px solid var(--warning);
    border-radius: 0 8px 8px 0;
}

.admin-hint p {
    color: #92400e;
    font-size: 0.9rem;
}

.admin-hint code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.dupla-container {
    margin-bottom: 30px;
}

.dupla-sorteio {
    margin-bottom: 25px;
}

.dupla-sorteio h4 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.results-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
}

.results-cta p {
    color: var(--dark-light);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 5px 0;
    color: var(--dark-light);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "✓ ";
    color: var(--secondary);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
}

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

.step {
    text-align: center;
}

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

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--gray);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

/* Pricing Single (novo layout) */
.pricing-single {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-card.single-card {
    max-width: 500px;
    width: 100%;
}

.pricing-delivery {
    color: var(--secondary);
    font-weight: 500;
    margin-top: 15px;
    font-size: 0.95rem;
}

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

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-price {
    margin: 25px 0;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--gray);
    vertical-align: top;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-cents {
    font-size: 1.2rem;
    color: var(--gray);
}

.pricing-save {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    color: var(--dark-light);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.guarantee-badge {
    font-size: 3rem;
}

.pricing-guarantee strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.pricing-guarantee p {
    color: var(--gray);
}

.payment-methods {
    text-align: center;
}

.payment-methods p {
    margin-bottom: 15px;
    color: var(--gray);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

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

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

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-top: 15px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: var(--gray);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats-inline {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-benefits {
        grid-template-columns: 1fr;
    }

    .closed-bets-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .example-comparison {
        flex-direction: column;
    }

    .vs-badge {
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .results-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .premio-info {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        display: none;
    }

    .header-content {
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 20px;
    }

    .header .btn {
        position: absolute;
        right: 20px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;

@media (max-width: 640px) {
    .nav {
        display: none;
    }

    .header-content {
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 20px;
    }

    .header .btn {
        position: absolute;
        right: 20px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
}
