/* ========================================
   HEADER E NAVEGAÇÃO
======================================== */
.headerC {
    background-color: #0b4e23;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
 
.header-containerC {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.logoimgC {
    height: 120px;
    width: 120px;
}
 
.logoC {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: auto;
    margin-left: -40px;
}
 
.logo-iconC {
    width: 32px;
    height: 32px;
    fill: white;
}
 
.nav-desktopC {
    display: none;
    align-items: center;
    gap: 1.5rem;
}
 
@media (min-width: 768px) {
    .nav-desktopC {
        display: flex;
    }
}
 
.nav-linkC {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
}
 
.nav-linkC:hover,
.nav-linkC.active {
    background-color: #0e6e31;
}
 
.btn-loginC {
    background-color: white;
    color: #0F5E2A;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}
 
.btn-loginC:hover {
    background-color: #dcfce7;
}
 
.mobile-menu-btnC {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}
 
@media (min-width: 768px) {
    .mobile-menu-btnC {
        display: none;
    }
}
 
.mobile-navC {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
 
.mobile-navC.active {
    display: flex;
}
 
.mobile-nav-linkC {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}
 
.mobile-nav-linkC:hover,
.mobile-nav-linkC.active {
    background-color: #0F5E2A;
}
 
.left-sidebarC {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: #0F5E2A;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}
 
.left-sidebarC.active {
    transform: translateX(0);
}
 
.left-sidebar-headerC {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
 
.left-sidebar-closeC {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
 
.left-sidebar-navC {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}
 
.left-sidebar-navC a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}
 
.left-sidebar-navC a:hover {
    background-color: #0F5E2A;
}
 
/* RH Page Styles */
 
.rh-hero {
    position: relative;
    min-height: 577px;
    background:
        url('../images/fundo de planta 2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
}
 
.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: 1;
}
/* Hero carousel */
 
 
.rh-hero .container {
    position: relative;
    z-index: 2;
}
 
.rh-hero .hero-content {
    color: rgb(104, 98, 98);
    max-width: 700px;
}
 
.rh-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
 
.rh-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}
 
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
 
/* Diferenciais Section */
.diferenciais {
    padding: 4rem 0;
    background-color: #d1d1d1;
}
 
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
 
.section-header h2 {
    font-size: 2.5rem;
    color: #0F5E2A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
 
.section-header p {
    font-size: 1.125rem;
    color: #0F5E2A;
    max-width: 600px;
    margin: 0 auto;
}
 
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
 
.diferencial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
 
.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
 
.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgb(11, 76, 34) 0%, #16a34a 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.card-icon svg {
    width: 32px;
    height: 32px;
    color: rgb(255, 246, 246);
}
 
.diferencial-card h3 {
    font-size: 1.25rem;
    color: #0F5E2A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
 
.diferencial-card p {
    color: #0b4e23;
    font-size: 0.95rem;
    line-height: 1.6;
}
 
/* Serviços Section */
/* Gradiente base com variável CSS — troque adicionando .servicos--subtle ou .servicos--strong no elemento para comparar */
.servicos {
    --servicos-grad: linear-gradient( #cecece 100%);
    padding: 4rem 0;
    background: var(--servicos-grad);
    color: #08351a; /* texto levemente escuro para contraste */
}
 
/* Variação mais sutil: menos contraste, ar mais suave */
.servicos--subtle {
    --servicos-grad: linear-gradient(to bottom, #d1d1d1 0%, #d1d1d1 50%, #d1d1d1 100%);
}
 
/* Variação mais forte: verde mais intenso e começo mais escuro */
.servicos--strong {
    --servicos-grad: linear-gradient( #d1d1d1 50%, #d1d1d1 100%);
    color: #062b14; }
 
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
 
.servico-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
 
.servico-card:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    transform: translateY(-5px);
}
 
.servico-header {
    background: linear-gradient(135deg, #0b4e23 0%, #16a34a 100%);
    padding: 1.1rem 1.5rem;
    color: #d1d1d1
 ;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.servico-header h3 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}
 
.servico-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
 
.servico-body p {
    color: #130b0b;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
    font-size: 0.95rem;
}

.servico-body h2 {
    margin-top: auto;
    margin-bottom: 0;
    color: #0b4e23;
    font-size: 1.45rem;
}
 
.servico-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
 
.servico-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #000000;
    position: relative;
    font-size: 0.95rem;
}
 
.servico-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}
 
.servico-link {
    display: block;
    background: linear-gradient(135deg, #0b4e23 0%, #148b40 100%);
    color: white;
    padding: 0.85rem 1rem;
    border-radius: 0 0 1rem 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    margin-top: auto;
}
 
.servico-link:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(8, 20, 12, 0.3);
}
 
/* Casos de Sucesso */
.casos-sucesso {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d1d1d1 0%, rgba(22, 163, 74, 0.1) 100%);
}
 
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
 
.caso-card {
    background: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #00441b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}
 
.caso-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}
 
.caso-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}
 
.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0b4e23;
    line-height: 1;
}
 
.stat-label {
    font-size: 1.5rem;
    color: #292929;
    margin-top: 0.5rem;
    font-weight: 500;
}
 
 
 
.caso-card p {
    color: #292929;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}
 
/* CTA Section */
.cta-section {
    padding: 5rem 2rem;;
    margin-bottom: auto;
    background: linear-gradient(1deg, #0F5E2A );
    color: rgb(255, 244, 244);
}
 
 
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
 
.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}
 
.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}
 
/* Responsive */
@media (max-width: 768px) {
    .rh-hero h1 {
        font-size: 2rem;
    }
 
    .rh-hero p {
        font-size: 1rem;
    }
 
    .hero-buttons {
        flex-direction: column;
    }
 
    .section-header h2 {
        font-size: 2rem;
    }
 
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
 
    .servicos-grid {
        grid-template-columns: 1fr;
    }
 
    .casos-grid {
        grid-template-columns: 1fr;
    }
 
    .cta-content h2 {
        font-size: 1.75rem;
    }
 
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
 
/* Ajuste para footer */
.footer {
    margin-top: 0%;
}
 
.footer-logo img {
    width: 160px;
    height: auto;
}
 
/* Ícone Instagram (inline SVG) */
.instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E1306C; /* cor padrão */
    text-decoration: none;
}
.icon-instagram {
    width: 40px;
    height: 40px;
    display: inline-block;
    fill: currentColor; /* usa a cor do elemento */
    color: inherit;
    transition: transform .18s ease, color .18s ease;
}
.instagram:hover {
    color: #C13584;
}
.instagram:hover .icon-instagram {
    transform: scale(1.08);
}
 
/* Ícones genéricos */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}
 
      /* ===== FOOTER PROFISSIONAL ===== */
.footer-pro {
    background-color: #0b4e23;
    color: #e6f7ee;
    padding: 3.5rem 1.5rem 1.5rem;
}
 
.footer-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}
 
.footer-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
 
.footer-pro-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}
 
.footer-pro-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1fae5;
}
 
.footer-pro-logo {
    width: 150px;
    margin-bottom: 1rem;
}
 
.footer-pro-col ul {
    list-style: none;
    padding: 0;
}
 
.footer-pro-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #bbf7d0;
}
 
