:root {
    --bg-color: #1a1b24;
    --bg-darker: #121319;
    --primary-green: #37eb64;
    --primary-green-glow: rgba(55, 235, 100, 0.3);
    --secondary-green: #25a845;
    --text-main: #f5f5f5;
    --text-muted: #a0a4b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de brilho ambiente ao fundo */
.overlay-glow {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-green-glow) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Navegação */
.navbar {
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary-green-glow));
}

.highlight {
    color: var(--primary-green);
}

.highlight-gradient {
    background: linear-gradient(135deg, #a8ff78 0%, #37eb64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 24px rgba(55, 235, 100, 0.4);
}

/* Seção Herói */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(55, 235, 100, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(55, 235, 100, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out;
}

.title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #e0e0e0;
    font-weight: 500;
}

.icon-wrapper {
    background: rgba(55, 235, 100, 0.1);
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: #000;
    padding: 1.1rem 2.2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(55, 235, 100, 0.5),
                0 8px 10px -6px rgba(55, 235, 100, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -5px rgba(55, 235, 100, 0.6),
                0 10px 15px -5px rgba(55, 235, 100, 0.4);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Imagem Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 20px;
}

.mascot-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Criar um brilho por trás da imagem */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-green-glow) 0%, transparent 60%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .title {
        font-size: 3rem;
    }

    .description {
        margin: 0 auto 2rem;
    }

    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-wrapper {
        align-items: center;
    }

    .overlay-glow {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100vw;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.25rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .mascot-img {
        max-width: 90%;
    }
}

/* Animações (Keyframes) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
