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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-dark {
    background: #2d2d2d;
    color: #fff;
}

.btn-dark:hover {
    background: #1a1a1a;
}

.btn-primary {
    background: #b5c76e;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #a3b55c;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    background: #b5c76e;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 0 0 45%;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    height: 35px;
    width: auto;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-image {
    flex: 0 0 50%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    width: 500px;
}

.hero-badge {
    text-align: center;
    margin-top: 40px;
}

.badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.badge-circle img {
    max-width: 80%;
    max-height: 80%;
}

/* ==================== */
/* STATS SECTION */
/* ==================== */
.stats {
    padding: 60px 0;
    background: #fff;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

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

.stat-icon {
    margin-bottom: 15px;
    color: #333;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about {
    padding: 60px 0;
    background: #f0f0e8;
}

.about-card {
    background: #fff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.about-left {
    background: #dde5b5;
    padding: 50px 40px;
    flex: 0 0 38%;
}

.crown-icon {
    font-size: 28px;
    margin-bottom: 25px;
}

.about-left h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.about-right {
    padding: 50px 45px;
    flex: 1;
}

.about-right p {
    font-size: 13px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-right .highlight {
    color: #1a1a1a;
}

.about-right .highlight strong {
    color: #7a8f3e;
}

/* ==================== */
/* BETALABS SECTION (Background com Cases) */
/* ==================== */
.betalabs-section {
    background-image: url('../images/clubes-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.betalabs-cta {
    background: #fff;
    padding: 60px 70px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.betalabs-cta h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.15;
}

.betalabs-cta p {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ==================== */
/* WHY BETALABS */
/* ==================== */
.why-betalabs {
    padding: 100px 0;
    background: #fff;
}

.why-betalabs h2 {
    font-size: 38px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.feature-item {
    background: #f8f8f5;
    padding: 40px 25px 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
}

.feature-icon {
    margin-bottom: 20px;
    color: #1a1a1a;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-icon .no-code {
    font-size: 18px;
    font-weight: 700;
    font-family: monospace;
}

.feature-item p {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* ==================== */
/* CASES SECTION */
/* ==================== */
.cases {
    padding: 80px 0;
    background: #b5c76e;
}

.cases-header {
    margin-bottom: 50px;
}

.cases h2 {
    font-size: 38px;
    font-weight: 500;
    color: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.case-item {
    background: #fff;
    border-radius: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta {
    padding: 100px 0;
    background: #f0f0e8;
    position: relative;
    overflow: hidden;
}

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

.cta-text {
    flex: 0 0 50%;
}

.cta h2 {
    font-size: 72px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1;
}

.cta p {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    max-width: 380px;
    line-height: 1.8;
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    padding: 40px 0;
    background: #f0f0e8;
    text-align: center;
}

.footer-team {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.footer-copy {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        flex: none;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

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

    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-card {
        flex-direction: column;
    }

    .about-left {
        flex: none;
    }

    .stats-grid {
        gap: 60px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        flex: none;
        width: 100%;
    }

    .cta h2 {
        font-size: 48px;
    }

    .cta p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 35px;
    }

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

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

    .cta h2 {
        font-size: 40px;
    }

    .why-betalabs h2,
    .cases h2 {
        font-size: 28px;
    }

    .betalabs-cta {
        padding: 40px 30px;
    }

    .betalabs-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 11px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cases-header {
        flex-direction: column;
        gap: 20px;
    }
}