.footer-pro-col ul li a {
    color: #bbf7d0;
    text-decoration: none;
    transition: color 0.3s ease;
}
 
.footer-pro-col ul li a:hover {
    color: #ffffff;
}
 
/* Contato */
.footer-pro-contact li {
    line-height: 1.5;
}
 
/* Redes sociais */
.footer-pro-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
 
.footer-pro-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
 
.footer-pro-social a:hover {
    background: rgba(255,255,255,0.3);
}
 
/* Linha inferior */
.footer-pro-bottom {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: #bbf7d0;
}
 
/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .footer-pro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
 
    .footer-pro-social {
        justify-content: center;
    }
}
 
.icon-instagram svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}




  /* ========== HAMBÚRGUER BUTTON ========== */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .hamburger-btn:hover {
            background: rgba(255,255,255,0.15);
        }
        .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                        opacity 0.25s ease,
                        width 0.3s ease;
            transform-origin: center;
        }
        .hamburger-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger-btn.open .bar:nth-child(2) { opacity: 0; width: 0; }
        .hamburger-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ========== OVERLAY ========== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0);
            pointer-events: none;
            transition: background 0.35s ease;
            z-index: 1100;
        }
        .nav-overlay.visible {
            background: rgba(0,0,0,0.4);
            pointer-events: all;
        }

        /* ========== SIDEBAR ========== */
        .side-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100%;
            background: #fff;
            border-right: 1px solid rgba(0,0,0,0.08);
            box-shadow: 4px 0 24px rgba(0,0,0,0.12);
            transform: translateX(-100%);
            transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .side-nav.open { transform: translateX(0); }

        .side-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px 12px;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            flex-shrink: 0;
            background: #0b4e23;
        }
        .side-nav-logo {
            height: 52px;
            width: auto;
        }
        .side-close-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: rgba(255,255,255,0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            transition: background 0.15s;
        }
        .side-close-btn:hover { background: rgba(255,255,255,0.3); }

        .side-nav-links {
            flex: 1;
            padding: 12px;
            overflow-y: auto;
        }

        .side-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 8px;
            font-size: 15px;
            color: #444;
            cursor: pointer;
            text-decoration: none;
            opacity: 0;
            transform: translateX(-16px);
            transition: background 0.15s, color 0.15s, opacity 0.3s ease, transform 0.3s ease;
        }
        .side-nav.open .side-nav-item { opacity: 1; transform: translateX(0); }
        .side-nav.open .side-nav-item:nth-child(1) { transition-delay: 0.06s; }
        .side-nav.open .side-nav-item:nth-child(2) { transition-delay: 0.10s; }
        .side-nav.open .side-nav-item:nth-child(3) { transition-delay: 0.14s; }
        .side-nav.open .side-nav-item:nth-child(4) { transition-delay: 0.18s; }
        .side-nav.open .side-nav-item:nth-child(5) { transition-delay: 0.22s; }

        .side-nav-item:hover { background: #f0fdf4; color: #0b4e23; }
        .side-nav-item.active { background: #e8f5ed; color: #0b4e23; font-weight: 600; }

        .side-nav-item svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.55;
        }
        .side-nav-item.active svg,
        .side-nav-item:hover svg { opacity: 1; }

        .side-divider {
            height: 1px;
            background: rgba(0,0,0,0.07);
            margin: 8px 12px;
        }

        .side-nav-footer {
            padding: 14px 18px 20px;
            border-top: 1px solid rgba(0,0,0,0.07);
        }
        .side-btn-login {
            display: block;
            width: 100%;
            padding: 11px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: #0b4e23;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.15s;
        }
        .side-btn-login:hover { background: #15803d; }

        /* Mostrar hambúrguer só no mobile */
        @media (max-width: 768px) {
            .hamburger-btn { display: flex; }
            /* esconde o botão antigo caso ainda exista */
            .mobile-menu-btn { display: none !important; }
        }
