@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)
   MOBILE-FIRST ARCHITECTURE — Base: 320px
   Breakpoints: 480px → 768px → 1024px → 1280px
   ========================================================================== */

/* --- VARIÁVEIS --- */
:root {
    --c-white: #FFFFFF;
    --c-offwhite: #F4F6F5;
    --c-forest: #0F3820;
    --c-forest-light: #eff7f3;
    --c-emerald: #10B981;
    --c-emerald-light: #e6f8f1;
    --c-text: #374151;
    --c-text-light: #6B7280;
    --f-title: 'Plus Jakarta Sans', sans-serif;
    --f-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 30px rgba(15, 56, 32, 0.06);
    --shadow-hover: 0 20px 50px rgba(15, 56, 32, 0.12);
    --radius: 12px;
}

/* --- RESET & GLOBAL PROTECTION --- */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--c-white);
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

/* Prevenção Global de Content Overflow (Emails, Títulos Longos) */
h1, h2, h3, h4, h5, h6, p, a, li, span, label, b, strong {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Scrollbar — desktop only */
@media (min-width: 1024px) {
    ::-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%;
    padding: 0 20px;
    margin: 0 auto;
}

.section { padding: 60px 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.w-full { width: 100%; }

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.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); }

/* --- TIPOGRAFIA BASE (Mobile) --- */
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;
}

.display-title { font-size: 2rem; line-height: 1.1; }
.section-title { font-size: 1.6rem; }
.section-subtitle { font-size: 1.1rem; color: var(--c-text-light); font-weight: 400; }
.body-text { font-size: 1rem; color: var(--c-text); }

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

/* --- BOTÕES (Mobile — toque confortável ≥ 44px) --- */
.btn-solid-emerald {
    display: inline-block;
    padding: 14px 28px;
    min-height: 48px;
    background: var(--c-emerald);
    color: #fff;
    border-radius: 8px;
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--c-emerald);
}
.btn-solid-emerald:hover { background: #0ea573; }

.btn-solid-forest {
    display: inline-block;
    padding: 16px 32px;
    min-height: 48px;
    background: var(--c-forest);
    color: #fff;
    border-radius: 8px;
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    width: 100%;
}

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

.btn-block { width: 100%; text-align: center; cursor: pointer; }

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

.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-image { height: 36px; transition: var(--transition); }
.navbar-glass.scrolled .logo-image { height: 32px; }

/* Desktop nav hidden on mobile */
.nav-links { display: none; }
.desktop-only { display: none; }

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--c-forest);
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

/* Nav Mobile */
.mobile-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--c-white);
    padding: 16px 20px;
    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: 14px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--c-forest);
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* ================== HERO (Mobile) ================== */
.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
    display: flex;
    align-items: center;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Carousel Slides */
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}

/* Overlay mais leve = foto mais visível */
.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(244,246,245,0.65) 100%);
    z-index: 1;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 24px 16px; /* Reduzido para mobile base */
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.badge-emerald {
    display: inline-block;
    padding: 5px 14px;
    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.75rem;
}

.hero-subtitle { font-size: 1.05rem; color: var(--c-text); }
.hero-cta-group { display: flex; flex-direction: column; gap: 12px; }

/* Trust Strip */
.trust-strip { background: var(--c-forest); text-align: center; padding: 12px 20px; }
.trust-text {
    color: rgba(255,255,255,0.8);
    font-family: var(--f-title);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
}

/* ================== GRID SPLIT (Mobile: empilhado) ================== */
.grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.reverse-mobile { display: flex; flex-direction: column-reverse; }

.content-side, .image-side { width: 100%; min-width: 0; }

.image-frame {
    position: relative;
    border-radius: var(--radius);
    padding: 8px;
    background: #fff;
}
.glass-soft-border { border: 1px solid rgba(0,0,0,0.05); }
.rounded-xl { border-radius: var(--radius); }
.shadow-premium { box-shadow: var(--shadow-soft); }
.img-fluid { width: 100%; height: auto; border-radius: var(--radius); }

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

