:root {
    --primary: #0e6100;
    --secondary: #0F8A5F;
    --accent: #8BC34A;
    --light: #F5FFF8;
    --dark: #163020;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

/* ===========================
   NAVBAR
=========================== */
.logo-navbar {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.custom-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 9999;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 12px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary) !important;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    margin-right: 15px;
    transition: .3s;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

.btn-contact {
    background: var(--accent);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .btn-contact:hover {
        color: white;
        transform: translateY(-2px);
    }

/* ===========================
   HERO
=========================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15,63,29,.82), rgba(15,63,29,.88)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1800');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139,195,74,.20), transparent 40%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    max-width: 700px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 650px;
    margin-top: 25px;
}

.hero-buttons {
    margin-top: 40px;
}

.btn-main {
    background: var(--accent);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 15px;
    transition: .3s;
}

    .btn-main:hover {
        color: white;
        transform: translateY(-3px);
    }

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s;
}

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary);
    }

/* ===========================
   HERO CARD
=========================== */

.hero-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 45px;
    border: 1px solid rgba(255,255,255,.15);
}

    .hero-card h2 {
        font-size: 3rem;
        font-weight: 800;
    }

    .hero-card p {
        margin-bottom: 0;
    }

/* ===========================
   SECCIONES
=========================== */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary);
    }

    .section-title p {
        color: #666;
    }

/* ===========================
   SERVICIOS
=========================== */

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    min-height: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .service-card i {
        font-size: 45px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #666;
        line-height: 1.8;
    }

/* ===========================
   PROCESOS
=========================== */

.process-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

    .process-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .process-image-card:hover img {
        transform: scale(1.08);
    }

    .process-image-card .overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 25px;
        background: linear-gradient( rgba(0,0,0,.10), rgba(0,67,17,.85) );
    }

    .process-image-card h4 {
        color: white;
        font-weight: 700;
        margin: 0;
    }

/* ===========================
   FOOTER
=========================== */

.footer-gn10 {
    background: linear-gradient( 135deg, #0b6e15, #004b31 );
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 90px 30px;
}
.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}
.footer-label {
    display: inline-block;
    letter-spacing: 3px;
    font-size: .9rem;
    font-weight: 700;
    color: #c8f5d1;
    margin-bottom: 20px;
}

.footer-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: .95;
}

.footer-contact {
    margin-top: 35px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

    .contact-item i {
        color: #A5D6A7;
        font-size: 1.2rem;
    }

.footer-btn {
    display: inline-block;
    background: white;
    color: #0b6e4f;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .footer-btn:hover {
        transform: translateY(-3px);
        color: #0b6e4f;
    }

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    background: rgba(0,0,0,.12);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 3rem;
    }

    .hero-card {
        margin-top: 40px;
    }

   
}

@media (max-width: 768px) {

    .custom-navbar {
        width: 95%;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        padding: 60px 25px;
    }

        .footer-content h2 {
            font-size: 2rem;
        }

        .footer-content p {
            font-size: 1rem;
        }
   
}
.service-image-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
    border: 4px solid #8BC34A;
    transition: .3s;
}

    .service-image-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.service-card:hover .service-image-circle {
    transform: scale(1.05);
}

.mission-vision {
    background: #f8fafc;
}

.mv-box {
    background: #034933;
    border-radius: 25px;
    padding: 40px;
    min-height: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    opacity: 0;
    transition: all .9s ease;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .mv-header i {
        font-size: 2rem;
        color: #8bc34a;
    }

    .mv-header h3 {
        margin: 0;
        font-size: 2rem;
        font-weight: 800;
        color: white;
    }

.mv-box p {
    line-height: 1.9;
    color: white;
}

/* Posición inicial */

.mission-box {
    transform: translateX(-150px);
}

.vision-box {
    transform: translateX(150px);
}

/* Cuando aparecen */

.mv-show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}