﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #fafafa;
        }

        /* Header y NavegaciÃ³n */
        header {
            background: white;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-bottom: 3px solid #FF9F58;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #FF9F58;
            min-width: 120px;
            text-decoration: none;
        }

        .logo-icon {
            width: 90px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }


        .logo i {
            font-size: 24px;
        }

        .menu-toggle {
            display: none;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            border: none;
            font-size: 20px;
            color: white;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 159, 88, 0.3);
        }

        .menu-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 159, 88, 0.4);
        }

        .menu-toggle:active {
            transform: scale(0.95);
        }

        nav {
            display: flex;
            flex: 1;
            justify-content: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        nav a:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 159, 88, 0.4);
            border-color: #FF9F58;
        }

        nav a:hover::before {
            transform: scaleX(1);
        }

        nav a:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 159, 88, 0.3);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-header {
            display: flex;
            gap: 10px;
        }

        .social-header a {
            color: #FF9F58;
            font-size: 16px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-header a:hover {
            color: #2C3E50;
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 22px;
            color: #FF9F58;
            transition: transform 0.3s ease;
        }

        .cart-icon:hover {
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background: #FF9F58;
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 350px;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: none;
            background-size: cover;
            background-position: center;
            animation: fadeIn 1s ease;
        }

        .carousel-slide.active {
            display: flex;
        }

        .carousel-slide-1 {
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1200&h=350&fit=crop') center/cover;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide-2 {
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1200&h=350&fit=crop') center/cover;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide-3 {
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&h=350&fit=crop') center/cover;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: 0;
        }

        .hero-content {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 30px 20px;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 32px;
            margin-bottom: 15px;
            animation: slideInDown 0.8s ease;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 15px;
            margin-bottom: 20px;
            opacity: 0.95;
            animation: slideInUp 0.8s ease;
            max-width: 100%;
        }

        .hero-btn {
            display: inline-block;
            background: white;
            color: #FF9F58;
            padding: 10px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .carousel-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.3);
        }

        /* SecciÃ³n de CaracterÃ­sticas */
        .features {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 15px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .feature-card {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 35px;
            color: white;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #333;
        }

        .feature-card p {
            color: #666;
            font-size: 14px;
        }

        /* SecciÃ³n Sobre Nosotros */
        .about {
            background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
            color: white;
            padding: 80px 15px;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 159, 88, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-content h2 {
            font-size: 40px;
            margin-bottom: 20px;
            color: white;
            font-weight: bold;
            line-height: 1.2;
        }

        .about-content h2 span {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            font-size: 15px;
            margin-bottom: 15px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .about-list {
            list-style: none;
            margin-top: 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-list li {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            background: rgba(255, 159, 88, 0.1);
            border-radius: 8px;
            border-left: 3px solid #FF9F58;
            transition: all 0.3s ease;
        }

        .about-list li:hover {
            background: rgba(255, 159, 88, 0.2);
            transform: translateX(5px);
        }

        .about-list i {
            color: #FF9F58;
            font-size: 18px;
            flex-shrink: 0;
        }

        .about-image {
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            min-height: 350px;
            font-size: 120px;
            border: 2px solid rgba(255, 159, 88, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 159, 88, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .about-stats {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .about-stat {
            background: rgba(255, 159, 88, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 3px solid #FF9F58;
            transition: all 0.3s ease;
        }

        .about-stat:hover {
            background: rgba(255, 159, 88, 0.15);
            transform: translateY(-5px);
        }

        .about-stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #FF9F58;
            margin-bottom: 5px;
        }

        .about-stat-label {
            font-size: 12px;
            color: #b0b9c3;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CatÃ¡logo */
        .catalog-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 15px;
        }

        .catalog-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .catalog-header h2 {
            font-size: 26px;
            color: #333;
        }

        .search-container {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #FFB380;
            border-radius: 25px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #FF9F58;
            box-shadow: 0 0 8px rgba(255, 159, 88, 0.3);
        }

        .search-input::placeholder {
            color: #ccc;
        }

        .search-clear {
            padding: 10px 20px;
            background: white;
            border: 2px solid #FFB380;
            color: #FF9F58;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 12px;
        }

        .search-clear:hover {
            background: #FFB380;
            color: white;
        }

        .filters {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 16px;
            border: 2px solid #FFB380;
            background: white;
            color: #FF9F58;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 12px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #FF9F58;
            color: white;
            border-color: #FF9F58;
        }

        /* Grid de Productos */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .load-more-container {
            text-align: center;
            margin-top: 40px;
        }

        .load-more-btn {
            padding: 14px 40px;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 159, 88, 0.3);
        }

        .load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .no-products {
            text-align: center;
            padding: 40px 20px;
            color: #999;
            font-size: 16px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(255, 159, 88, 0.1);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: rgba(255, 159, 88, 0.3);
        }

        .product-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px 8px 0 0;
        }

        .product-image:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .product-image:hover::after {
            content: '\f002  Ver Imagen';
            font-family: 'Font Awesome 6 Free';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 159, 88, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: white;
            font-weight: 900;
            z-index: 10;
            border-radius: 8px 8px 0 0;
            letter-spacing: 0.5px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #FF9F58;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
        }

        .product-info {
            padding: 12px;
        }

        .product-category {
            color: #FF9F58;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-name {
            font-size: 13px;
            font-weight: 600;
            margin: 6px 0;
            color: #333;
        }

        .product-description {
            font-size: 11px;
            color: #666;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 16px;
            font-weight: bold;
            color: #FF9F58;
            margin-bottom: 8px;
        }

        .product-footer {
            display: flex;
            gap: 6px;
        }

        .add-to-cart-btn {
            flex: 1;
            background: #FF9F58;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
            font-size: 12px;
        }

        .add-to-cart-btn:hover {
            background: #FF8C42;
        }

        .quantity-input {
            width: 50px;
            padding: 6px;
            border: 1px solid #FFB380;
            border-radius: 4px;
            text-align: center;
            font-weight: 600;
            font-size: 12px;
        }

        /* SecciÃ³n de Proyectos - CARRUSEL */
        .projects {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            padding: 80px 15px;
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }

        .projects-carousel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #FF9F58;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-arrow:hover {
            background: #FFB380;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 0;
        }

        .carousel-arrow.next {
            right: 0;
        }

        .projects-carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .projects-carousel-content {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }

        .project-carousel-card {
            flex: 0 0 calc(33.333% - 20px);
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-carousel-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        .project-carousel-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: rgba(255,255,255,0.3);
            position: relative;
        }
        
        .project-carousel-card:nth-child(1) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=400&h=250&fit=crop');
        }
        
        .project-carousel-card:nth-child(2) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=400&h=250&fit=crop');
        }
        
        .project-carousel-card:nth-child(3) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=400&h=250&fit=crop');
        }
        
        .project-carousel-card:nth-child(4) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1578500494198-246f612d03b3?w=400&h=250&fit=crop');
        }
        
        .project-carousel-card:nth-child(5) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1584622281917-7cf4dc1cac74?w=400&h=250&fit=crop');
        }
        
        .project-carousel-card:nth-child(6) .project-carousel-image {
            background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=400&h=250&fit=crop');
        }

        .project-carousel-info {
            padding: 25px;
        }

        .project-carousel-info h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #333;
        }

        .project-carousel-info p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .carousel-dot-projects {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .carousel-dot-projects.active {
            background: white;
            transform: scale(1.3);
        }

        /* SecciÃ³n de Contacto */
        .contact {
            padding: 80px 15px;
            background: #fafafa;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            flex-shrink: 0;
        }

        .contact-info-text h4 {
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
        }

        .contact-info-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .contact-info-text a {
            color: #FF9F58;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info-text a:hover {
            text-decoration: underline;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 350px;
            margin-bottom: 30px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form {
            display: grid;
            gap: 20px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .form-group {
            display: grid;
            gap: 8px;
        }

        .form-group label {
            font-weight: 600;
            font-size: 14px;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px;
            border: 1px solid #FFB380;
            border-radius: 5px;
            font-family: inherit;
            font-size: 14px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF9F58;
            box-shadow: 0 0 8px rgba(255, 159, 88, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 159, 88, 0.3);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
            color: white;
            padding: 60px 15px 30px;
            border-top: 4px solid #FF9F58;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }

        .footer-section {
            padding: 20px 0;
        }

        .footer-section h4 {
            margin-bottom: 15px;
            color: #FFB380;
            font-size: 16px;
            font-weight: bold;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #b0b9c3;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section a:hover {
            color: #FF9F58;
            transform: translateX(5px);
        }

        .footer-section p {
            font-size: 14px;
            color: #b0b9c3;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .horarios-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 15px;
        }

        .horarios-grid p {
            margin-bottom: 8px;
            font-size: 13px;
        }

        .social-footer {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-footer a {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
            font-size: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            transform: translateX(0);
        }

        .social-footer a:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 159, 88, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: #7a8a99;
            font-size: 13px;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* WhatsApp Flotante */
        .whatsapp-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: floatWhatsApp 3s ease-in-out infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.15);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @keyframes floatWhatsApp {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 75px;
            bottom: 15px;
            background: #25D366;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-button:hover .whatsapp-tooltip {
            opacity: 1;
        }

        /* Animaciones */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* NotificaciÃ³n */
        .notification {
            position: fixed;
            bottom: 100px;
            right: 20px;
            max-width: 400px;
            background: linear-gradient(135deg, #25D366, #20BA5C);
            color: white;
            padding: 16px 20px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            z-index: 2000;
            animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: none;
            font-weight: 600;
            font-size: 14px;
            border-left: 4px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        @keyframes slideInUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOutDown {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(100px);
                opacity: 0;
            }
        }

        /* Modal de imagen expandida */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 3000;
            animation: fadeIn 0.3s ease;
        }

        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            overflow: auto;
            animation: zoomIn 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .image-modal-content img {
            max-width: 100%;
            max-height: 90vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 0 50px rgba(255, 159, 88, 0.3);
            display: block;
        }

        .image-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .image-modal-close:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        /* Carrito Modal */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .cart-modal.active {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .cart-content {
            background: white;
            width: 100%;
            max-width: 420px;
            height: 90vh;
            border-radius: 15px 0 0 15px;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 40px rgba(0,0,0,0.3);
            animation: slideInRight 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .cart-header {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 15px 0 0 0;
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 159, 88, 0.2);
        }

        .cart-header h3 {
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .close-cart {
            background: rgba(255,255,255,0.3);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-cart:hover {
            background: rgba(255,255,255,0.5);
            transform: scale(1.1);
        }

        .cart-items {
            padding: 15px;
            flex: 1;
            overflow-y: auto;
            min-height: 150px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: #f8f8f8;
            border-radius: 10px;
            margin-bottom: 10px;
            gap: 10px;
            font-size: 13px;
            border-left: 4px solid #FF9F58;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            background: #f0f0f0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 700;
            color: #333;
            margin-bottom: 6px;
            font-size: 13px;
        }

        .cart-item-price {
            color: #FF9F58;
            font-weight: 600;
            font-size: 12px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 5px;
            background: white;
            border-radius: 6px;
            padding: 2px;
        }

        .quantity-btn {
            width: 26px;
            height: 26px;
            border: none;
            background: #FF9F58;
            color: white;
            cursor: pointer;
            border-radius: 4px;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: #FFB380;
            transform: scale(1.05);
        }

        .remove-item {
            background: linear-gradient(135deg, #ff6b6b, #ff5252);
            color: white;
            border: none;
            padding: 6px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 11px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .remove-item:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
        }

        .cart-empty {
            text-align: center;
            padding: 50px 15px;
            color: #999;
            font-size: 14px;
        }

        .cart-summary {
            padding: 20px;
            border-top: 2px solid #FFB380;
            background: linear-gradient(to bottom, #ffffff, #f9f9f9);
            position: sticky;
            bottom: 0;
            z-index: 9;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
            color: #555;
        }

        .summary-row.total {
            font-size: 18px;
            font-weight: bold;
            color: #FF9F58;
            border-top: 2px solid #FFB380;
            padding-top: 12px;
            margin-top: 12px;
        }

        .cart-actions {
            padding: 15px;
            display: flex;
            gap: 10px;
            background: white;
            position: sticky;
            bottom: 0;
            z-index: 9;
        }

        .btn-whatsapp {
            flex: 1;
            background: linear-gradient(135deg, #25D366, #20BA5C);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .btn-continue {
            flex: 1;
            background: #FF9F58;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 13px;
        }

        .btn-continue:hover {
            background: #FF8C42;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                min-height: 300px;
            }

            .about-content h2 {
                font-size: 32px;
            }

            .about-list {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .search-container {
                flex-direction: column;
            }

            .search-clear {
                width: 100%;
            }

            .about {
                padding: 60px 15px;
            }

            .about-content h2 {
                font-size: 28px;
            }

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .about-image {
                min-height: 250px;
                font-size: 80px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .search-container {
                flex-direction: column;
                gap: 10px;
            }

            .search-input {
                width: 100%;
            }

            .search-clear {
                width: 100%;
            }

            .about {
                padding: 50px 15px;
            }

            .about-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .about-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .about-list li {
                padding: 10px 12px;
                font-size: 13px;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 30px;
            }

            .about-stat {
                padding: 15px;
            }

            .about-stat-number {
                font-size: 24px;
            }

            .about-image {
                min-height: 200px;
                font-size: 60px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                order: -1;
            }

            nav {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                border-bottom: 3px solid #FF9F58;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
                border-radius: 0 0 15px 15px;
                animation: slideDown 0.3s ease;
            }

            nav.active {
                display: flex;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 10px 0;
            }

            nav a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
                font-size: 14px;
                margin: 5px 15px;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            nav a:hover {
                background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
                color: white;
                transform: translateX(5px);
                box-shadow: 0 4px 12px rgba(255, 159, 88, 0.3);
            }

            .social-header {
                display: none;
            }

            .project-carousel-card {
                flex: 0 0 100%;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .carousel-arrow.prev {
                left: 5px;
            }

            .carousel-arrow.next {
                right: 5px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .contact-form {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .logo-icon {
                width: 75px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                gap: 8px;
                min-width: 100px;
            }

            .logo-icon {
                width: 65px;
                height: 45px;
            }

            .projects {
                padding: 50px 15px;
            }

            .projects-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .projects-carousel {
                gap: 10px;
            }

            .carousel-arrow {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .project-carousel-card {
                flex: 0 0 100%;
            }

            .project-carousel-image {
                height: 200px;
                font-size: 60px;
            }

            .project-carousel-info {
                padding: 15px;
            }

            .project-carousel-info h4 {
                font-size: 16px;
            }

            .contact {
                padding: 50px 15px;
            }

            .contact-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .contact-info {
                gap: 20px;
            }

            .contact-info-item {
                gap: 15px;
            }

            .contact-info-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .contact-info-text h4 {
                font-size: 16px;
            }

            .map-container {
                height: 250px;
                margin-bottom: 20px;
            }

            .contact-form {
                padding: 15px;
            }

            .footer-sections {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .horarios-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-tooltip {
                right: 70px;
                font-size: 12px;
                padding: 8px 12px;
            }
        }

        /* Modal de Política de Privacidad */
        .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 3001;
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }

        .privacy-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .privacy-modal-content {
            background: white;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
            animation: zoomIn 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .privacy-modal-header {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 15px 15px 0 0;
            box-shadow: 0 4px 15px rgba(255, 159, 88, 0.2);
        }

        .privacy-modal-header h2 {
            margin: 0;
            font-size: 28px;
            font-weight: 700;
        }

        .privacy-modal-close {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .privacy-modal-close:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .privacy-modal-body {
            padding: 30px;
            overflow-y: auto;
            flex: 1;
        }

        .privacy-modal-body h3 {
            color: #333;
            font-size: 20px;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .privacy-modal-body h3:first-child {
            margin-top: 0;
        }

        .privacy-modal-body p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .privacy-modal-body ul {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            padding-left: 25px;
        }

        .privacy-modal-body li {
            margin-bottom: 8px;
        }

        .privacy-modal-body strong {
            color: #333;
        }

        @media (max-width: 768px) {
            .privacy-modal.active {
                padding: 10px;
            }

            .privacy-modal-content {
                max-height: 95vh;
            }

            .privacy-modal-header {
                padding: 20px;
            }

            .privacy-modal-header h2 {
                font-size: 22px;
            }

            .privacy-modal-body {
                padding: 20px;
            }

            .privacy-modal-body h3 {
                font-size: 18px;
            }
        }

        /* Sección de Preguntas Frecuentes */
        .faq-section {
            background: #f9f9f9;
            padding: 80px 15px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            font-size: 40px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 700;
        }

        .faq-subtitle {
            text-align: center;
            font-size: 16px;
            color: #666;
            margin-bottom: 50px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
            user-select: none;
        }

        .faq-question:hover {
            background: #f8f8f8;
        }

        .faq-question.active {
            background: linear-gradient(135deg, #FF9F58 0%, #FFB380 100%);
            color: white;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            flex: 1;
            padding-right: 20px;
        }

        .faq-question.active h3 {
            color: white;
        }

        .faq-question i {
            font-size: 18px;
            color: #FF9F58;
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: white;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.8;
            margin: 0;
            padding-top: 15px;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 15px;
            }

            .faq-title {
                font-size: 32px;
            }

            .faq-subtitle {
                font-size: 14px;
                margin-bottom: 35px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 16px;
                padding-right: 15px;
            }

            .faq-answer.active {
                padding: 0 20px 20px 20px;
            }

            .faq-answer p {
                font-size: 14px;
            }
        }
    
