
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            vertical-align: middle;
        }
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #F8F9FA;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #c1c7d2;
            border-radius: 10px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #717781;
        }
    


        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .bg-overlay {
            background: linear-gradient(rgba(0, 28, 55, 0.7), rgba(0, 28, 55, 0.7));
        }
    


        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        @keyframes subtle-zoom {
            0% { transform: scale(1.05); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .animate-hero-zoom {
            animation: subtle-zoom 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        .hero-overlay {
            background: linear-gradient(90deg, rgba(25, 28, 33, 0.9) 0%, rgba(25, 28, 33, 0.4) 50%, rgba(25, 28, 33, 0.1) 100%);
        }
        .nosotros-hero-overlay {
            background: linear-gradient(90deg, rgba(25, 28, 33, 0.72) 0%, rgba(25, 28, 33, 0.38) 58%, rgba(25, 28, 33, 0.12) 100%);
        }
        .nosotros-hero-content {
            padding-top: 24px;
            padding-bottom: 24px;
            padding-right: 24px;
            background: rgba(25, 28, 33, 0.34);
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
        }
        .service-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }
        .service-card.active .service-accordion-content {
            max-height: 200px;
            opacity: 1;
        }
        .service-card.active .expand-icon {
            transform: rotate(180deg);
        }
    


        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-block;
            vertical-align: middle;
        }
        
        .industrial-overlay {
            background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.03) 1px, transparent 0);
            background-size: 24px 24px;
        }

        .login-card {
            box-shadow: 0px 4px 20px rgba(0,0,0,0.05);
            border: 1px solid #e1e2e9;
        }

        /* Institutional Button Hover Effect */
        .btn-institutional {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-institutional:active {
            transform: scale(0.98);
            opacity: 0.9;
        }
    


        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .service-card-active {
            border-left: 4px solid #1B65A6 !important;
            background-color: #f8f9ff;
        }
        .service-catalog {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .service-tabs {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            border-bottom: 1px solid #c1c7d2;
        }
        .service-tab {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            min-height: 112px;
            padding: 20px 18px 22px;
            border: 1px solid transparent;
            border-bottom: 3px solid transparent;
            background: transparent;
            color: #333333;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }
        .service-tab:hover,
        .service-tab:focus-visible {
            background: #ffffff;
            color: #1B65A6;
            outline: none;
        }
        .service-tab.is-active {
            border-bottom-color: #1B65A6;
            background: #ffffff;
            color: #004d85;
        }
        .service-tab-index {
            color: #C5A046;
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1.5;
        }
        .service-tab-copy {
            display: flex;
            flex: 1;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }
        .service-tab-title {
            font-family: "Source Serif 4", serif;
            font-size: 19px;
            font-weight: 600;
            line-height: 1.2;
        }
        .service-tab-count {
            color: rgba(51, 51, 51, 0.6);
            font-family: "Manrope", sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .service-tab-arrow {
            align-self: center;
            color: #C5A046;
            font-size: 20px;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .service-tab:hover .service-tab-arrow,
        .service-tab:focus-visible .service-tab-arrow,
        .service-tab.is-active .service-tab-arrow {
            opacity: 1;
            transform: translateX(0);
        }
        .service-tab-panel[hidden] {
            display: none;
        }
        .services-page footer li > a,
        .services-page footer li > div {
            min-width: 0;
            overflow-wrap: anywhere;
        }
        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding-bottom: 0.25rem;
            color: #333333;
            border-bottom: 2px solid transparent;
            transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
            font-family: "Manrope", sans-serif;
            letter-spacing: 0.05em;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background: #1B65A6;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s ease;
        }
        .nav-link:hover {
            color: #A61F1F;
        }
        .nav-link.active {
            color: #1B65A6;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .service-content-panel {
            animation: fadeIn 0.4s ease-out;
        }
        .service-details summary {
            list-style: none;
        }
        .service-details summary::-webkit-details-marker {
            display: none;
        }
        .service-details-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            width: 100%;
            padding-top: 12px;
            border-top: 1px solid rgba(193, 199, 210, 0.7);
            color: #1B65A6;
            cursor: pointer;
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .service-details-toggle:hover {
            color: #A61F1F;
        }
        .service-details-close {
            display: none;
        }
        .service-details[open] .service-details-open {
            display: none;
        }
        .service-details[open] .service-details-close {
            display: inline;
        }
        .service-details-icon {
            transition: transform 0.3s ease;
        }
        .service-details[open] .service-details-icon {
            transform: rotate(180deg);
        }
        .service-details-content {
            padding-top: 16px;
            margin-top: 12px;
            border-top: 1px solid rgba(193, 199, 210, 0.45);
            animation: fadeIn 0.3s ease-out;
        }

        .values-grid > div {
            text-align: center;
        }

        .values-grid > div > .material-symbols-outlined {
            display: block;
        }

        @media (min-width: 768px) {
            .site-footer > .max-w-container-max > .grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .site-footer .footer-email a {
                font-size: 14px;
                white-space: normal;
            }

            .home-page .home-hero > .max-w-container-max > .max-w-3xl {
                transform: translateY(15px);
            }

            .home-page .home-hero .home-hero-stats {
                margin-top: 24px !important;
                padding-top: 16px !important;
            }
        }

        @media (min-width: 1024px) {
            .site-footer .footer-email a {
                white-space: nowrap;
            }
        }

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

        @media (max-width: 767px) {
            body {
                overflow-x: hidden;
            }

            .site-header > nav,
            .site-header > nav > div {
                min-width: 0;
            }

            .site-header > nav {
                padding-left: 16px !important;
                padding-right: 16px !important;
                flex-wrap: wrap;
                row-gap: 8px;
            }

            .site-header > nav > a:first-child {
                min-width: 0;
                flex: 1 1 auto;
            }

            .site-header > nav > a:first-child span {
                font-size: 18px !important;
                letter-spacing: 0.1em;
            }

            .site-header > nav > a:first-child span span {
                font-size: 15px !important;
            }

            .site-header > nav > button,
            .site-header > nav > .header-cta,
            body > header > nav > button,
            body > header > nav > a:last-child,
            body > nav > div + button {
                display: none;
            }

            .site-header .site-nav {
                display: flex !important;
                flex: 1 0 100%;
                justify-content: center;
                gap: 16px;
                order: 3;
                padding-bottom: 8px;
                overflow-x: auto;
                scrollbar-width: none;
            }

            .site-header .site-nav::-webkit-scrollbar {
                display: none;
            }

            body > header > nav > div.hidden.md\:flex,
            body > nav > div.hidden.md\:flex {
                display: flex !important;
                flex: 1 0 100%;
                justify-content: center;
                gap: 16px;
                order: 3;
                padding-bottom: 8px;
                overflow-x: auto;
                scrollbar-width: none;
            }

            body > header > nav > div.hidden.md\:flex::-webkit-scrollbar,
            body > nav > div.hidden.md\:flex::-webkit-scrollbar {
                display: none;
            }

            body > header > nav > a:first-child,
            body > nav > a:first-child {
                min-width: 0;
                flex: 1 1 auto;
            }

            body > header > nav > a:first-child span,
            body > nav > a:first-child span {
                font-size: 18px !important;
                letter-spacing: 0.1em;
            }

            body > header > nav > a:first-child span span,
            body > nav > a:first-child span span {
                font-size: 15px !important;
            }

            body > header > nav > button,
            body > header > nav > a:last-child,
            body > nav > button,
            body > nav > a:last-child {
                display: none !important;
            }

            .nav-link {
                font-size: 12px !important;
                white-space: nowrap;
            }

            .service-catalog {
                gap: 24px;
            }

            .service-tabs {
                display: flex;
                overflow-x: auto;
                margin-right: -16px;
                padding-right: 16px;
                scrollbar-width: none;
            }

            .service-tabs::-webkit-scrollbar {
                display: none;
            }

            .service-tab {
                flex: 0 0 214px;
                min-height: 104px;
                padding: 16px 14px 18px;
            }

            .service-tab-title {
                font-size: 18px;
            }

            .service-tab-arrow {
                display: none;
            }

            main > section > .max-w-container-max,
            main > .max-w-container-max,
            footer .max-w-container-max {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }

            .site-footer {
                padding-top: 40px;
                padding-bottom: 24px;
            }

            .site-footer .grid {
                gap: 32px;
                margin-bottom: 32px;
            }

            .site-footer .col-span-1.md\:col-span-2 {
                grid-column: auto;
            }

            .site-footer .flex.items-center.gap-4.mb-6 {
                align-items: flex-start;
            }

            .site-footer .font-display-lg {
                font-size: 21px;
                line-height: 1.25;
                overflow-wrap: anywhere;
            }

            .site-footer .footer-contact {
                margin-left: 0;
            }

            .site-footer .footer-navigation {
                justify-self: start;
            }

            .site-footer .footer-contact li {
                align-items: flex-start;
                overflow-wrap: break-word;
                word-break: normal;
            }

            .site-footer .footer-email a {
                min-width: 0;
                display: block;
                font-size: 14px !important;
                line-height: 1.45;
                overflow-wrap: break-word;
                word-break: normal;
            }

            .site-footer > .max-w-container-max > .border-t {
                align-items: flex-start;
            }

            .site-footer > .max-w-container-max > .border-t p {
                line-height: 1.5;
            }

            .grid.grid-cols-3 {
                gap: 16px;
            }

            .grid.grid-cols-3 p {
                overflow-wrap: anywhere;
            }

            .service-card {
                width: 100% !important;
            }

            table {
                min-width: 720px;
            }

            .home-page .home-hero {
                min-height: 0;
                align-items: flex-start;
                padding-top: 32px;
                padding-bottom: 40px;
            }

            .home-page .home-hero > .max-w-container-max {
                padding-top: 0;
            }

            .home-page .home-hero-badge,
            .home-page .home-hero-title,
            .home-page .home-hero-description {
                position: relative;
                top: 15px;
            }

            .home-page .home-hero .home-hero-badge {
                margin-bottom: 16px !important;
            }

            .home-page .home-hero .home-hero-title {
                font-size: 30px !important;
                line-height: 1.15 !important;
                margin-bottom: 16px !important;
            }

            .home-page .home-hero .home-hero-description {
                font-size: 16px !important;
                line-height: 1.5 !important;
                margin-bottom: 20px !important;
            }

            .home-page .home-hero img {
                object-position: 58% center;
            }

            .home-page .home-hero .home-hero-stats {
                display: block;
                margin-top: 20px !important;
                padding-top: 20px !important;
            }

            .home-page .home-hero .home-hero-stats p:first-child {
                font-size: 30px !important;
            }

            .home-page .home-hero .home-hero-stats p:last-child {
                font-size: 11px !important;
                letter-spacing: 0.12em !important;
            }

            .services-page .services-hero {
                min-height: 620px;
                align-items: flex-start;
                padding-top: 92px;
            }

            .services-page .services-hero h1 {
                font-size: 40px !important;
                line-height: 1.1 !important;
                margin-bottom: 24px;
            }

            .services-page .services-hero p {
                font-size: 16px !important;
                line-height: 1.55 !important;
                margin-bottom: 24px;
            }

            .services-page .services-hero img {
                object-position: 62% center;
            }
        }
    