/* VARIABLES CSS PARA COLORES CORPORATIVOS */
        :root {
            --color-amarillo: #f2c94c;
            --color-azul: #00bcd4;
            --color-blanco: #ffffff;
            --color-gris-claro: #f8f9fa;
            --color-gris: #6c757d;
            --color-negro: #333333;
        }

        /* RESET Y ESTILOS BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--color-negro);
            background-color: var(--color-blanco);
        }

        /* NAVEGACIÓN FIJA */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--color-blanco);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 120px;
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo img {
            height: 100px;
        }

        /* Fallback text logo si no hay imagen */
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: var(--color-azul);
            font-family: 'Arial', sans-serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--color-negro);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--color-azul);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--color-azul);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* HAMBURGER MOBILE */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--color-azul);
            transition: 0.3s;
        }

        /* SECCIÓN HERO */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--color-azul) 0%, var(--color-amarillo) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23bubbles)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--color-blanco);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--color-blanco);
            margin-bottom: 40px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            min-width: 160px;
        }

        .btn-primary {
            background: var(--color-blanco);
            color: var(--color-azul);
        }

        .btn-primary:hover {
            background: var(--color-gris-claro);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-blanco);
            border: 2px solid var(--color-blanco);
        }

        .btn-secondary:hover {
            background: var(--color-blanco);
            color: var(--color-azul);
            transform: translateY(-2px);
        }

        /* ESTILOS GENERALES DE SECCIONES */
        .section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--color-negro);
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-azul), var(--color-amarillo));
            border-radius: 2px;
        }

        /* SECCIÓN QUIÉNES SOMOS */
        .about {
            background: var(--color-gris-claro);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-gris);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--color-blanco);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-azul), var(--color-amarillo));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: var(--color-blanco);
        }

        .feature-item h3 {
            color: var(--color-negro);
            margin-bottom: 10px;
        }

        /* SECCIÓN PRODUCTOS */
        .products {
            background: var(--color-blanco);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--color-blanco);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            height: 200px;
            background: linear-gradient(135deg, var(--color-azul), var(--color-amarillo));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--color-blanco);
        }

        .product-content {
            padding: 30px;
        }

        .product-content h3 {
            color: var(--color-negro);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .product-content p {
            color: var(--color-gris);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn-small {
            padding: 10px 25px;
            font-size: 0.9rem;
            border-radius: 25px;
        }

        /* SECCIÓN TESTIMONIOS */
        .testimonials {
            background: linear-gradient(135deg, var(--color-azul) 0%, var(--color-amarillo) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" font-size="8" fill="rgba(255,255,255,0.1)" text-anchor="middle">"</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes)"/></svg>');
            opacity: 0.3;
        }

        .testimonials .section-title {
            color: var(--color-blanco);
        }

        .testimonials .section-title::after {
            background: var(--color-blanco);
        }

        .testimonials-container {
            position: relative;
            z-index: 2;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .testimonial-card {
            min-width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 120px;
            color: var(--color-amarillo);
            opacity: 0.3;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--color-gris);
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-azul), var(--color-amarillo));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--color-blanco);
            font-weight: bold;
        }

        .author-info h4 {
            color: var(--color-negro);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--color-azul);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--color-blanco);
            transform: scale(1.2);
        }

        .testimonials-arrows {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            left: 20px;
            right: 20px;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 3;
        }

        .arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .arrow:hover {
            background: var(--color-blanco);
            transform: scale(1.1);
        }

        .arrow::before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
        }

        .arrow.prev::before {
            border-width: 8px 12px 8px 0;
            border-color: transparent var(--color-azul) transparent transparent;
            margin-right: 2px;
        }

        .arrow.next::before {
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent var(--color-azul);
            margin-left: 2px;
        }

        .rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: #ffd700;
            font-size: 20px;
        }

        /* SECCIÓN SUCURSALES */
        .branches {
            background: var(--color-gris-claro);
            position: relative;
        }

        .branches::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,188,212,0.1)"/><path d="M20,20 L30,30 M30,20 L20,30" stroke="rgba(0,188,212,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23map)"/></svg>');
            opacity: 0.3;
        }

        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .branch-card {
            background: var(--color-blanco);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-5px);
        }

        .branch-card.main {
            border: 3px solid var(--color-amarillo);
            position: relative;
        }

        .branch-card.main::before {
            content: 'MATRIZ';
            position: absolute;
            top: -10px;
            left: 20px;
            background: var(--color-amarillo);
            color: var(--color-negro);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .branch-card h3 {
            color: var(--color-azul);
            margin-bottom: 15px;
        }

        .branch-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .branch-info i {
            color: var(--color-azul);
            width: 20px;
        }

        .whatsapp-btn {
            background: #25d366;
            color: var(--color-blanco);
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            transform: translateY(-2px);
        }

        /* SECCIÓN CONTACTO */
        .contact {
            background: var(--color-blanco);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-form {
            background: var(--color-gris-claro);
            padding: 40px;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--color-negro);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid transparent;
            border-radius: 10px;
            font-size: 1rem;
            background: var(--color-blanco);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-azul);
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .social-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: var(--color-gris-claro);
            border-radius: 15px;
            text-decoration: none;
            color: var(--color-negro);
            transition: all 0.3s ease;
        }

        .social-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--color-blanco);
        }

        .social-icon.facebook {
            background: #1877f2;
        }

        .social-icon.whatsapp {
            background: #25d366;
        }

        /* FOOTER */
        .footer {
            background: var(--color-negro);
            color: var(--color-blanco);
            text-align: center;
            padding: 30px 0;
        }

        /* ANIMACIONES */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--color-blanco);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .testimonials-arrows {
                display: none;
            }

            .contact-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                min-width: 140px;
            }

            .feature-item,
            .branch-card {
                padding: 20px 15px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .product-card {
                margin: 0 10px;
            }
        }        