@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   RC AMBIENTAL - MODELO 04 (PREMIUM LIGHT CORPORATE)
   ========================================================================== */

:root {
    /* Cores Invertidas / Corporate */
    --c-white: #FFFFFF;
    --c-offwhite: #F4F6F5; /* Background secundário */
    
    --c-forest: #0F3820; /* Dark Green - Textos, botões principais */
    --c-forest-light: #eff7f3;
    
    --c-emerald: #10B981; /* Primary brand color / CTAs - Verde brilhante e de confiança */
    --c-emerald-light: #e6f8f1;
    
    --c-text: #374151; /* Dark grey for text body */
    --c-text-light: #6B7280;
    
    --f-title: 'Plus Jakarta Sans', sans-serif;
    --f-body: 'Inter', sans-serif;
    
    --transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 20px 40px rgba(15, 56, 32, 0.06);
    --shadow-hover: 0 30px 60px rgba(15, 56, 32, 0.12);
}

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

html, body {
    background-color: var(--c-white);
    color: var(--c-text);
    font-family: var(--f-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100vw;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-offwhite); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-emerald); }

/* --- UTILITÁRIOS --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section { padding: 120px 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 50px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 30px; }
.ml-2 { margin-left: 8px; }

.bg-white { background-color: var(--c-white); }
.bg-offwhite { background-color: var(--c-offwhite); }
.text-forest { color: var(--c-forest); }
.text-emerald { color: var(--c-emerald); }

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

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 { font-family: var(--f-title); font-weight: 700; color: var(--c-forest); line-height: 1.2; letter-spacing: -0.02em; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.section-subtitle { font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--c-text-light); font-weight: 400;}
.body-text { font-size: 1.15rem; color: var(--c-text); }

.section-label { font-family: var(--f-title); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; color: var(--c-emerald); text-transform: uppercase; }
.section-label-center { text-align: center; font-family: var(--f-title); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; color: var(--c-emerald); text-transform: uppercase; }

/* Botões */
.btn-solid-emerald {
    display: inline-block; padding: 14px 28px; background: var(--c-emerald); color: #fff;
    border-radius: 8px; font-family: var(--f-title); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: var(--transition);
    border: 1px solid var(--c-emerald);
}
.btn-solid-emerald:hover { background: #0ea573; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }

.btn-solid-forest {
    display: inline-block; padding: 16px 36px; background: var(--c-forest); color: #fff;
    border-radius: 8px; font-family: var(--f-title); font-weight: 600; font-size: 1.05rem; text-decoration: none; transition: var(--transition);
}
.btn-solid-forest:hover { background: #0a2515; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(15, 56, 32, 0.2); }

.btn-outline-forest {
    display: inline-block; padding: 15px 35px; background: transparent; color: var(--c-forest);
    border-radius: 8px; font-family: var(--f-title); font-weight: 600; font-size: 1.05rem; text-decoration: none; transition: var(--transition);
    border: 1px solid rgba(15, 56, 32, 0.2);
}
.btn-outline-forest:hover { border-color: var(--c-forest); background: var(--c-forest-light); }
.btn-block { width: 100%; text-align: center; cursor: pointer; }


/* ================== NAVBAR GLASSMORPHISM ================== */
.navbar-glass {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}
.navbar-glass.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-image { height: 45px; transition: var(--transition); } /* Requires dark logo version from customer */
.navbar-glass.scrolled .logo-image { height: 40px; }

.nav-links { display: flex; gap: 35px; }
.nav-item {
    text-decoration: none; color: var(--c-text); font-family: var(--f-title); font-weight: 500; font-size: 0.95rem;
    position: relative; transition: color 0.3s;
}
.nav-item:hover { color: var(--c-forest); }
.nav-item::after {
    content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
    background: var(--c-emerald); transition: width 0.3s;
}
.nav-item:hover::after { width: 100%; }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--c-forest); cursor: pointer; }

/* Nav Mobile */
.mobile-nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-white); padding: 20px 5%; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out;
}
.mobile-nav.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.mobile-link { padding: 15px 0; border-bottom: 1px solid #eee; text-decoration: none; color: var(--c-forest); font-family: var(--f-title); font-weight: 600; }

/* ================== HERO ================== */
.hero-section {
    position: relative;
    padding-top: 150px; padding-bottom: 100px;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero-bg-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    overflow: hidden;
}
.parallax-bg {
    width: 100%; height: 120%; /* Para o parallax subir/descer */
    background: url('../img/hero.png') center/cover no-repeat;
    transform: translateY(0);
    filter: brightness(1.2) contrast(0.9) grayscale(20%);
}
.hero-bg-wrapper::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    /* Gradient overlay claro */
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,246,245,0.7) 100%);
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    box-shadow: var(--shadow-soft);
}
.badge-emerald {
    display: inline-block; padding: 6px 16px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--c-emerald); border-radius: 50px; font-family: var(--f-title); font-weight: 600; font-size: 0.8rem;
}
.display-title { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.1; }
.hero-subtitle { font-size: 1.25rem; color: var(--c-text); max-width: 600px; }
.hero-cta-group { display: flex; gap: 20px; flex-wrap: wrap; }

.trust-strip { background: var(--c-forest); text-align: center; padding: 15px 0; }
.trust-text { color: rgba(255,255,255,0.8); font-family: var(--f-title); font-size: 0.85rem; font-weight: 600; letter-spacing: 3px; }

