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

        @media (max-width: 768px) {
            .where-main {
                font-size: 2.5rem !important;
            }

            .where-text-item {
                font-size: 12px;
            }

            .where-text-item:first-child {
                left: 8%;
                bottom: 15%;
            }

            .where-text-item:last-child {
                right: 8%;
                bottom: 15%;
            }

            .clients-container {
                padding: 0 20px;
            }

            .clients-title h2 {
                font-size: 2rem;
            }

            .clients-subtitle p {
                font-size: 1rem;
            }

            .clients-image-wrapper {
                border-radius: 15px;
            }

            .contact-section {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 80px 20px;
            }

            .contact-form-column h2 {
                font-size: 2rem;
            }

            .maps-column {
                gap: 20px;
            }

            .map-container {
                height: 250px;
            }
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-center {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
            gap: 30px;
        }

        .logo {
            display: block;
        }

        .logo img {
            height: 60px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .logo img:hover {
            opacity: 0.8;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 0.7;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            gap: 4px;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1001 !important;
            transition: left 0.3s ease;
            padding: 100px 30px 30px;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000 !important;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            z-index: 10002 !important;
            position: relative;
        }

        .mobile-nav-links li {
            margin-bottom: 25px;
        }

        .mobile-nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 10003 !important;
        }

        .mobile-nav-links a:hover {
            color: #ff6b35;
            padding-left: 10px;
        }

        .mobile-social-links {
            position: absolute;
            bottom: 50px;
            left: 30px;
            display: flex;
            gap: 20px;
            z-index: 10002 !important;
        }

        .mobile-social-links a {
            color: #fff;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .mobile-social-links a:hover {
            color: #ff6b35;
            transform: scale(1.1);
        }

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

        .social-links a {
            color: #fff;
            font-size: 18px;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover {
            opacity: 0.7;
        }



        /* RESPONSIVE MAPS: Mobile Stack Layout */
        @media (max-width: 768px) {
            /* Contenedor principal del contacto en móvil */
            .contact-section .container > div {
                display: block !important;
                grid-template-columns: none !important;
            }
            
            /* Contenedor de mapas en móvil - Stack vertical */
            .contact-section .container > div > div:nth-child(2) {
                display: block !important;
                grid-template-rows: none !important;
                margin-top: 40px;
            }
            
            /* Cada mapa individual */
            .contact-section .container > div > div:nth-child(2) > div {
                height: 250px !important;
                margin-bottom: 20px;
            }
            
            /* Último mapa sin margen */
            .contact-section .container > div > div:nth-child(2) > div:last-child {
                margin-bottom: 0;
            }
            
            /* Padding del container en móvil */
            .contact-section .container {
                padding: 0 20px !important;
            }
        }











        /* Hero Section */
        .hero {
            height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #ff6b35;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .play-button {
            width: 80px;
            height: 80px;
            border: 2px solid #ff6b35;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: scale(1.1);
        }

        .play-button::after {
            content: '▶';
            color: #ff6b35;
            font-size: 24px;
            margin-left: 5px;
        }

        .reel-text {
            color: #fff;
            font-size: 14px;
            margin-top: 10px;
            letter-spacing: 2px;
        }

        /* Content Section */
        .content-section {
            background: #f8f8f8;
            color: #333;
            padding: 80px 0 0 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .slides-container {
            position: relative;
            min-height: 650px;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 60px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .content-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .content-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        .image-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .content-text h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        .content-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #666;
        }

        .content-text p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #666;
        }

        .content-icons {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

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

        .icon-item .icon {
            width: 60px;
            height: 60px;
            border: 2px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
        }

        .icon-item .icon-label {
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            padding-bottom: 50px;
        }

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

        .pagination-dot.active {
            background: #ff6b35;
        }

        .pagination-dot:hover {
            background: rgba(255, 107, 53, 0.8);
        }

        /* Slide Animation */
        .slide {
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.6s ease;
        }

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

        /* Modal Styles */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            backdrop-filter: blur(10px);
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        .modal-video {
            width: 100%;
            height: 100%;
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .modal-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-content:hover .modal-controls {
            opacity: 1;
        }

        .modal-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .modal-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Where We Are Section */
        .where-we-are-section {
            background: #000;
            color: #fff;
        }

        .where-container {
            position: relative;
            width: 100%;
            height: 700px;
            max-height: 700px;
            overflow: hidden;
        }

        .where-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
        }

        .where-image-left,
        .where-image-right {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .where-image-left img,
        .where-image-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: transform 0.3s ease;
        }

        .where-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            pointer-events: none;
        }

        .where-text-item {
            position: absolute;
            color: #ff6b35;
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: transform 0.1s ease-out;
        }

        .where-text-item:first-child {
            left: 15%;
            bottom: 20%;
            top: auto;
        }

        .where-text-item:last-child {
            right: 15%;
            bottom: 20%;
            top: auto;
        }

        .where-main {
            color: #fff !important;
            font-size: 4rem !important;
            text-align: center;
            line-height: 0.9;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .where-stats {
            background: #f8f8f8;
            color: #333;
            padding: 60px 0;
            text-align: center;
        }


@media (max-width: 768px) {
    .where-text-item {
        font-size: 16px; /* Reducir de 12px a 10px */
    }

    .where-text-item:first-child {
        left: 5%; /* Reducir de 8% a 5% */

    }

    .where-text-item:last-child {
        right: 5%; /* Reducir de 8% a 5% */
        bottom: 8%; /* Cambiar de 15% a 8% */
    }
}


        .stats-number {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .stats-subtitle {
            margin-top: 10px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Clients Section */
        .clients-section {
            background: #f8f8f8;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .clients-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .clients-content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .clients-title {
            text-align: center;
            margin-bottom: 60px;
            z-index: 10;
            position: relative;
        }

        .clients-title h2 {
            font-size: 3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .clients-subtitle p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 10px;
        }

        .clients-description {
            font-size: 1rem !important;
            opacity: 0.8;
        }

        .clients-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .clients-image-wrapper:hover {
            transform: scale(1.02);
        }

        .clients-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .clients-image:hover {
            transform: scale(1.05);
        }

        /* Floating elements animation */
        .clients-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -100px;
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ff6b35, transparent);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .clients-section::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: -100px;
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #ff6b35, transparent);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .nav-center {
                justify-content: space-between;
            }

            .nav-links {
                display: none;
            }

            .social-links {
                display: none;
            }

            .hamburger {
                display: flex;
                order: -1;
				z-index: 10004 !important;
            }

            .mobile-menu {
                display: block;
            }

            .mobile-menu-overlay {
                display: block;
                pointer-events: none !important;
	            z-index: 10000 !important;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .container {
                padding: 0 20px;
            }

            .content-text h2 {
                font-size: 2rem;
            }

            .image-text {
                font-size: 2rem;
            }

            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .modal-close {
                top: -40px;
                font-size: 24px;
            }
        }