.feature-bullets { display: flex; flex-direction: column; gap: 16px; }
.fb-item { display: flex; gap: 16px; align-items: flex-start; }
.fb-icon {
    width: 44px; height: 44px;
    background: var(--c-emerald-light);
    color: var(--c-emerald);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.fb-title { font-size: 1.05rem; margin-bottom: 4px; }
.fb-desc { color: var(--c-text-light); font-size: 0.9rem; }

/* ================== CARDS (Mobile: 1 coluna) ================== */
.section-header { margin-bottom: 32px; }
.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.premium-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.card-icon-container {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.bg-emerald-light { background: var(--c-emerald-light); }
.bg-forest-light { background: var(--c-forest-light); }
.card-title { font-size: 1.2rem; }
.card-text { color: var(--c-text-light); font-size: 0.95rem; }

/* ================== STANDARD GALLERY (Mobile: 1 coluna) ================== */
.urban-gallery, .application-gallery, .case-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

.urban-gallery .gallery-item, 
.application-gallery .gallery-item, 
.case-gallery .gallery-item {
    width: 100%;
    min-width: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.urban-gallery img, 
.application-gallery img, 
.case-gallery img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 200px; /* Altura garantida no mobile */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.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;
    pointer-events: none;
}

.gallery-item:hover .m-overlay { opacity: 1; }
.m-overlay i { color: #fff; font-size: 2rem; }

/* ================== ACCORDION ================== */
.accordion-container { border-top: 1px solid #eee; }
.acc-item { border-bottom: 1px solid #eee; padding: 16px 0; }
.acc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    min-height: 44px;
    font-size: 1rem;
}
.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: 12px; padding-left: 26px; color: var(--c-text-light); display: none; font-size: 0.95rem; }
.text-right-desktop { /* noop on mobile */ }

/* ================== FAQ SECTION ================== */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--f-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-forest);
    min-height: 48px;
    gap: 12px;
    transition: 0.3s;
}
.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question { color: var(--c-emerald); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 20px 18px 20px;
    color: var(--c-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================== AREA DE ATUAÇÃO ================== */
.atuacao-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no mobile base */
    gap: 12px;
}
.atuacao-card {
    background: var(--c-forest-light);
    border: 1px solid rgba(16,185,129,0.1);
    padding: 20px 16px;
    border-radius: var(--radius);
    text-align: center;
}
.atuacao-card i {
    font-size: 1.5rem;
    color: var(--c-emerald);
    margin-bottom: 8px;
}
.atuacao-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.atuacao-card p {
    font-size: 0.8rem;
    color: var(--c-text-light);
}

/* ================== SECTION CONTACT (Mobile) ================== */
.section-cta-bg {
    background: linear-gradient(160deg, #0f3820 0%, #0a2818 100%);
    color: #fff;
}

.contact-box-glass {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.cb-info { padding: 24px 16px; }
.section-label-white {
    font-family: var(--f-title);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--c-emerald-light);
    text-transform: uppercase;
}
.section-title-white {
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--f-title);
    font-weight: 700;
}
.body-text-white { font-size: 0.95rem; color: rgba(255,255,255,0.7); }

.cb-contact-points { display: flex; flex-direction: column; gap: 16px; }
.contact-point {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}
.cp-icon {
    width: 44px; height: 44px;
    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.3rem;
    flex-shrink: 0;
}
.cp-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--f-title);
    font-weight: 600;
}
.cp-val {
    font-size: 0.9rem;
    font-family: var(--f-title);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cb-form {
    padding: 24px 16px;
    background: #fff;
    width: 100%;
}
.form-h3 { color: var(--c-forest); font-size: 1.4rem; }
.form-p { color: var(--c-text-light); font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.grid-form-2 { display: flex; flex-direction: column; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-family: var(--f-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text);
}
.form-control {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    min-height: 48px;
    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;
    -webkit-appearance: none;
    display: block;
}
.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: 14px;
    border-radius: 8px;
    font-family: var(--f-title);
    font-size: 0.9rem;
    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 (Mobile) ================== */
.footer-elevate { background: #fff; padding: 40px 0; border-top: 1px solid #eee; }
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
}
.footer-logo { height: 36px; }
.footer-desc { color: var(--c-text-light); font-size: 0.85rem; max-width: 360px; }
.f-copyright { color: var(--c-text-light); font-size: 0.85rem; }
.f-col-legal { display: flex; flex-direction: column; align-items: center; }
.f-socials { display: flex; gap: 10px; }
.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;
}
.social-icon:hover { background: var(--c-emerald); color: #fff; }

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

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

.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease-out, transform 0.7s 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; }

/* Respeitar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   BREAKPOINT: 480px (Smartphones grandes)
   ========================================================================== */
@media (min-width: 480px) {
    .container { padding: 0 24px; }
    .display-title { font-size: 2.4rem; }
    .hero-glass-card { padding: 32px 28px; }
    .trust-text { font-size: 0.75rem; letter-spacing: 2.5px; }
    .urban-gallery img, .application-gallery img { height: 180px; }
    .gallery-large img { height: 280px; }
    .atuacao-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .atuacao-card { padding: 24px 20px; }
    .cb-info, .cb-form { padding: 32px 24px; }
}

/* ==========================================================================
   BREAKPOINT: 768px (Tablets)
   ========================================================================== */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .section { padding: 80px 0; }

    .desktop-only { display: inline-flex; }
    .mobile-menu-btn { display: none; }
    .nav-links { display: flex; gap: 28px; }
    .nav-item {
        text-decoration: none;
        color: var(--c-text);
        font-family: var(--f-title);
        font-weight: 500;
        font-size: 0.9rem;
        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%; }
    .logo-image { height: 40px; }

    .display-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .hero-section { padding-top: 130px; padding-bottom: 80px; }
    .hero-glass-card { padding: 44px 36px; max-width: 700px; }
    .hero-cta-group { flex-direction: row; }
    .btn-solid-forest { width: auto; }
    .btn-outline-forest { width: auto; }

    .grid-form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-box-glass {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cb-info, .cb-form { padding: 44px 32px; }

    .section-title-white { font-size: 1.8rem; }

    /* Mosaico: expandir para 2 colunas no tablet */
    .urban-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-item img { height: 220px; }
    .gallery-large { grid-column: span 2; }
    .gallery-large img { height: 320px; }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .f-col-legal { align-items: flex-end; }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .atuacao-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ==========================================================================
   BREAKPOINT: 1024px (Desktop pequeno / Laptop)
   ========================================================================== */
@media (min-width: 1024px) {
    .container { padding: 0 5%; max-width: 1280px; }
    .section { padding: 100px 0; }

    .navbar-glass { padding: 20px 0; }
    .navbar-glass.scrolled { padding: 14px 0; }
    .nav-links { gap: 35px; }
    .nav-item { font-size: 0.95rem; }
    .logo-image { height: 45px; }
    .navbar-glass.scrolled .logo-image { height: 40px; }

    .display-title { font-size: clamp(3rem, 4.5vw, 4.2rem); }
    .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }
    .hero-section { padding-top: 150px; padding-bottom: 100px; min-height: 85vh; }
    .hero-glass-card { padding: 56px; max-width: 800px; border-radius: 20px; }

    .grid-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .reverse-mobile { display: grid; grid-template-columns: 1fr 1fr; }
    .text-right-desktop { text-align: right; }

    .floating-badge-glass { bottom: 30px; left: -30px; padding: 15px 25px; font-size: 0.95rem; }

    .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .premium-card { padding: 36px; }
    .premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

    .gallery-item img { height: 220px; }
    .gallery-large img { height: 380px; }

    .cb-info, .cb-form { padding: 56px; }
    .contact-box-glass { border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }

    .atuacao-grid { grid-template-columns: repeat(4, 1fr); }
    .atuacao-card { padding: 28px 20px; }

    .btn-solid-forest:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(15, 56, 32, 0.2); }
    .btn-solid-emerald:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }

    .footer-elevate { padding: 60px 0; }
}

/* ==========================================================================
   BREAKPOINT: 1280px (Desktop grande)
   ========================================================================== */
@media (min-width: 1280px) {
    .section { padding: 120px 0; }
    .cards-grid { gap: 40px; }
    .premium-card { padding: 40px; }
    .grid-split { gap: 100px; }
}
