:root {
    --color-primary: #1B4D3E;       /* Verde Floresta Principal */
    --color-primary-dark: #12362A;
    --color-primary-light: #2C7A62;
    --color-wood: #8B5A2B;          /* Tom Amadeirado */
    --color-wood-dark: #66411F;
    --color-wood-light: #C49A6C;
    --color-gold: #D4AF37;          /* Dourado Prosperidade */
    --color-gold-light: #F3E5AB;
    
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-bg: #FDFBF7;            /* Fundo levemente orgânico */
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(27, 77, 62, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.position-relative { position: relative; z-index: 2; }

/* Layout & Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-label {
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--color-wood);
    margin-bottom: 1rem;
    display: inline-block;
}

.section-label.center {
    display: block;
    text-align: center;
}

.section-label.light {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
}

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

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    background: rgba(27, 77, 62, 0.05);
    border-radius: 50px;
    padding: 0.25rem;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(27, 77, 62, 0.2);
}

.lang-btn:hover:not(.active) {
    color: var(--color-primary);
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo span {
    color: var(--color-wood);
    font-style: italic;
}

.nav-btn {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-primary-dark);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/hero.webp?v=2');
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Edge Compatibility: removed scaling/animation to ensure rendering */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 54, 42, 0.8) 0%, rgba(27, 77, 62, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.highlight-gold {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Opportunity Section */
.opportunity-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.features-list li i {
    color: var(--color-wood);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: flex;
    align-items: flex-start;
}

.box-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.highlight-box p {
    margin: 0;
    color: var(--color-primary-dark);
}

.opportunity-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    height: auto;
    position: relative;
    padding-top: 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-soft);
    position: static;
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.glass-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.glass-card.offset {
    margin-top: 3rem;
    z-index: 1;
    background: rgba(27, 77, 62, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.icon-wrapper.gold {
    background: var(--color-gold);
}

/* Animations that apply on load */
.float-slow {
    animation: float 6s ease-in-out infinite;
}
.float-fast {
    animation: float 4s ease-in-out infinite alternate-reverse;
}

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

/* Movement Section */
.movement {
    background-color: var(--color-white);
}

.movement-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.movement-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar-card {
    background: var(--color-bg);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 77, 62, 0.1);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--color-wood);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    color: var(--color-primary);
}

.pillar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: 0.95rem;
    margin: 0;
}

.movement-conclusion {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* For Who Section */
.for-who {
    position: relative;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    overflow: hidden;
}

.for-who-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(27, 77, 62, 0.8) 0%, rgba(18, 54, 42, 1) 100%);
    opacity: 0.9;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.audience-item .icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
    font-size: 1.8rem;
}

.audience-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Founder Section */
.founder {
    background: var(--color-bg);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 10px solid var(--color-white);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    /* Edge Compatibility: removed transform that was blocking rendering */
}

.founder-img-wrapper:hover .founder-img {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.founder-badge i {
    color: var(--color-gold);
}

.founder-name {
    font-size: 2rem;
    color: var(--color-wood);
    margin-bottom: 1.5rem;
}

.founder-bio p {
    font-size: 1.15rem;
}

/* Participate Section */
.participate {
    background-color: var(--color-white);
    padding: 6rem 0;
}

.participate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--color-primary-light);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.benefits-list li strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
}

.benefits-list li span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.form-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(27, 77, 62, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 45px;
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F7FAFC;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.opcional {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Radio Cards */
.interest-label {
    margin-bottom: 1rem !important;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.card-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: #F7FAFC;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: var(--color-primary-light);
}

.radio-card input:checked ~ .card-content {
    background: rgba(27, 77, 62, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.radio-card input:checked ~ .card-content i {
    color: var(--color-primary);
}

/* Footer / Final Phrase */
.footer {
    position: relative;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/img/hero.webp?v=2') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.quotes-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.final-phrase {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-subphrase {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-gold-light);
    margin-bottom: 4rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--color-gold);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-gold);
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Button states animation */
.spin { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.success-state {
    background-color: var(--color-wood) !important;
    pointer-events: none;
}

/* Interactivity & Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .movement-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .opportunity-visual {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .glass-card.offset {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .founder-grid, .participate-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row, .radio-grid {
        grid-template-columns: 1fr;
    }
    .final-phrase {
        font-size: 2.5rem;
    }
    .section {
        padding: 4rem 0;
    }
    .movement-pillars {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-actions {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        padding: 2rem;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-actions.active {
        right: 0;
    }

    .lang-switcher {
        flex-direction: column;
        width: 100%;
        background: rgba(27, 77, 62, 0.05);
        border-radius: 12px;
        padding: 0.5rem;
    }

    .lang-btn {
        padding: 0.8rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .glass-card {
        width: 100%;
        margin-bottom: 1rem;
    }
    .opportunity-visual {
        flex-direction: column;
    }
    .logo-img {
        max-width: 180px;
        height: auto;
    }
    .navbar {
        padding: 1rem 0;
    }
    .form-card {
        padding: 2rem 1.5rem;
    }
}
