        body {
        }

        header a {
            font-family: 'Karla', sans-serif;
            font-weight: 400;
        }

        h1,
        h2,
        h3 {
            font-family: 'Montserrat', sans-serif;
        }

        .glass-header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
        }

        .header-sticky {
            padding-top: 0.5rem !important;
            padding-bottom: 0.5rem !important;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        #main-logo {
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-sticky #main-logo {
            height: 3.5rem; /* ~h-14 equivalent for sticky */
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        }

        /* .hero-gradient {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(28, 82, 143, 0.5) 100%), url('../img/hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        } */

        .hero-gradient {
            background: url('../img/background.png');
            background-size: cover;
            background-position: center;
            /* background-attachment: fixed; */
        }

        /* --- Estilos de la Galería Antes/Después --- */
        .comparison-wrapper {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .fade-out-effect {
            opacity: 0;
            transform: scale(0.98);
        }

        #gallery-title {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .comparison-container {
            position: relative;
            width: 100%;
            height: 650px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .comparison-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .img-after {
            clip-path: inset(0 50% 0 0);
            z-index: 2;
        }

        .img-before {
            z-index: 1;
        }

        .slider-input {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 4;
            cursor: ew-resize;
        }

        .slider-line {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: white;
            z-index: 3;
            transform: translateX(-50%);
            pointer-events: none;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .slider-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background: white;
            border: 3px solid #1c528f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            animation: slider-pulse 2s infinite;
        }

        @keyframes slider-pulse {
            0% { box-shadow: 0 0 0 0 rgba(28, 82, 143, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(28, 82, 143, 0); }
            100% { box-shadow: 0 0 0 0 rgba(28, 82, 143, 0); }
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* --- Estilos de la Nueva Galería del Equipo (3D Stack) --- */
        #team-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-item {
            position: absolute;
            transition: all 0.6s ease-in-out;
            opacity: 0;
            z-index: 1;
            aspect-ratio: 3 / 2;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .team-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .item-active {
            opacity: 1;
            transform: scale(1.3);
            z-index: 10;
            width: 450px;
        }

        .item-prev {
            opacity: 0.6;
            transform: translateX(-70%) scale(1);
            z-index: 5;
            width: 450px;
        }

        .item-next {
            opacity: 0.6;
            transform: translateX(70%) scale(1);
            z-index: 5;
            width: 450px;
        }

        /* Ajustes Mobile para Team Gallery */
        @media (max-width: 768px) {
            .item-active {
                width: 220px;
                transform: scale(1.2);
            }

            .item-prev {
                width: 220px;
                transform: translateX(-60%) scale(0.9);
                opacity: 0.4;
            }

            .item-next {
                width: 220px;
                transform: translateX(60%) scale(0.9);
                opacity: 0.4;
            }
        }

        /* --- Estilos del Carrusel de Reviews (Native Swipe/Scroll Snap) --- */
        #reviews-slider-container {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        #reviews-slider-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        #reviews-slider {
            display: flex;
            align-items: flex-start;
            width: 100%;
        }

        .review-item {
            flex: 0 0 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            scroll-snap-align: start;
        }

        @media (min-width: 768px) {
            .review-item {
                flex: 0 0 50%;
            }
        }

        @media (min-width: 1024px) {
            .review-item {
                flex: 0 0 33.333%;
            }
        }

        .review-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            height: auto;
            min-height: 340px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-color: #cbd5e1;
        }

        .line-clamp-5 {
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .read-more-btn {
            color: #1c528f;
            font-weight: 600;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
            display: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .read-more-btn:hover {
            text-decoration: underline;
        }

        /* --- Estilos de la Nueva Galería de Trabajos (Collage & Lightbox) --- */
        .work-item {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            cursor: pointer;
            aspect-ratio: 1 / 1;
        }

        .work-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-item:hover img {
            transform: scale(1.05);
        }

        .work-overlay {
            position: absolute;
            inset: 0;
            background: rgba(28, 82, 143, 0.6);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            text-align: center;
        }

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

        /* Lightbox Modal */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        #lightbox.active {
            display: flex;
        }

        #lightbox-img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 0.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        #lightbox.active #lightbox-img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            line-height: 1;
        }

        /* Paginación */
        .page-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-dot.active {
            background-color: #1c528f;
            width: 32px;
            border-radius: 6px;
        }

        /* Animations */
        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }

        /* --- Accordion Styles --- */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.4s ease;
            opacity: 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 1000px; /* Large enough value */
            transition: max-height 0.5s cubic-bezier(1, 0, 1, 0), opacity 0.6s ease;
            opacity: 1;
        }

        .accordion-item .chevron-icon {
            transition: transform 0.4s ease;
        }

        .accordion-item.active .chevron-icon {
            transform: rotate(180deg);
        }
