 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f4fbfe;
            color: #1e2f3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .btn {
            display: inline-block;
            background-color: #0b7b8a;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            font-size: 1rem;
            text-align: center;
        }
        .btn:hover {
            background-color: #0a5f6b;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0b7b8a;
            color: #0b7b8a;
        }
        .btn-outline:hover {
            background: #0b7b8a;
            color: white;
        }
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .logo h1 {
            font-size: 1.8rem;
            color: #0b7b8a;
        }
        .logo p {
            font-size: 0.8rem;
            color: #4b6a7c;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e2f3e;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: #0b7b8a;
        }
        /* Hero con imagen de fondo (Local.jpg) */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('img/Local.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: scroll; /* Cambiado de fixed para mejor rendimiento en móviles */
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        .hero-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #064e5c;
        }
        /* Tabla de servicios estilo captura */
        .services-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .service-card {
            background: white;
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: 0.2s;
        }
        .service-card h3 {
            color: #0b7b8a;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .service-card p {
            color: #2c4b5c;
        }
        /* Productos químicos y hielo */
        .products-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            background: #e0f2f5;
            border-radius: 48px;
            padding: 30px 20px;
            margin: 30px 0;
        }
        .product-item {
            background: white;
            border-radius: 60px;
            padding: 10px 24px;
            font-weight: 600;
            color: #064e5c;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            font-size: 1rem;
        }
        /* Galería responsiva */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        .gallery-item {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: transform 0.2s;
        }
        .gallery-item:hover {
            transform: scale(1.02);
        }
        .gallery-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        .gallery-caption {
            padding: 15px;
            text-align: center;
            font-weight: 500;
        }
        .horario-box {
            background: white;
            border-radius: 32px;
            padding: 30px;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .horario-dias {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b7b8a;
        }
        .horario-horas {
            font-size: 1.4rem;
            margin-top: 10px;
        }
        .mapa-contacto {
            background: #eaf5f8;
            border-radius: 48px;
            padding: 50px 0;
        }
        .two-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .mapa-col, .info-col {
            flex: 1;
            min-width: 260px;
        }
        #map {
            height: 350px;
            border-radius: 28px;
            z-index: 1;
            width: 100%;
        }
        .info-contacto {
            background: white;
            border-radius: 28px;
            padding: 30px;
            height: 100%;
        }
        .info-contacto p {
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .info-contacto i {
            font-size: 24px;
            width: 30px;
            color: #0b7b8a;
        }
        .whatsapp-btn {
            background-color: #25D366;
        }
        .whatsapp-btn:hover {
            background-color: #1da15a;
        }
        footer {
            background: #0b2f38;
            color: #d4eef3;
            padding: 40px 0;
            text-align: center;
            border-radius: 40px 40px 0 0;
            margin-top: 40px;
        }
        .float-wpp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 999;
            text-decoration: none;
        }
        .float-wpp:hover {
            transform: scale(1.08);
        }

        /* ========== MEDIA QUERIES RESPONSIVOS ========== */
        @media (max-width: 992px) {
            .container {
                padding: 0 20px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            /* Header */
            .header-flex {
                flex-direction: column;
                text-align: center;
            }
            .nav-links {
                justify-content: center;
                gap: 16px;
            }
            .nav-links a {
                font-size: 0.9rem;
            }
            /* Hero */
            .hero {
                padding: 60px 0;
            }
            .hero-content h2 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1rem;
                padding: 0 10px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            /* Títulos */
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }
            /* Servicios */
            .services-table {
                gap: 20px;
            }
            .service-card {
                padding: 20px;
            }
            .service-card h3 {
                font-size: 1.3rem;
            }
            /* Productos */
            .products-grid {
                padding: 20px 15px;
                gap: 12px;
            }
            .product-item {
                padding: 6px 16px;
                font-size: 0.85rem;
            }
            /* Galería: 1 columna en móvil */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .gallery-item img {
                height: 200px;
            }
            /* Horario */
            .horario-box {
                padding: 20px;
                max-width: 100%;
            }
            .horario-dias {
                font-size: 1.4rem;
            }
            .horario-horas {
                font-size: 1.2rem;
            }
            /* Mapa y contacto */
            .mapa-contacto {
                padding: 40px 0;
            }
            .two-columns {
                flex-direction: column;
                gap: 30px;
            }
            #map {
                height: 280px;
            }
            .info-contacto {
                padding: 25px;
            }
            .info-contacto h3 {
                font-size: 1.5rem !important;
            }
            .info-contacto p {
                font-size: 0.9rem;
                gap: 10px;
            }
            /* Footer */
            footer {
                padding: 30px 0;
                font-size: 0.85rem;
            }
            /* Botón flotante */
            .float-wpp {
                width: 50px;
                height: 50px;
                font-size: 28px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero-content h2 {
                font-size: 1.6rem;
            }
            .hero-content p {
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .service-card h3 {
                font-size: 1.2rem;
            }
            .service-card p {
                font-size: 0.9rem;
            }
            .product-item {
                font-size: 0.8rem;
                padding: 5px 12px;
            }
            .gallery-caption {
                font-size: 0.85rem;
            }
            .horario-dias {
                font-size: 1.2rem;
            }
            .horario-horas {
                font-size: 1rem;
            }
            .info-contacto p {
                font-size: 0.85rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
        }