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

            :root {
                --green: #1a7a2e;
                --green-light: #2db54a;
                --green-dark: #0d5e20;
                --green-accent: #1a7a2e;
                --green-pale: #e8f5ec;
                --red: #8b1a2a;
                --red-bright: #c0253a;
                --white: #ffffff;
                --bg: #f4f7f4;
                --bg2: #eef3ee;
                --text: #1a2e1d;
                --text-light: #5a7460;
                --border: #d4e4d8;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: 'DM Sans', sans-serif;
                background: var(--white);
                color: var(--text);
                overflow-x: hidden;
                display: flex;
                flex-direction: column;
                min-height: 100vh;
            }

            /* El contenido principal ocupa todo el espacio disponible,
               empujando el footer hacia abajo */
            body > main,
            body > .page-content {
                flex: 1 0 auto;
            }

            footer {
                flex-shrink: 0;
            }

            /* ---- NAV ---- */
            nav {
                position: fixed;
                top: 12px;
                left: 16px;
                right: 16px;
                width: auto;
                z-index: 100;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0px 32px;
                background: #ffffff;
                border: 1px solid var(--border);
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                transition: box-shadow 0.3s;
            }

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

            .logo-mark {
                width: 38px;
                height: 38px;
                background: var(--green);
                border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 18px;
                color: #fff;
                letter-spacing: 1px;
            }

            .logo-text {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 22px;
                color: var(--text);
                letter-spacing: 3px;
            }

            .nav-links {
                display: flex;
                align-items: center;
                gap: 36px;
                list-style: none;
            }

            .nav-links a {
                text-decoration: none;
                color: #111;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                transition: color 0.2s;
                position: relative;
            }

            .nav-links a:not(.nav-cta) {
                padding-bottom: 4px;
            }

            .nav-links a:not(.nav-cta)::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                right: 0;
                height: 2px;
                background: var(--green);
                border-radius: 2px;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.25s ease;
            }

            .nav-links a:not(.nav-cta):hover {
                color: var(--green);
            }

            .nav-links a:not(.nav-cta):hover::after {
                transform: scaleX(1);
            }

            .nav-links a:not(.nav-cta).active {
                color: var(--green);
                font-weight: 600;
            }

            .nav-links a:not(.nav-cta).active::after {
                transform: scaleX(1);
            }

            /* Dropdown */
            .nav-item {
                position: relative;
            }

            .nav-item>a {
                display: inline-flex;
                align-items: center;
                gap: 5px;
            }

            .nav-item>a .chevron {
                font-size: 10px;
                color: #111;
                transition: transform 0.25s;
                line-height: 1;
            }

            .nav-item:hover>a .chevron {
                transform: rotate(180deg);
            }

            .nav-item:hover>a {
                color: var(--green);
            }

            .dropdown {
                position: absolute;
                top: calc(100% + 14px);
                left: 50%;
                transform: translateX(-50%);
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 8px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                min-width: 200px;
                padding: 8px 0;
                opacity: 0;
                pointer-events: none;
                transform: translateX(-50%) translateY(-6px);
                transition: opacity 0.2s, transform 0.2s;
                z-index: 200;
            }

            .nav-item:hover .dropdown {
                opacity: 1;
                pointer-events: all;
                transform: translateX(-50%) translateY(0);
            }

            /* Bridge gap between nav link and dropdown so hover doesn't break */
            .nav-item::after {
                content: '';
                position: absolute;
                top: 100%;
                left: -10px;
                right: -10px;
                height: 16px;
            }

            .dropdown::before {
                content: '';
                position: absolute;
                top: -6px;
                left: 50%;
                transform: translateX(-50%);
                width: 12px;
                height: 12px;
                background: #fff;
                border-left: 1px solid var(--border);
                border-top: 1px solid var(--border);
                rotate: 45deg;
            }

            .dropdown a {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 10px 18px;
                font-size: 13px;
                color: var(--text-light) !important;
                text-transform: none !important;
                letter-spacing: 0.3px !important;
                transition: background 0.15s, color 0.15s;
                white-space: nowrap;
                border-radius: 0;
            }

            .dropdown a:hover {
                background: var(--green-pale);
                color: var(--green) !important;
            }

            .dropdown a .dd-icon {
                width: 28px;
                height: 28px;
                background: var(--green-pale);
                border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                flex-shrink: 0;
            }

            .dropdown hr {
                border: none;
                border-top: 1px solid var(--border);
                margin: 6px 0;
            }

            .nav-cta {
                background: var(--green) !important;
                color: #fff !important;
                padding: 10px 20px;
                border-radius: 4px;
                font-weight: 600 !important;
                font-size: 13px !important;
                display: inline-flex;
                align-items: center;
                gap: 7px;
                transition: background 0.2s !important;
                letter-spacing: 0.3px !important;
            }

            .nav-cta:hover {
                background: var(--green-dark) !important;
                color: #fff !important;
            }

            .nav-cta .arrow {
                font-style: normal;
                font-size: 14px;
                line-height: 1;
            }

            .hamburger {
                display: none;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 4px;
            }

            .hamburger span {
                width: 26px;
                height: 2px;
                background: var(--text);
                border-radius: 2px;
                transition: all 0.3s;
            }

            /* ---- HERO SLIDER ---- */
            .hero {
                position: relative;
                width: 100%;
                height: 60vh;
                min-height: 420px;
                overflow: hidden;
                padding-top: 80px;
            }

            /* ---- PAGE HERO (imagen única con título centrado) ---- */
            .page-hero {
                position: relative;
                width: 100%;
                height: 55vh;
                min-height: 360px;
                max-height: 560px;
                overflow: hidden;
                display: flex;
                align-items: flex-end;
                justify-content: center;
                text-align: center;
                /* Cancela el padding-top de <main> igual que .hero */
                margin-top: -120px;
            }

            .page-hero-bg {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                transform: scale(1.04);
                transition: transform 8s ease;
            }

            .page-hero:hover .page-hero-bg {
                transform: scale(1.08);
            }

            /* Overlay degradado oscuro */
            .page-hero-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.35) 0%,
                    rgba(0, 0, 0, 0.55) 100%
                );
            }

            /* Barra verde inferior decorativa */
            .page-hero::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: var(--green);
            }

            .page-hero-content {
                position: relative;
                z-index: 2;
                padding: 0 6% 36px;
            }

            .page-hero-label {
                font-size: 11px;
                color: rgba(255, 255, 255, 0.75);
                letter-spacing: 4px;
                text-transform: uppercase;
                font-weight: 600;
                margin-bottom: 16px;
            }

            .page-hero-title {
                font-family: 'Bebas Neue', sans-serif;
                font-size: clamp(24px, 3.5vw, 48px);
                color: #fff;
                line-height: 1;
                letter-spacing: 3px;
                text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
                margin-bottom: 0;
            }

            .page-hero-sub {
                font-size: clamp(14px, 1.8vw, 18px);
                color: rgba(255, 255, 255, 0.82);
                font-weight: 300;
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.6;
            }

            /* El selector del main también cancela el padding para .page-hero */
            main > .page-hero:first-child {
                margin-top: -120px;
            }

            /* ── SERVICE DETAIL: Sección intro (logo + título | descripción) ── */
            .svc-intro {
                padding: 56px 6% 40px;
                border-bottom: 1px solid var(--border);
                background: #fff;
            }

            .svc-intro-inner {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }

            .svc-intro-left {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                border-right: 2px solid var(--border);
                padding-right: 60px;
            }

            .svc-intro-logo img {
                width: 90px;
                height: auto;
                display: block;
            }

            .svc-intro-title {
                font-family: 'DM Sans', sans-serif;
                font-size: clamp(14px, 1.4vw, 18px);
                font-weight: 400;
                color: var(--text-light);
                line-height: 1.5;
                margin: 0;
                font-style: italic;
            }

            .svc-intro-desc {
                font-size: 17px;
                line-height: 1.8;
                color: var(--text);
                text-align: justify;
                margin: 0;
            }

            /* ── SERVICE DETAIL: Sección beneficios ── */
            .svc-benefits {
                padding: 40px 6% 56px;
                background: #fff;
            }

            .svc-benefits-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .svc-benefits-label {
                font-size: 13px;
                font-weight: 700;
                color: var(--green);
                letter-spacing: 0.5px;
                margin-bottom: 24px;
                text-transform: uppercase;
            }

            .svc-benefits-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }

            .svc-benefit-card {
                display: flex;
                gap: 16px;
                align-items: flex-start;
            }

            .svc-benefit-icon {
                flex-shrink: 0;
                width: 44px;
                height: 44px;
                border-radius: 50%;
                background: var(--green-pale);
                border: 2px solid var(--green);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                color: var(--green);
            }

            .svc-benefit-body h3 {
                font-size: 16px;
                font-weight: 700;
                color: var(--green);
                margin: 0 0 8px;
                line-height: 1.3;
            }

            .svc-benefit-body p {
                font-size: 15px;
                line-height: 1.65;
                color: var(--text-light);
                margin: 0;
            }

            /* Responsive: svc-intro y svc-benefits */
            @media (max-width: 860px) {
                .svc-intro-inner {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
                .svc-intro-left {
                    border-right: none;
                    border-bottom: 2px solid var(--border);
                    padding-right: 0;
                    padding-bottom: 28px;
                }
                .svc-benefits-grid {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
            }

            .slide {
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                opacity: 0;
                transition: opacity 0.9s ease;
                padding: 0 6%;
            }

            .slide.active {
                opacity: 1;
            }

            .slide-bg {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                filter: brightness(0.38);
                transform: scale(1.05);
                transition: transform 8s ease;
            }

            .slide.active .slide-bg {
                transform: scale(1);
            }

            .slide-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(13, 94, 32, 0.75) 0%, rgba(26, 42, 29, 0.4) 60%, transparent 100%);
            }

            .slide-inner {
                position: relative;
                z-index: 2;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
            }

            .slide-content {
                max-width: 560px;
                flex-shrink: 0;
            }

            .slide-tag {
                display: inline-block;
                background: #fff;
                color: var(--green);
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 3px;
                text-transform: uppercase;
                padding: 5px 14px;
                border-radius: 2px;
                margin-bottom: 20px;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.6s 0.2s;
            }

            .slide.active .slide-tag {
                opacity: 1;
                transform: translateY(0);
            }

            .slide-title {
                font-family: 'Bebas Neue', sans-serif;
                font-size: clamp(32px, 5vw, 55px);
                line-height: 0.95;
                letter-spacing: 2px;
                color: #fff;
                margin-bottom: 14px;
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.7s 0.35s;
            }

            .slide.active .slide-title {
                opacity: 1;
                transform: translateY(0);
            }

            .slide-desc {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.82);
                line-height: 1.6;
                margin-bottom: 24px;
                font-weight: 300;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.6s 0.5s;
                max-width: 480px;
            }

            .slide.active .slide-desc {
                opacity: 1;
                transform: translateY(0);
            }

            .btn {
                display: inline-block;
                padding: 14px 32px;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                text-decoration: none;
                border-radius: 4px;
                cursor: pointer;
                transition: all 0.25s;
                border: none;
            }

            .btn-primary {
                background: var(--green);
                color: #fff;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s 0.65s, transform 0.6s 0.65s, background 0.25s;
            }

            .slide.active .btn-primary {
                opacity: 1;
                transform: translateY(0);
            }

            .btn-primary:hover {
                background: var(--green-light);
            }

            /* btn-primary fuera del slider siempre visible */
            :not(.slide)>.btn-primary,
            .section-inner .btn-primary,
            .about-text .btn-primary {
                opacity: 1 !important;
                transform: none !important;
                transition: background 0.25s !important;
            }

            .btn-outline {
                background: transparent;
                color: var(--text);
                border: 1.5px solid var(--border);
            }

            .btn-outline:hover {
                border-color: var(--green);
                color: var(--green);
            }

            .btn-red {
                background: var(--red-bright);
                color: #fff;
            }

            .btn-red:hover {
                background: var(--red);
            }

            .slide .btn-red {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s 0.65s, transform 0.6s 0.65s, background 0.25s;
            }

            .slide.active .btn-red {
                opacity: 1;
                transform: translateY(0);
            }

            /* Slider controls */
            .slider-dots-wrap {
                position: absolute;
                bottom: 18px;
                left: 0;
                right: 0;
                z-index: 10;
            }

            .slider-dots {
                display: flex;
                gap: 10px;
                justify-content: center;
            }

            .dot {
                width: 32px;
                height: 6px;
                border-radius: 3px;
                background: rgba(255, 255, 255, 0.4);
                cursor: pointer;
                transition: all 0.3s;
            }

            .dot.active {
                background: #fff;
                width: 52px;
            }


            .slider-image {
                position: absolute;
                right: 6%;
                top: 50%;
                transform: translateY(-50%);
                width: clamp(260px, 35%, 440px);
                z-index: 5;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
            }

            .slider-image img {
                width: 100%;
                display: block;
            }

            /* Imagen decorativa difuminada a la derecha del slide */
            .slide-image-wrap {
                flex-shrink: 0;
                width: clamp(220px, 32%, 420px);
                height: clamp(220px, 50vh, 380px);
                position: relative;
                overflow: hidden;
                border-radius: 16px;
                opacity: 0;
                transform: translateX(40px);
                transition: opacity 0.9s 0.4s ease, transform 0.9s 0.4s ease;
                /* Desvanecimiento en bordes: izquierda más pronunciado, leve en top/bottom */
                -webkit-mask-image: linear-gradient(
                    to right,
                    transparent 0%,
                    rgba(0,0,0,0.5) 18%,
                    rgba(0,0,0,0.85) 35%,
                    black 55%,
                    black 80%,
                    transparent 100%
                ),
                linear-gradient(
                    to bottom,
                    transparent 0%,
                    black 15%,
                    black 85%,
                    transparent 100%
                );
                -webkit-mask-composite: source-in;
                mask-image: linear-gradient(
                    to right,
                    transparent 0%,
                    rgba(0,0,0,0.5) 18%,
                    rgba(0,0,0,0.85) 35%,
                    black 55%,
                    black 80%,
                    transparent 100%
                ),
                linear-gradient(
                    to bottom,
                    transparent 0%,
                    black 15%,
                    black 85%,
                    transparent 100%
                );
                mask-composite: intersect;
            }

            .slide.active .slide-image-wrap {
                opacity: 1;
                transform: translateX(0);
            }

            .slide-image-photo {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
                display: block;
                filter: brightness(0.9) saturate(1.1);
            }

            /* Gradient workers placeholder */
            .worker-card {
                background: linear-gradient(160deg, #1a7a2e 0%, #0d5e20 50%, #0a3012 100%);
                padding: 40px 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-height: 300px;
                text-align: center;
            }

            .worker-icon {
                font-size: 64px;
                margin-bottom: 12px;
            }

            .worker-label {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 22px;
                letter-spacing: 2px;
                color: #fff;
            }

            /* ---- STATS ---- */
            .stats {
                background: var(--green);
                padding: 60px 6%;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2px;
            }

            .stat {
                text-align: center;
                padding: 30px 20px;
                background: rgba(255, 255, 255, 0.06);
                position: relative;
            }

            .stat::after {
                content: '';
                position: absolute;
                right: 0;
                top: 20%;
                bottom: 20%;
                width: 1px;
                background: rgba(255, 255, 255, 0.2);
            }

            .stat:last-child::after {
                display: none;
            }

            .stat-number {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 64px;
                color: #fff;
                line-height: 1;
                letter-spacing: 2px;
                display: block;
            }

            .stat-label {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.75);
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-top: 8px;
            }

            /* ---- CLIENTS ---- */
            .clients-section {
                background: var(--bg);
                padding: 40px 6%;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
            }

            .clients-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .clients-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 28px;
            }

            .clients-title {
                font-size: 22px;
                color: var(--text);
                font-weight: 500;
                margin: 0;
            }

            .clients-nav {
                display: flex;
                gap: 8px;
            }

            .clients-btn {
                width: 36px;
                height: 36px;
                border: 1.5px solid var(--border);
                border-radius: 50%;
                background: #fff;
                font-size: 18px;
                color: var(--text-light);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s;
                line-height: 1;
            }

            .clients-btn:hover {
                border-color: var(--green);
                color: var(--green);
            }

            .clients-track-wrap {
                overflow: hidden;
            }

            .clients-track {
                display: flex;
                gap: 16px;
                transition: transform 0.4s ease;
            }

            .client-logo {
                flex-shrink: 0;
                width: calc((100% - 80px) / 6);
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 10px;
                padding: 18px 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 8px;
                transition: border-color 0.2s, box-shadow 0.2s;
                cursor: default;
            }

            .client-logo:hover {
                border-color: var(--green);
                box-shadow: 0 4px 16px rgba(26, 122, 46, 0.08);
            }

            .client-logo span {
                font-size: 32px;
                line-height: 1;
            }

            .client-logo small {
                font-size: 11px;
                color: var(--text-light);
                font-weight: 500;
                letter-spacing: 0.3px;
                text-align: center;
            }

            .client-logo img {
                width: 100%;
                max-width: 120px;
                height: 50px;
                object-fit: contain;
                border-radius: 4px;
            }

            /* ---- CERTIFICATIONS ---- */
            .certs-section {
                background: var(--bg);
                padding: 48px 6%;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
            }

            .certs-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .certs-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 28px;
            }

            .certs-title {
                font-size: 22px;
                font-weight: 500;
                color: var(--text);
                margin: 0;
            }

            .certs-nav {
                display: flex;
                gap: 8px;
            }

            .certs-btn {
                width: 36px;
                height: 36px;
                border: 1.5px solid var(--border);
                border-radius: 50%;
                background: #fff;
                font-size: 20px;
                color: var(--text-light);
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s;
                line-height: 1;
            }

            .certs-btn:hover {
                border-color: var(--green);
                color: var(--green);
            }

            .certs-track-wrap {
                overflow: hidden;
            }

            .certs-track {
                display: flex;
                gap: 20px;
                transition: transform 0.45s ease;
            }

            .cert-card {
                flex-shrink: 0;
                width: calc((100% - 60px) / 4);
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 12px;
                padding: 22px 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
                transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
                cursor: default;
            }

            .cert-card:hover {
                border-color: var(--green);
                box-shadow: 0 6px 24px rgba(26, 122, 46, 0.1);
                transform: translateY(-2px);
            }

            .cert-info {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .cert-year {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 42px;
                color: var(--green);
                line-height: 1;
                letter-spacing: 1px;
            }

            .cert-name {
                font-size: 13px;
                font-weight: 600;
                color: var(--text);
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-top: 2px;
            }

            .cert-type {
                font-size: 12px;
                color: var(--text-light);
                font-weight: 400;
            }

            .cert-logo {
                flex-shrink: 0;
                width: 72px;
                height: 72px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .cert-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

            /* ---- SERVICES ---- */


            /* Offset for fixed nav on all anchor sections */
            .section,
            .about,
            .why,
            .cat-section,
            .contact-section,
            .news-section,
            .clients-section,
            .cta-band {
                scroll-margin-top: 120px;
            }

            /* El <main> siempre tiene padding-top = altura del nav flotante.
               El slider (.hero) lo cancela con margin-top negativo. */
            main {
                padding-top: 120px;
            }

            /* El slider ocupa pantalla completa: cancela el padding de main */
            main > .hero:first-child {
                margin-top: -120px;
            }

            .section {
                padding: 100px 6%;
                background: var(--white);
            }

            .section-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .section-label {
                font-size: 11px;
                color: var(--green);
                letter-spacing: 4px;
                text-transform: uppercase;
                margin-bottom: 16px;
                font-weight: 600;
            }

            .section-title {
                font-family: 'Bebas Neue', sans-serif;
                font-size: clamp(40px, 5vw, 72px);
                line-height: 1;
                letter-spacing: 2px;
                margin-bottom: 16px;
                color: var(--text);
            }

            .section-sub {
                font-size: 16px;
                color: var(--text-light);
                /*max-width: 500px;*/
                line-height: 1.7;
                font-weight: 300;
                margin-bottom: 60px;
            }

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

            /* Imagen de fondo difuminada del card */
            .service-card-bg {
                position: absolute;
                inset: 0;
                background-image: var(--card-bg-image);
                background-size: cover;
                background-position: center;
                filter: blur(3px) brightness(0.65) saturate(0.9);
                transform: scale(1.08); /* evita bordes blancos del blur */
                transition: filter 0.5s ease, transform 0.5s ease;
                z-index: 0;
            }

            .service-card {
                padding: 48px 36px;
                border: 1px solid rgba(255,255,255,0.12);
                position: relative;
                overflow: hidden;
                transition: border-color 0.3s, box-shadow 0.3s;
                cursor: default;
                border-radius: 8px;
                background: #111; /* fallback si no hay imagen */
                isolation: isolate;
            }

            /* Gradient overlay para legibilidad - encima del bg, debajo del contenido */
            .service-card::before {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    160deg,
                    rgba(0, 20, 8, 0.35) 0%,
                    rgba(5, 40, 15, 0.5) 100%
                );
                z-index: 1;
                transition: background 0.4s ease;
            }

            /* Barra verde inferior en hover */
            .service-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: var(--green);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s ease;
                z-index: 3;
            }

            .service-card:hover {
                border-color: rgba(26, 122, 46, 0.6);
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
            }

            .service-card:hover .service-card-bg {
                filter: blur(2px) brightness(0.55) saturate(1.0);
                transform: scale(1.12);
            }

            .service-card:hover::after {
                transform: scaleX(1);
            }

            /* Todo el contenido del card va sobre los pseudo-elementos */
            .service-card > *:not(.service-card-bg) {
                position: relative;
                z-index: 2;
            }

            .service-number {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 80px;
                color: rgba(255, 255, 255, 0.12);
                line-height: 1;
                position: absolute;
                top: 16px;
                right: 24px;
                z-index: 2;
            }

            .service-icon {
                width: 52px;
                height: 52px;
                background: var(--green-pale);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                margin-bottom: 24px;
            }

            .service-name {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 28px;
                letter-spacing: 2px;
                color: #ffffff;
                margin-bottom: 14px;
                text-shadow: 0 1px 4px rgba(0,0,0,0.5);
            }

            .service-desc {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.78);
                line-height: 1.8;
                font-weight: 300;
                text-shadow: 0 1px 3px rgba(0,0,0,0.4);
            }

            /* ---- ABOUT ---- */
            .about {
                padding: 100px 6%;
                background: var(--bg2);
            }

            .about-visual {
                position: relative;
            }

            .about-img-main {
                width: 100%;
                border-radius: 8px;
                background: linear-gradient(160deg, #2db54a, #1a7a2e);
                min-height: 420px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 80px;
                box-shadow: 20px 20px 0 var(--border);
            }

            .about-badge {
                position: absolute;
                bottom: -20px;
                right: -20px;
                background: var(--red-bright);
                padding: 24px 30px;
                border-radius: 6px;
                text-align: center;
                box-shadow: 0 8px 24px rgba(192, 37, 58, 0.3);
            }

            .about-badge-num {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 48px;
                color: #fff;
                line-height: 1;
            }

            .about-badge-text {
                font-size: 11px;
                color: rgba(255, 255, 255, 0.85);
                letter-spacing: 1px;
            }

            .about-text .section-sub {
                margin-bottom: 36px;
            }

            .about-list {
                list-style: none;
                margin-bottom: 40px;
            }

            .about-list li {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
                font-size: 14px;
                color: var(--text-light);
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .about-list li::before {
                content: '✓';
                width: 22px;
                height: 22px;
                background: var(--green-pale);
                color: var(--green);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 11px;
                font-weight: 700;
                flex-shrink: 0;
            }

            /* ---- WHY US ---- */
            .why {
                padding: 100px 6%;
                background: var(--white);
            }

            .why-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 60px;
            }

            .why-item {
                padding: 48px;
                background: var(--bg);
                display: flex;
                gap: 24px;
                border: 1px solid var(--border);
                border-radius: 8px;
                transition: box-shadow 0.3s, border-color 0.3s;
            }

            .why-item:hover {
                box-shadow: 0 8px 32px rgba(26, 122, 46, 0.08);
                border-color: var(--green);
            }

            .why-num {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 72px;
                color: rgba(26, 122, 46, 0.12);
                line-height: 1;
                flex-shrink: 0;
                width: 60px;
            }

            .why-content h3 {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 26px;
                letter-spacing: 2px;
                margin-bottom: 12px;
                color: var(--text);
            }

            .why-content p {
                font-size: 14px;
                color: var(--text-light);
                line-height: 1.8;
                font-weight: 300;
            }

            /* ---- NEWS ---- */
            .news-section {
                padding: 100px 6%;
                background: var(--white);
            }

            .news-header {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                margin-bottom: 48px;
                flex-wrap: wrap;
                gap: 20px;
            }

            .news-header .btn-outline {
                color: var(--text);
                border-color: var(--border);
                white-space: nowrap;
                flex-shrink: 0;
            }

            .news-header .btn-outline:hover {
                border-color: var(--green);
                color: var(--green);
            }

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

            .news-card {
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 10px;
                overflow: hidden;
                transition: box-shadow 0.3s, transform 0.3s;
            }

            .news-card:hover {
                box-shadow: 0 12px 40px rgba(26, 122, 46, 0.12);
                transform: translateY(-4px);
            }

            .news-img {
                height: 180px;
                position: relative;
                display: flex;
                align-items: flex-end;
                padding: 16px;
            }

            .news-category {
                background: rgba(255, 255, 255, 0.2);
                color: #fff;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                padding: 4px 12px;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

            .news-body {
                padding: 24px;
            }

            .news-date {
                font-size: 12px;
                color: var(--text-light);
                margin-bottom: 10px;
                letter-spacing: 0.5px;
            }

            .news-title {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 22px;
                letter-spacing: 1px;
                color: var(--text);
                line-height: 1.2;
                margin-bottom: 12px;
            }

            .news-excerpt {
                font-size: 13px;
                color: var(--text-light);
                line-height: 1.7;
                margin-bottom: 20px;
                font-weight: 300;
            }

            .news-link {
                font-size: 13px;
                font-weight: 600;
                color: var(--green);
                text-decoration: none;
                letter-spacing: 0.5px;
                transition: color 0.2s;
            }

            .news-link:hover {
                color: var(--green-dark);
            }

            @media (max-width: 768px) {
                .news-grid {
                    grid-template-columns: 1fr;
                }

                .news-header {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }

            /* ---- CTA BAND ---- */
            .cta-band {
                padding: 100px 6%;
                background: var(--green);
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .cta-band::before {
                content: 'PISERSA';
                position: absolute;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 280px;
                color: rgba(255, 255, 255, 0.05);
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                white-space: nowrap;
                pointer-events: none;
                letter-spacing: 10px;
            }

            .cta-band .section-label {
                color: rgba(255, 255, 255, 0.7);
            }

            .cta-band .section-title {
                color: #fff;
                margin-bottom: 20px;
            }

            .cta-band p {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.75);
                margin-bottom: 40px;
                font-weight: 300;
            }

            .cta-buttons {
                display: flex;
                gap: 16px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .cta-band .btn-primary {
                background: #fff;
                color: var(--green);
                opacity: 1;
                transform: none;
            }

            .cta-band .btn-primary:hover {
                background: var(--green-pale);
            }

            .cta-band .btn-outline {
                color: #fff;
                border-color: rgba(255, 255, 255, 0.5);
            }

            .cta-band .btn-outline:hover {
                border-color: #fff;
                color: #fff;
            }

            /* ---- FOOTER ---- */
            footer {
                background: var(--green);
            }

            .footer-contact {
                padding: 36px 6%;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            }

            .footer-contact-item {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 8px 24px;
            }

            .footer-contact-item:first-child {
                padding-left: 0;
            }

            .footer-contact-icon {
                width: 46px;
                height: 46px;
                flex-shrink: 0;
                border: 1.5px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                color: #fff;
            }

            .footer-contact-label {
                font-size: 10px;
                color: rgba(255, 255, 255, 0.65);
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 4px;
            }

            .footer-contact-value {
                font-size: 18px;
                font-weight: 700;
                color: #fff;
                letter-spacing: 0.3px;
            }

            .footer-nav-row {
                padding: 20px 6%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                flex-wrap: wrap;
                gap: 12px;
            }

            .footer-nav-links {
                display: flex;
                gap: 32px;
                list-style: none;
                flex-wrap: wrap;
            }

            .footer-nav-links a {
                text-decoration: none;
                color: rgba(255, 255, 255, 0.85);
                font-size: 13px;
                font-weight: 500;
                transition: color 0.2s;
            }

            .footer-nav-links a:hover {
                color: #fff;
            }

            .footer-legal-links {
                display: flex;
                gap: 24px;
                list-style: none;
                flex-wrap: wrap;
            }

            .footer-legal-links a {
                text-decoration: none;
                color: rgba(255, 255, 255, 0.65);
                font-size: 12px;
                transition: color 0.2s;
            }

            .footer-legal-links a:hover {
                color: #fff;
            }

            .footer-bottom {
                padding: 20px 6%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 16px;
            }

            .footer-bottom p {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.6);
                margin: 0;
            }

            .footer-bottom p span {
                font-weight: 700;
                color: rgba(255, 255, 255, 0.9);
            }

            .social-links {
                display: flex;
                gap: 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                border: 1.5px solid rgba(255, 255, 255, 0.35);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                cursor: pointer;
                font-weight: 700;
                transition: all 0.2s;
                text-decoration: none;
                color: rgba(255, 255, 255, 0.8);
            }

            .social-link:hover {
                border-color: #fff;
                color: #fff;
                background: rgba(255, 255, 255, 0.1);
            }

            .footer-claims {
                display: flex;
                align-items: center;
                gap: 10px;
                border: 1.5px solid rgba(255, 255, 255, 0.5);
                border-radius: 6px;
                padding: 10px 20px;
                color: #fff;
                text-decoration: none;
                font-size: 13px;
                font-weight: 500;
                transition: all 0.2s;
            }

            .footer-claims:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: #fff;
            }

            .footer-claims span {
                font-size: 20px;
            }

            @media (max-width: 768px) {
                .footer-contact {
                    grid-template-columns: 1fr;
                }

                .footer-contact-item {
                    padding-left: 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                }

                .footer-nav-row {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .footer-nav-links,
                .footer-legal-links {
                    gap: 16px;
                }
            }

            /* ---- MOBILE ---- */
            .mobile-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.98);
                z-index: 99;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 32px;
            }

            .mobile-menu.open {
                display: flex;
            }

            .mobile-menu>a,
            .mobile-menu>.mobile-item>.mobile-link {
                text-decoration: none;
                color: var(--text);
                font-family: 'Bebas Neue', sans-serif;
                font-size: 36px;
                letter-spacing: 4px;
                transition: color 0.2s;
            }

            .mobile-menu>a:hover,
            .mobile-menu>.mobile-item>.mobile-link:hover {
                color: var(--green);
            }

            .mobile-close {
                position: absolute;
                top: 24px;
                right: 6%;
                font-size: 32px;
                cursor: pointer;
                color: var(--text-light);
                background: none;
                border: none;
            }

            /* Mobile submenu */
            .mobile-item {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .mobile-link {
                display: flex;
                align-items: center;
                gap: 10px;
                cursor: pointer;
                background: none;
                border: none;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 36px;
                letter-spacing: 4px;
                color: var(--text);
                transition: color 0.2s;
            }

            .mobile-link .chevron {
                font-size: 16px;
                color: var(--text-light);
                transition: transform 0.3s;
                display: inline-block;
            }

            .mobile-item.open .mobile-link {
                color: var(--green);
            }

            .mobile-item.open .chevron {
                transform: rotate(180deg);
            }

            .mobile-sub {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 4px;
                margin-top: 8px;
                background: var(--green-pale);
                border-radius: 10px;
                padding: 10px 20px;
                width: 100%;
                max-width: 280px;
            }

            .mobile-item.open .mobile-sub {
                display: flex;
            }

            .mobile-sub a {
                font-family: 'DM Sans', sans-serif !important;
                font-size: 15px !important;
                letter-spacing: 0.5px !important;
                color: var(--text-light) !important;
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 8px 12px;
                width: 100%;
                border-radius: 6px;
                text-decoration: none;
                transition: background 0.15s, color 0.15s;
            }

            .mobile-sub a:hover {
                background: rgba(26, 122, 46, 0.1);
                color: var(--green) !important;
            }

            .mobile-sub hr {
                border: none;
                border-top: 1px solid var(--border);
                width: 100%;
                margin: 4px 0;
            }

            @media (max-width: 1024px) {
                .services-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .slider-image {
                    display: none;
                }

                .slide-image-wrap {
                    display: none;
                }

                .footer-contact {
                    grid-template-columns: 1fr;
                }
            }

            @media (max-width: 768px) {
                .nav-links {
                    display: none;
                }

                .hamburger {
                    display: flex;
                }

                .stats {
                    grid-template-columns: repeat(2, 1fr);
                }

                .services-grid {
                    grid-template-columns: 1fr;
                }

                .about .section-inner {
                    grid-template-columns: 1fr !important;
                    gap: 48px !important;
                }

                .about-badge {
                    right: 0;
                }

                .why-grid {
                    grid-template-columns: 1fr;
                }

                .slide-content {
                    padding: 0 5%;
                }

                .stat-number {
                    font-size: 48px;
                }

                .footer-nav-row {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .footer-nav-links,
                .footer-legal-links {
                    gap: 16px;
                }

                .footer-bottom {
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }

                .footer-contact-value {
                    font-size: 14px;
                }
            }

            @media (max-width: 480px) {
                .stats {
                    grid-template-columns: 1fr 1fr;
                }

                .stat::after {
                    display: none;
                }

                .why-item {
                    flex-direction: column;
                    padding: 32px;
                    gap: 8px;
                }

                .why-num {
                    font-size: 48px;
                }
            }

            /* Reveal animation */
            .reveal {
                opacity: 0;
                transform: translateY(40px);
                transition: opacity 0.7s ease, transform 0.7s ease;
            }

            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .reveal:nth-child(2) {
                transition-delay: 0.1s;
            }

            .reveal:nth-child(3) {
                transition-delay: 0.2s;
            }

            .reveal:nth-child(4) {
                transition-delay: 0.3s;
            }

            .reveal:nth-child(5) {
                transition-delay: 0.4s;
            }

            .reveal:nth-child(6) {
                transition-delay: 0.5s;
            }
        
            /* ---- GALERÍA ---- */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }

            .gallery-item {
                position: relative;
                border-radius: 8px;
                overflow: hidden;
                aspect-ratio: 4 / 3;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
                display: block;
            }

            .gallery-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(13, 94, 32, 0.9) 0%, rgba(26, 42, 29, 0) 60%);
                display: flex;
                align-items: flex-end;
                padding: 24px;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .gallery-overlay span {
                color: #fff;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 24px;
                letter-spacing: 1.5px;
                transform: translateY(15px);
                transition: transform 0.3s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.08);
            }

            .gallery-item:hover .gallery-overlay {
                opacity: 1;
            }

            .gallery-item:hover .gallery-overlay span {
                transform: translateY(0);
            }

            @media (max-width: 1024px) {
                .gallery-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 480px) {
                .gallery-grid {
                    grid-template-columns: 1fr;
                }
            }

            /* ---- CONTACT SECTION ---- */
            .contact-section {
                padding: 100px 6%;
                background: var(--white);
            }

            .contact-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }

            .contact-form-wrap {
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 16px;
                padding: 48px 44px;
                box-shadow: 0 8px 40px rgba(26, 122, 46, 0.07);
            }

            .contact-title {
                font-family: 'DM Sans', sans-serif;
                font-size: 26px;
                font-weight: 700;
                color: var(--text);
                margin-bottom: 8px;
                line-height: 1.3;
            }

            .contact-sub {
                font-size: 13px;
                color: var(--text-light);
                margin-bottom: 28px;
            }

            /* Toggle */
            .contact-toggle {
                display: flex;
                background: var(--bg);
                border: 1px solid var(--border);
                border-radius: 8px;
                padding: 4px;
                margin: 0 auto 28px;
                width: fit-content;
                gap: 2px;
            }

            .toggle-btn {
                padding: 9px 28px;
                font-size: 13px;
                font-weight: 600;
                font-family: 'DM Sans', sans-serif;
                border: none;
                border-radius: 6px;
                background: transparent;
                color: var(--green);
                cursor: pointer;
                transition: background 0.2s, color 0.2s;
            }

            .toggle-btn.active {
                background: var(--green-pale);
                color: var(--green);
            }

            /* Form */
            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .company-fields,
            .person-fields {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .form-row {
                display: flex;
                gap: 12px;
            }

            .form-row.full {
                flex-direction: column;
            }

            .form-row.two {
                flex-direction: row;
            }

            .form-row.two .form-group {
                flex: 1;
            }

            .form-group {
                display: flex;
                flex-direction: column;
            }

            .form-input {
                font-family: 'DM Sans', sans-serif;
                font-size: 13px;
                color: var(--text);
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 6px;
                padding: 12px 14px;
                outline: none;
                transition: border-color 0.2s, box-shadow 0.2s;
                width: 100%;
            }

            .form-input::placeholder {
                color: var(--text-light);
            }

            .form-input:focus {
                border-color: var(--green);
                box-shadow: 0 0 0 3px rgba(26, 122, 46, 0.08);
            }

            .form-textarea {
                resize: vertical;
                min-height: 96px;
            }

            .form-note {
                font-size: 11px;
                color: var(--text-light);
                margin-top: -4px;
            }

            .form-check {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 13px;
                color: var(--text);
                cursor: pointer;
            }

            .form-check input[type="checkbox"] {
                width: 16px;
                height: 16px;
                accent-color: var(--green);
                flex-shrink: 0;
                cursor: pointer;
            }

            .form-policy-link {
                color: var(--green);
                font-weight: 600;
                text-decoration: underline;
            }

            .btn-green-solid {
                background: var(--green);
                color: #fff;
                border: none;
                border-radius: 6px;
                padding: 14px 36px;
                font-family: 'DM Sans', sans-serif;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: background 0.2s;
                width: fit-content;
                margin-top: 8px;
            }

            .btn-green-solid:hover {
                background: var(--green-dark);
            }

            /* Visual side */
            .contact-visual {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 480px;
            }

            .contact-visual-bg {
                position: absolute;
                width: 380px;
                height: 380px;
                background: radial-gradient(ellipse, rgba(26, 122, 46, 0.12) 0%, transparent 70%);
                border-radius: 50%;
                z-index: 0;
            }

            .contact-workers-img {
                position: relative;
                z-index: 1;
                max-width: 100%;
                max-height: 460px;
                object-fit: contain;
                border-radius: 12px;
                filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
            }

            @media (max-width: 1024px) {
                .contact-inner {
                    grid-template-columns: 1fr;
                    gap: 48px;
                }

                .contact-visual {
                    display: none;
                }
            }

            @media (max-width: 600px) {
                .contact-form-wrap {
                    padding: 32px 24px;
                }

                .form-row.two {
                    flex-direction: column;
                }

                .contact-toggle {
                    width: 100%;
                }

                .toggle-btn {
                    flex: 1;
                    text-align: center;
                }
            }

            /* ---- SERVICE CATEGORIES ---- */
            .cat-section {
                padding: 100px 6%;
                background: var(--white);
            }

            .cat-widget {
                display: flex;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
                margin-top: 60px;
                min-height: 480px;
            }

            /* Left sidebar */
            .cat-sidebar {
                background: var(--green-dark);
                width: 260px;
                flex-shrink: 0;
                padding: 20px 0;
                display: flex;
                flex-direction: column;
            }

            .cat-item {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 22px 28px;
                cursor: pointer;
                transition: background 0.25s;
                border-left: 3px solid transparent;
            }

            .cat-item:hover {
                background: rgba(255, 255, 255, 0.08);
            }

            .cat-item.active {
                background: var(--green);
                border-left-color: rgba(255, 255, 255, 0.5);
            }

            .cat-icon {
                width: 46px;
                height: 46px;
                border: 1.5px solid rgba(255, 255, 255, 0.3);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                flex-shrink: 0;
                background: rgba(255, 255, 255, 0.06);
                transition: background 0.25s;

                img {
                        max-width: 80% !important;
                        max-height: 80% !important;
                    }
            }

            .cat-item.active .cat-icon {
                background: rgba(255, 255, 255, 0.15);
                border-color: rgba(255, 255, 255, 0.5);
            }

            .cat-item span {
                font-size: 16px;
                font-weight: 500;
                color: rgba(255, 255, 255, 0.85);
                letter-spacing: 0.3px;
            }

            .cat-item.active span {
                color: #fff;
                font-weight: 600;
            }

            /* Right content */
            .cat-content {
                flex: 1;
                background: var(--bg);
                padding: 28px;
                overflow: hidden;
            }

            .cat-panel {
                display: none;
                animation: fadeIn 0.3s ease;
            }

            .cat-panel.active {
                display: block;
            }

            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(8px); }
                to   { opacity: 1; transform: translateY(0); }
            }

            .cat-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .cat-card {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                aspect-ratio: 4 / 3;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }

            .cat-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.5s ease;
            }

            .cat-card:hover img {
                transform: scale(1.06);
            }

            .cat-card-label {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(13, 94, 32, 0.92) 0%, transparent 100%);
                color: #fff;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 20px;
                letter-spacing: 1.5px;
                padding: 40px 16px 14px;
                transform: translateY(4px);
                transition: transform 0.3s ease;
            }

            .cat-card:hover .cat-card-label {
                transform: translateY(0);
            }

            @media (max-width: 1024px) {
                .cat-widget {
                    flex-direction: column;
                }

                .cat-sidebar {
                    width: 100%;
                    flex-direction: row;
                    padding: 8px;
                    overflow-x: auto;
                    gap: 4px;
                }

                .cat-item {
                    flex-direction: column;
                    padding: 12px 16px;
                    gap: 8px;
                    text-align: center;
                    flex-shrink: 0;
                    border-left: none;
                    border-bottom: 3px solid transparent;
                    border-radius: 8px;
                }

                .cat-item.active {
                    border-bottom-color: rgba(255, 255, 255, 0.5);
                }

                .cat-icon {
                    width: 40px;
                    height: 40px;
                    font-size: 18px;
                    
                    img {
                        max-width: 80% !important;
                        max-height: 80% !important;
                    }
                }

         

                .cat-item span {
                    font-size: 13px;
                }
            }

            @media (max-width: 600px) {
                .cat-grid {
                    grid-template-columns: 1fr;
                }

                .cat-content {
                    padding: 16px;
                }
            }

            .logo-img{
                max-height: 125px;
            }

            .svc-strip {
        background: var(--green-pale, #e8f5e9);
        border-top: 1px solid rgba(26, 122, 46, 0.12);
        border-bottom: 1px solid rgba(26, 122, 46, 0.12);
        padding: 18px 6%;
    }

    .svc-strip-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        max-width: 1400px;
        margin: 0 auto;
    }

    .svc-strip-item {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        padding: 0 16px;
    }

    .svc-strip-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        color: var(--green, #1a7a2e);
        opacity: 0.85;
    }

    .svc-strip-icon svg {
        width: 100%;
        height: 100%;
    }

    .svc-strip-item p {
        font-size: 11.5px;
        line-height: 1.45;
        color: var(--text, #1a2e1c);
        margin: 0;
        font-family: 'DM Sans', sans-serif;
    }

    .svc-strip-divider {
        width: 1px;
        height: 48px;
        background: rgba(26, 122, 46, 0.2);
        flex-shrink: 0;
    }

    @media (max-width: 1024px) {
        .svc-strip-inner {
            flex-wrap: wrap;
            gap: 8px;
        }
        .svc-strip-item {
            flex: 1 1 calc(33% - 16px);
            min-width: 180px;
        }
        .svc-strip-divider {
            display: none;
        }
    }

    @media (max-width: 600px) {
        .svc-strip-item {
            flex: 1 1 100%;
        }
    }

    /* ---- ABOUT: EDITORIAL 3 COLUMNAS ---- */
    .about-editorial {
        padding: 80px 6%;
        background: var(--white, #fff);
    }

    .about-editorial-inner {
        display: grid;
        grid-template-columns: 1fr 1px 1fr 1px 1fr;
        gap: 0 48px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }

    .about-col--lead .about-lead-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.25;
        color: var(--text, #111);
        margin: 0 0 20px;
        letter-spacing: -0.3px;
    }

    .about-lead-body {
        font-family: 'DM Sans', sans-serif;
        font-size: 13.5px;
        line-height: 1.75;
        color: var(--text-light, #555);
        margin: 0;
        text-align: justify;
    }

    .about-col-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 21px;
        font-weight: 400;
        line-height: 1.4;
        color: var(--text, #111);
        margin: 0 0 18px;
        letter-spacing: -0.1px;
    }

    .about-col-body {
        font-family: 'DM Sans', sans-serif;
        font-size: 15.5px;
        line-height: 1.75;
        color: var(--text-light, #555);
        margin: 0;
        text-align: justify;
    }

    .about-col-divider {
        width: 1px;
        background: var(--border, #e0e0e0);
        align-self: stretch;
        min-height: 120px;
    }

    @media (max-width: 900px) {
        .about-editorial-inner {
            grid-template-columns: 1fr;
            gap: 40px 0;
        }
        .about-col-divider {
            width: 100%;
            height: 1px;
            min-height: unset;
        }
    }

    /* ---- ABOUT: MISIÓN / OBJETIVOS ---- */
    .about-mission {
        background: #f4f9f1;
        border-top: 1px solid rgba(26, 122, 46, 0.15);
        border-bottom: 1px solid rgba(26, 122, 46, 0.15);
        overflow: hidden;
    }

    .about-mission-inner {
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .about-mission-left {
        flex: 1;
        padding: 48px 0 36px;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    /* Tarjetas */
    .about-mission-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-mission-card {
        border: 1.5px dashed rgba(26, 122, 46, 0.45);
        border-radius: 8px;
        padding: 20px 18px 22px;
        background: transparent;
    }

    .about-mission-icon {
        width: 38px;
        height: 38px;
        color: var(--green, #1a7a2e);
        margin-bottom: 12px;
        opacity: 0.9;
    }

    .about-mission-icon svg {
        width: 100%;
        height: 100%;
    }

    .about-mission-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .about-mission-card-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: var(--green, #1a7a2e);
        margin: 0 0 10px;
        line-height: 1.3;
    }

    .about-mission-card-body {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        line-height: 1.7;
        color: var(--text, #2a3a2c);
        margin: 0;
        text-align: justify;
    }

    /* Pie de texto */
    .about-mission-footer {
        font-family: 'DM Sans', sans-serif;
        font-size: 12.5px;
        line-height: 1.75;
        color: var(--text-light, #5a6e5c);
        text-align: center;
        margin: 0;
        padding: 0 4%;
        font-style: italic;
    }

    /* Foto lateral */
    .about-mission-photo {
        width: 240px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .about-mission-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

    @media (max-width: 900px) {
        .about-mission-inner {
            flex-direction: column;
        }
        .about-mission-photo {
            width: 100%;
            height: 220px;
        }
        .about-mission-cards {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 600px) {
        .about-mission-left {
            padding: 32px 5%;
        }
    }

    /* ---- ABOUT: ESENCIA (MISIÓN Y VISIÓN) ---- */
    .about-essence {
        padding: 40px 0 60px;
    }

    .about-essence-header {
        text-align: center;
        margin-bottom: 24px;
    }

    .about-essence-main-title {
        background: #588339; /* Verde oscuro basado en la imagen */
        color: #fff;
        padding: 12px 20px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 300;
        font-size: 26px;
        margin: 0 0 16px;
        letter-spacing: -0.2px;
    }

    .about-essence-subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 15.5px;
        color: #2a3a2c;
        margin: 0;
        line-height: 1.5;
        font-weight: 300;
    }

    .about-essence-content {
        background: #edf3e8; /* Verde claro de la imagen */
        display: flex;
        align-items: stretch;
    }

    .about-essence-col {
        flex: 1;
        padding: 24px 28px;
        display: flex;
        flex-direction: column;
    }

    .about-essence-col-title {
        background: #588339;
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 20px;
        font-weight: 300;
        padding: 6px 14px;
        margin: 0 0 16px;
        display: inline-block;
        align-self: flex-start;
    }

    .about-essence-text {
        font-family: 'DM Sans', sans-serif;
        font-size: 13.5px;
        line-height: 1.65;
        color: #1a2e1c;
        text-align: justify;
        margin: 0 0 12px;
    }

    .about-essence-list {
        margin: 0;
        padding-left: 20px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13.5px;
        line-height: 1.65;
        color: #1a2e1c;
    }

    .about-essence-list li {
        margin-bottom: 6px;
        text-align: justify;
    }

    .about-essence-photo {
        width: 320px;
        flex-shrink: 0;
        position: relative;
    }

    .about-essence-photo::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        box-shadow: inset 0 0 25px 10px #edf3e8; /* Simula los bordes difuminados de la foto en la imagen */
        pointer-events: none;
    }

    .about-essence-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 900px) {
        .about-essence-content {
            flex-direction: column;
        }
        .about-essence-photo {
            width: 100%;
            height: 300px;
        }
    }

    /* ---- ABOUT: EJES ESTRATÉGICOS ---- */
    .about-axes {
        padding: 0 0 60px;
    }

    .about-axes-header {
        margin-bottom: 28px;
    }

    .about-axes-main-title {
        background: #588339;
        color: #fff;
        padding: 12px 20px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 300;
        font-size: 26px;
        margin: 0 0 16px;
        letter-spacing: -0.2px;
        display: block;
        text-align: center;
    }

    .about-axes-subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: #2a3a2c;
        margin: 0;
        line-height: 1.6;
    }

    .about-axes-content {
        background: #edf3e8;
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .about-axes-card {
        flex: 1;
        border: 1.5px dashed rgba(88, 131, 57, 0.5);
        border-radius: 6px;
        margin: 16px;
        padding: 20px 18px;
        background: transparent;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .about-axes-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .about-axes-icon svg {
        width: 100%;
        height: 100%;
    }

    .about-axes-card-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #588339;
        margin: 0;
        line-height: 1.35;
    }

    .about-axes-list {
        margin: 0;
        padding-left: 18px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        line-height: 1.7;
        color: #1a2e1c;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .about-axes-list li {
        text-align: justify;
    }

    .about-axes-photo {
        width: 280px;
        flex-shrink: 0;
        padding: 16px 16px 16px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-axes-photo img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 4px;
    }

    @media (max-width: 900px) {
        .about-axes-content {
            flex-direction: column;
        }
        .about-axes-photo {
            width: 100%;
            padding: 0 16px 16px;
        }
    }

    /* ---- ABOUT: INNOVACIÓN Y PERSONAS ---- */
    .about-innovation {
        padding: 0 0 60px;
    }

    .about-innovation-header {
        margin-bottom: 32px;
    }

    .about-innovation-main-title {
        background: #588339;
        color: #fff;
        padding: 12px 20px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 300;
        font-size: 26px;
        margin: 0 0 16px;
        letter-spacing: -0.2px;
        display: block;
        text-align: center;
    }

    .about-innovation-subtitle {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: #2a3a2c;
        margin: 0;
        line-height: 1.6;
    }

    .about-innovation-content {
        display: flex;
        align-items: stretch;
        gap: 40px;
    }

    .about-innovation-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding-top: 10px;
    }

    .about-innovation-block {
        display: flex;
        flex-direction: column;
    }

    .about-innovation-block-title {
        background: #588339; /* Verde oscuro */
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 18px;
        font-weight: 600;
        padding: 6px 16px;
        margin: 0 0 18px;
        display: inline-block;
        align-self: flex-start; /* Se ajusta al texto */
        border-radius: 4px;
    }

    .about-innovation-text {
        font-family: 'DM Sans', sans-serif;
        font-size: 14.5px;
        font-weight: 600; /* Texto fuerte como en la imagen */
        line-height: 1.65;
        color: #333;
        margin: 0 0 14px;
        text-align: left;
    }

    .about-innovation-photo {
        width: 45%;
        flex-shrink: 0;
        position: relative;
    }

    .about-innovation-photo::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        box-shadow: inset 0 0 50px 25px #fff; /* Difuminado en blanco para mezclar la foto talent.png con el fondo blanco de la sección */
        pointer-events: none;
    }

    .about-innovation-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 900px) {
        .about-innovation-content {
            flex-direction: column;
        }
        .about-innovation-photo {
            width: 100%;
            height: 350px;
        }
    }

    .text-center {
        text-align: center;
    }