* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cyan: #00b4d8;
            --dark-cyan: #0096c7;
            --magenta: #d90368;
            --dark-magenta: #c1036b;
            --dark-bg: #1a1a2e;
            --gray: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navegación */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 5%;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cyan);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--cyan);
        }

        .cta-nav {
            background: linear-gradient(135deg, var(--magenta), var(--dark-magenta));
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(217, 3, 104, 0.3);
        }

        /* Hero Carousel */
        .hero-carousel {
            margin-top: 80px;
            height: 90vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, rgba(0, 180, 216, 0.85), rgba(217, 3, 104, 0.75));*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .slide-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: slideInDown 1s ease;
        }

        .slide-content p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: slideInUp 1s ease;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: white;
            color: var(--magenta);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Video Section */
        .video-section {
            padding: 6rem 5%;
            background: var(--gray);
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .video-placeholder {
            width: 100%;
            height: 560px;
            background: linear-gradient(135deg, var(--cyan), var(--dark-cyan));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            animation: movePattern 20s linear infinite;
        }

        @keyframes movePattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .play-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        /* Value Proposition */
        .value-section {
            padding: 6rem 5%;
            background: white;
        }

        .value-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .value-text h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .value-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .value-cards {
            display: grid;
            gap: 1.5rem;
        }

        .value-card {
            background: linear-gradient(135deg, var(--cyan), var(--dark-cyan));
            padding: 2rem;
            border-radius: 15px;
            color: white;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: all 0.5s;
        }

        .value-card:hover::before {
            top: -60%;
            right: -60%;
        }

        .value-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            position: relative;
        }

        .value-card:nth-child(2) {
            background: linear-gradient(135deg, var(--magenta), var(--dark-magenta));
        }

        .value-card:nth-child(3) {
            background: linear-gradient(135deg, #0096c7, #023e8a);
        }

        /* Cobertura Nacional */
        .cobertura-section {
            padding: 6rem 5%;
            background: #f5f5f5;
        }

        .cobertura-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 1rem;
            align-items: center;
        }

        .cobertura-text h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .cobertura-text p {
            font-size: 1.15rem;
            /*line-height: 1.9;*/
            color: #444;
            margin-bottom: 1.3rem;
        }

        .cobertura-text p:last-child {
            font-weight: 600;
            color: #333;
        }

        .cobertura-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #e8f4f8, #c8036a42);
            /*padding: 2rem;*/
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s;
            /*min-height: 400px;*/
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cobertura-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .cobertura-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }

        /* Services Grid with Images */
        .services-section {
            padding: 6rem 5%;
            background: var(--gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 3rem auto 0;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--magenta),var(--cyan));
            display: flex;
            /*align-items: center;*/
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .service-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: var(--cyan);
            margin-bottom: 1rem;
        }

        .service-content p {
            color: #666;
            line-height: 1.6;
        }

        .service-note {
            background: #fff3cd;
            border-left: 4px solid var(--magenta);
            padding: 1.5rem;
            margin: 2rem auto;
            max-width: 1200px;
            border-radius: 10px;
            font-style: italic;
            color: #856404;
        }

        /* Process Section */
        .process-section {
            padding: 6rem 5%;
            background: white;
        }

        .process-timeline {
            max-width: 1000px;
            margin: 3rem auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--cyan), var(--magenta));
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            position: relative;
        }

        .process-step:nth-child(even) .step-content {
            grid-column: 2;
        }

        .process-step:nth-child(even) .step-number {
            grid-column: 1;
            grid-row: 1;
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .step-content h3 {
            color: var(--cyan);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .number-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Acabados Section */
        .acabados-section {
            padding: 6rem 5%;
            background: var(--gray);
        }

        .acabados-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 3rem auto;
        }

        .acabado-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            overflow: hidden;
        }

        .acabado-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .acabado-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .acabado-content {
            padding: 2rem;
        }

        .acabado-card {
            border-top: none;
        }

        .acabado-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .acabado-content h3 {
            color: var(--cyan);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--cyan);
            padding-left: 1rem;
        }

        .acabado-card:nth-child(even) .acabado-content h3 {
            color: var(--magenta);
            border-left-color: var(--magenta);
        }

        /* Clients Band */
        .clients-section {
            padding: 4rem 0;
            background: var(--dark-bg);
            overflow: hidden;
        }

        .clients-section h2 {
            text-align: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .clients-track {
            display: flex;
            gap: 4rem;
            animation: scroll 40s linear infinite;
        }

        .client-logo {
            min-width: 180px;
            height: 100px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            overflow: hidden;
            padding: 1rem;
        }

        .client-logo img {
            max-width: 100%;
            /*max-height: 100%;*/
            object-fit: contain;
            /*filter: grayscale(100%);
            opacity: 0.7;*/
            transition: all 0.3s;
        }

        .client-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* About Section */
        .about-section {
            padding: 6rem 5%;
            background: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .about-text h3 {
            color: var(--cyan);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .mission-vision {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mv-card {
            background: linear-gradient(135deg, var(--cyan), var(--dark-cyan));
            padding: 2.5rem;
            border-radius: 15px;
            color: white;
        }

        .mv-card:nth-child(2) {
            background: linear-gradient(135deg, var(--magenta), var(--dark-magenta));
        }

        .mv-card h4 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 5%;
            background: var(--gray);
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--cyan);
        }

        .contact-form button {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .info-item h4 {
            color: var(--cyan);
            margin-bottom: 0.5rem;
        }

        .map-container {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 3rem 5%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            color: var(--cyan);
            margin-bottom: 1rem;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0.8rem 3%;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            nav ul {
                gap: 0.8rem;
                font-size: 0.85rem;
                justify-content: center;
            }

            nav a {
                font-size: 0.8rem;
            }

            .cta-nav {
                padding: 0.5rem 1rem;
            }

            .hero-carousel {
                height: 70vh;
                margin-top: 130px;
            }
            
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .video-section {
                padding: 4rem 3%;
            }

            .video-container {
                padding-bottom: 56.25%; /* Mantiene aspect ratio 16:9 */
            }

            .maquilador-section {
                padding: 3rem 3%;
            }

            .maquilador-banner {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }

            .maquilador-icon {
                font-size: 3rem;
            }

            .maquilador-text p {
                font-size: 1.1rem;
            }

            .btn-maquilador {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }

            .value-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cobertura-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .cobertura-text {
                order: 1;
            }

            .cobertura-image {
                order: 2;
                min-height: 300px;
                /*padding: 2rem;*/
            }

            .cobertura-text h2 {
                font-size: 2rem;
            }

            .cobertura-text p {
                font-size: 1.05rem;
            }

            .cobertura-section {
                padding: 4rem 3%;
            }

            /* Asegurar que en móvil el mapa esté abajo */
            .cobertura-content {
                display: flex;
                flex-direction: column;
            }

            .value-text h2 {
                font-size: 1.8rem;
            }

            .value-text p {
                font-size: 1rem;
            }

            .services-section,
            .acabados-section,
            .process-section,
            .about-section,
            .contact-section {
                padding: 4rem 3%;
            }

            .services-grid,
            .acabados-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-image,
            .acabado-image {
                height: 200px;
            }

            .service-content,
            .acabado-content {
                padding: 1.5rem;
            }

            .service-content h3,
            .acabado-content h3 {
                font-size: 1.2rem;
            }

            .service-content p,
            .acabado-content p {
                font-size: 0.95rem;
            }

            .process-step {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            .process-timeline::before {
                left: 20px;
            }

            .step-number {
                justify-content: flex-start;
                padding-left: 0;
            }

            .number-circle {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .step-content {
                padding: 1.5rem;
            }

            .step-content h3 {
                font-size: 1.2rem;
            }

            .step-content p {
                font-size: 0.95rem;
            }

            .value-card,
            .mv-card {
                padding: 1.5rem;
            }

            .value-card h3 {
                font-size: 1.2rem;
            }

            .mv-card h4 {
                font-size: 1.4rem;
            }

            .clients-section h2 {
                font-size: 1.8rem;
                padding: 0 1rem;
            }

            .client-logo {
                min-width: 140px;
                height: 80px;
                font-size: 0.9rem;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 0.8rem;
                font-size: 0.95rem;
            }

            .contact-form button {
                padding: 1rem;
                font-size: 1rem;
            }

            .info-item {
                padding: 1.2rem;
            }

            .map-container {
                height: 250px;
                font-size: 1.5rem;
            }

            footer {
                padding: 2rem 3%;
            }

            .footer-logo {
                font-size: 1.5rem;
            }

            footer p {
                font-size: 0.9rem;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Modal de Aviso de Privacidad */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            color: white;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            max-height: calc(90vh - 120px);
        }

        .modal-body h3 {
            color: var(--cyan);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .modal-body p,
        .modal-body ul {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .modal-body ul {
            padding-left: 2rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
        }

        .privacy-link {
            color: var(--cyan);
            text-decoration: underline;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .privacy-link:hover {
            color: var(--magenta);
            text-decoration: none;
        }

        .privacy-footer {
            background: var(--gray);
            padding: 1.5rem 2rem;
            border-top: 2px solid #e0e0e0;
        }

        .privacy-footer p {
            margin: 0.3rem 0;
            color: #666;
        }

        @media (max-width: 480px) {
            .hero-carousel {
                margin-top: 160px;
            }

            .slide-content h1 {
                font-size: 1.5rem;
            }

            .slide-content p {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            nav ul {
                gap: 0.5rem;
            }

            .value-grid {
                gap: 1rem;
            }

            .service-note {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .cobertura-text h2 {
                font-size: 1.8rem;
            }

            .cobertura-text p {
                font-size: 1rem;
            }

            .cobertura-image {
                min-height: 250px;
                /*padding: 1.5rem;*/
            }
        }

        /* Sección Maquiladores */
        .maquilador-section {
            padding: 4rem 5%;
            background: white;
        }

        .maquilador-banner {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            padding: 3rem 4rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 2rem;
            animation: pulse-gentle 2s ease-in-out infinite;
        }

        @keyframes pulse-gentle {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 15px 50px rgba(0,180,216,0.4);
            }
        }

        .maquilador-icon {
            font-size: 4rem;
            flex-shrink: 0;
        }

        .maquilador-text {
            color: white;
        }

        .maquilador-text p {
            font-size: 1.4rem;
            margin: 0 0 1rem 0;
            line-height: 1.6;
        }

        .btn-maquilador {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: white;
            color: var(--magenta);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .btn-maquilador:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            background: #f8f9fa;
        }

        