/* ================== SECTIONS COM GRID ================== */
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.image-frame { position: relative; border-radius: 16px; padding: 10px; background: #fff;}
.glass-soft-border { border: 1px solid rgba(0,0,0,0.05); }
.rounded-xl { border-radius: 12px; }
.shadow-premium { box-shadow: var(--shadow-soft); }

.floating-badge-glass {
    position: absolute; bottom: 30px; left: -30px;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
    padding: 15px 25px; border-radius: 12px; box-shadow: var(--shadow-hover);
    display: flex; align-items: center; gap: 10px; font-family: var(--f-title); font-weight: 600; color: var(--c-forest);
}
.floating-badge-glass i { font-size: 1.5rem; }

.feature-bullets { display: flex; flex-direction: column; }
.fb-item { display: flex; gap: 20px; align-items: flex-start; }
.fb-icon { width: 50px; height: 50px; background: var(--c-emerald-light); color: var(--c-emerald); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.fb-title { font-size: 1.2rem; margin-bottom: 5px; }
.fb-desc { color: var(--c-text-light); }

/* ================== CARDS CORPORATIVOS ================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.premium-card {
    background: #fff; padding: 40px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft); transition: var(--transition);
}
.premium-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card-icon-container { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.bg-emerald-light { background: var(--c-emerald-light); }
.bg-forest-light { background: var(--c-forest-light); }
.card-title { font-size: 1.4rem; }
.card-text { color: var(--c-text-light); }

/* ================== ACCORDION / MOSAIC ================== */
.accordion-container { border-top: 1px solid #eee; }
.acc-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.acc-title { display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; }
.acc-title:hover { color: var(--c-emerald); }
.acc-item.active .acc-title { color: var(--c-emerald); }
.acc-item.active .acc-title i { transform: rotate(90deg); }
.acc-content { margin-top: 15px; padding-left: 30px; color: var(--c-text-light); display: none; }

.grid-mosac { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.grid-m-col { display: flex; flex-direction: column; justify-content: flex-end; }
.mosaic-item { height: 200px; background: url('../img/result.png') center/cover; border-radius: 12px; position: relative; overflow: hidden;}
.mosaic-large { height: 350px; background: url('../img/hero.png') center/cover; }
.m-overlay { position: absolute; inset: 0; background: rgba(15,56,32,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;}
.mosaic-item:hover .m-overlay { opacity: 1; }
.m-overlay i { color: #fff; font-size: 2.5rem; }

/* ================== SECTION CONTACT ================== */
.section-cta-bg { background: var(--c-forest); color: #fff; }
.cta-bg-shape {
    position: absolute; top: -50%; left: 50%; width: 100vw; height: 200%; background: #0a2818;
    transform: rotate(15deg); z-index: 1;
}

.contact-box-glass {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden;
}

.cb-info { padding: 60px; }
.section-label-white { font-family: var(--f-title); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; color: var(--c-emerald-light); text-transform: uppercase; }
.section-title-white { font-size: clamp(2rem, 3vw, 2.5rem); color: #fff; font-family: var(--f-title); font-weight: 700;}
.body-text-white { font-size: 1.1rem; color: rgba(255,255,255,0.7); }

.contact-point { display: flex; align-items: center; gap: 15px; text-decoration: none; color: #fff; }
.cp-icon { width: 50px; height: 50px; background: rgba(16,185,129,0.1); color: var(--c-emerald); border-radius: 50%; display: flex; align-items:center; justify-content:center; font-size: 1.5rem; }
.cp-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: var(--f-title); font-weight: 600;}
.cp-val { font-size: 1.1rem; font-family: var(--f-title); font-weight: 600; }

.cb-form { padding: 60px; }
.form-h3 { color: var(--c-forest); font-size: 1.8rem; }
.form-p { color: var(--c-text-light); }
.form-group { margin-bottom: 25px; }
.grid-form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-family: var(--f-title); font-size: 0.9rem; font-weight: 600; color: var(--c-text); }
.form-control {
    width: 100%; padding: 15px; background: var(--c-offwhite); border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: var(--f-body); font-size: 1rem; color: var(--c-text); transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--c-emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }

.form-feedback { padding: 15px; border-radius: 8px; font-family: var(--f-title); font-size: 0.95rem; font-weight: 600; }
.form-feedback.success { background: var(--c-emerald-light); color: var(--c-forest); border: 1px solid var(--c-emerald); }
.form-feedback.error { background: #fee2e2; color: #991b1b; border: 1px solid #f87171; }

/* ================== FOOTER ================== */
.footer-elevate { background: #fff; padding: 60px 0; border-top: 1px solid #eee; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { height: 40px; }
.footer-desc { color: var(--c-text-light); font-size: 0.9rem; max-width: 400px; }
.f-copyright { color: var(--c-text-light); font-size: 0.9rem; }
.f-col-legal { display: flex; flex-direction: column; align-items: flex-end; }
.social-icon { display: inline-flex; width: 40px; height: 40px; background: var(--c-offwhite); border-radius: 50%; color: var(--c-forest); align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; transition: 0.3s; margin-left:10px;}
.social-icon:hover { background: var(--c-emerald); color: #fff; }

/* ================== REVEAL ANIMATIONS ================== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ================== RESPONSIVO ================== */
@media (max-width: 1024px) {
    .grid-split { grid-template-columns: 1fr; gap: 50px; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    .text-right-desktop { text-align: left; align-items: flex-start;}
    .cards-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
    .contact-box-glass { grid-template-columns: 1fr; }
    .floating-badge-glass { left: 10px; bottom: 10px; }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-glass-card { padding: 40px 25px; }
    .hero-cta-group { flex-direction: column; }
    .btn-solid-forest, .btn-outline-forest { width: 100%; text-align: center; }
    
    .grid-form-2 { grid-template-columns: 1fr; gap: 0;}
    .cb-info, .cb-form { padding: 40px 25px; }
    
    .footer-content { flex-direction: column; gap: 30px; text-align: center; align-items: center; }
    .f-col-legal { align-items: center; }
    .social-icon { margin: 0 5px; }
}
