:root {
    --primary-green: #2B5A2C;
    --light-green: #4DA14F;
    --accent: #D4E157;
    --bg-dark: #0A120B;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #A3B8A5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem;
}

/* Stunning Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    animation: zoomIn 40s ease-in-out infinite alternate;
}

.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(43, 90, 44, 0.4), transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(77, 161, 79, 0.2), transparent 50%);
    filter: blur(60px);
    animation: meshPulse 15s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes meshPulse {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

/* Layout */
.content-wrapper {
    max-width: 1200px;
    width: 100%;
    background: rgba(10, 18, 11, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.status-badge {
    background: rgba(77, 161, 79, 0.1);
    border: 1px solid rgba(77, 161, 79, 0.3);
    color: var(--light-green);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #4DA14F;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(77, 161, 79, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(77, 161, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(77, 161, 79, 0); }
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glow-aura {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(0.8); opacity: 0.3; }
    to { transform: scale(1.2); opacity: 1; }
}

.hero-logo {
    width: 100%;
    max-width: 500px; /* Logomarca bem grande */
    height: auto;
    object-fit: contain;
    /* Fundo branco esfumaçado para iluminar a árvore vazada no centro */
    background: radial-gradient(circle at center, #ffffff 15%, rgba(255,255,255,0.7) 40%, transparent 65%);
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
    transition: transform 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.eyebrow {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    background: linear-gradient(135deg, var(--light-green), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: center;
}

.waitlist-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    flex-grow: 1;
    max-width: 450px;
    transition: all 0.3s ease;
}

.waitlist-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--light-green);
    box-shadow: 0 0 15px rgba(77, 161, 79, 0.2);
}

.input-email {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.input-email::placeholder {
    color: var(--text-muted);
}

.waitlist-form .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-green), #2B5A2C);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(77, 161, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(77, 161, 79, 0.5);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Cards Section */
.cards-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 1rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(77, 161, 79, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    width: 100%;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-main);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 10px rgba(77, 161, 79, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.visitor-counter:hover {
    opacity: 1;
}

.contact-link {
    color: var(--light-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent);
}

/* Social Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--light-green);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatWa 3s ease-in-out infinite;
    text-decoration: none;
}

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

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

/* Particles */
#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 3rem;
        gap: 3rem;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .content-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        gap: 2.5rem;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
