      :root {
            --navy: #0b1f49;
            --navy-light: #0c1e3c;
            --navy-medium: #2A3441;
            --gold: #D4AF37;
            --gold-light: #F4E4BC;
            --gold-dark: #B8941F;
            --white: #FFFFFF;
            --white-soft: #F8F9FA;
            --accent-blue: #1B365D;
            --text-muted: #6B7280;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--navy) 10%, var(--navy-light) 50%);
            color: white;
            line-height: 1.6;
        }

        .about-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-medium) 100%);
            py: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(27, 54, 93, 0.3) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            padding: 6rem 0 8rem;
            position: relative;
            margin-bottom: 6rem;
            overflow: hidden;
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent, rgba(27, 54, 93, 0.2), transparent);
            animation: rotate 20s linear infinite;
            opacity: 0.7;
        }

        .hero-content::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, transparent 30%, rgba(11, 31, 73, 0.8) 70%);
            pointer-events: none;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            border: 2px solid transparent;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), 
                              linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent, rgba(27, 54, 93, 0.5));
            background-origin: border-box;
            background-clip: padding-box, border-box;
            padding: 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .main-title {
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
            position: relative;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { opacity: 0.5; transform: translateX(-50%) scaleX(0.8); }
            to { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .story-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .story-card:hover::before {
            transform: scaleX(1);
        }

        .story-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
        }

        .story-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
        }

        .story-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .story-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin: 4rem 0 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold);
            display: block;
            line-height: 1;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .cta-section {
            margin-top: 4rem;
        }

        .cta-text {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--navy);
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .btn-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .contact-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* SLIDER DE VALORES */
        .values-section {
            margin: 6rem 0;
            text-align: center;
        }

        .values-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }

        .values-title .highlight {
            color: var(--gold);
        }

        .values-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .values-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .value-slide {
            min-width: 100%;
            padding: 3rem;
            text-align: center;
        }

        .value-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .value-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .value-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: rgba(212, 175, 55, 0.2);
            color: var(--gold);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .slider-btn:hover {
            background: var(--gold);
            color: var(--navy);
            transform: scale(1.1);
        }

        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* TARJETAS DE SECTORES */
        .sectors-section {
            margin: 6rem 0;
        }

        .sectors-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--gold);
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .sector-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .sector-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .sector-card:hover::before {
            left: 100%;
        }

        .sector-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }

        .sector-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            color: var(--navy);
            transition: all 0.3s ease;
        }

        .sector-card:hover .sector-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .sector-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .sector-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* SECCIÓN DE UBICACIÓN CON MAPA */
        .location-section {
            margin: 6rem 0;
        }

        .location-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .location-info {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
        }

        .location-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .location-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-iframe {
            width: 100%;
            height: 400px;
            border: none;
            filter: grayscale(20%) sepia(10%) hue-rotate(200deg);
            transition: filter 0.3s ease;
        }

        .map-iframe:hover {
            filter: grayscale(0%) sepia(0%) hue-rotate(0deg);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 3rem 1.5rem;
            }

            .value-slide {
                padding: 2rem 1.5rem;
            }

            .sectors-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .location-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .location-info {
                padding: 2rem;
            }
        }

        /* ANIMACIONES */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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