
       @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;700&display=swap');
       :root {
            --gold: #C5A059;
            --dark: #121212;
            --light: #F8F9FA;
            --white: #FFFFFF;
            --gray-text: #666666;
        }
/* 1. Importar las fuentes al inicio */
/* 2. Forzar Oswald en el cuerpo y Bebas en títulos */
body {
    font-family: 'Oswald', sans-serif !important; /* El !important rompe la herencia de Bootstrap */
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    
}
      html, body {
            overflow-x: hidden !important;
            width: 100%;
            position: relative;
        }
            .row {
            margin-right: 0;
            margin-left: 0;
        }


h1, h2, h3, .navbar-brand, .nav-btn-contact, .btn-lux {
    font-family: 'Bebas Neue', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

        /* --- NAVEGACIÓN --- */
        /* Estilos para los enlaces del navbar similares a los del footer */
   /* --- NAVEGACIÓN MEJORADA --- */
        .navbar {
            transition: all 0.4s ease-in-out;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .navbar-brand img {
            height: 60px; /* Logo más grande */
            width: auto;
            transition: transform 0.3s ease;
            filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
        }

        .navbar-brand span {
            font-size: 1.5rem;
            letter-spacing: 4px;
            margin-left: 15px;
        }

        .nav-link {
            color: var(--dark) !important;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            padding: 10px 15px !important;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 60%;
        }

    /* Línea decorativa al pasar el cursor (opcional) */

    .nav-link:hover::after {
        width: 70%;
    }

    .navbar-brand img {
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
    }
     .nav-btn-contact {
            background-color: var(--gold);
            color: white !important;
            border: none;
            padding: 10px 25px !important;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            transition: all 0.3s ease;
            margin-left: 15px;
            border-radius: 0; /* Estilo cuadrado para mantener look arquitectónico */
        }

        .nav-btn-contact:hover {
            background-color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

          @media (max-width: 991px) {
            .navbar-brand img { height: 50px; }
            .navbar-brand span { font-size: 1.2rem; }
            .nav-link { padding: 10px 0 !important; border-bottom: 1px solid #eee; }
            .nav-link::after { display: none; }
            .nav-btn-contact { margin-left: 0; margin-top: 10px; text-align: center; }
        }

        /* --- EFECTO PARALLAX BASE --- */
        .parallax-bg {
            background-attachment: fixed; /* Esto crea el efecto Parallax */
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* --- HERO (Ahora con Parallax) --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1600585154340-be6199f7a009?auto=format&fit=crop&w=1500&q=80');
            color: white;
            text-align: center;
        }
        .hero h1 { font-size: 4rem; font-weight: 700; letter-spacing: 10px; margin-bottom: 20px; text-transform: uppercase; }
        .hero p { font-weight: 200; letter-spacing: 4px; font-size: 1.2rem; }

        /* --- SECCIONES DIVISORIAS PARALLAX --- */
        .parallax-divider {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            z-index: 1;
        }
        .parallax-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(18, 18, 18, 0.75); /* Oscurece la imagen para que el texto resalte */
            z-index: -1;
        }

        /* --- ESTILOS DE SECCIÓN --- */
        section:not(.parallax-divider):not(.hero) { padding: 120px 0; }
        .section-header { margin-bottom: 80px; text-align: center; }
        .section-header h2 { text-transform: uppercase; font-weight: 700; letter-spacing: 3px; position: relative; padding-bottom: 20px; }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            width: 80px; height: 3px;
            background: var(--gold);
            transform: translateX(-50%);
        }
        .section-header p { color: var(--gray-text); max-width: 600px; margin: 20px auto 0; font-size: 0.9rem; }

        /* --- NOSOTROS --- */
        .about-text { padding: 40px; }
        .about-img-box { position: relative; }
        .about-img-box::before {
            content: '';
            position: absolute;
            top: -20px; left: -20px;
            width: 100px; height: 100px;
            border-top: 5px solid var(--gold);
            border-left: 5px solid var(--gold);
        }

        /* --- SERVICIOS --- */
        .service-item {
            padding: 50px 30px;
            background: var(--white);
            border: 1px solid #f0f0f0;
            transition: 0.5s;
            height: 100%;
        }
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--gold);
        }
        .service-icon { font-size: 3rem; color: var(--gold); margin-bottom: 25px; }



        /* --- GALERÍA --- */
        .gallery-item { position: relative; overflow: hidden; height: 350px; cursor: pointer; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(18, 18, 18, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: 0.5s;
            color: white;
            padding: 30px;
            text-align: center;
        }
        .gallery-item:hover img { transform: scale(1.1); }
        .gallery-item:hover .gallery-overlay { opacity: 1; }

        /* --- PROMOS --- */
        .promo-card {
            background: var(--white);
            border: 1px solid #eee;
            transition: 0.4s;
            height: 100%;
        }
        .promo-card:hover { border-color: var(--gold); }
        .promo-img-container { height: 250px; overflow: hidden; }
        .promo-img-container img { width: 100%; height: 100%; object-fit: cover; }
        .promo-content { padding: 30px; }
        .badge-promo {
            background: var(--gold);
            color: white;
            padding: 5px 15px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* --- FAQ --- */
        .accordion-item { border: none; margin-bottom: 15px; background: var(--light); }
        .accordion-button {
            background: var(--light) !important;
            color: var(--dark) !important;
            font-weight: 600;
            padding: 25px;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) { color: var(--gold) !important; }

        /* --- CONTACTO --- */
        .contact-info-box { background: var(--light); padding: 50px; height: 100%; border-left: 5px solid var(--gold); }
        .social-link {
            width: 45px; height: 45px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            color: var(--dark);
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }
        .social-link:hover { background: var(--gold); border-color: var(--gold); color: white; }

        /* --- BOTONES --- */
        .btn-lux {
            background: var(--dark);
            color: white;
            padding: 15px 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            border: none;
            transition: 0.4s;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
        }
        .btn-lux:hover { background: var(--gold); color: white; transform: translateY(-3px); }

        footer { background: #0a0a0a; color: rgba(255,255,255,0.5); padding: 80px 0 40px; font-size: 0.8rem; }
    
        /* Estilos adicionales para la sección de Promos */
    .promo-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gold);
        color: white;
        padding: 8px 20px;
        font-weight: bold;
        font-size: 0.8rem;
        letter-spacing: 1px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .promo-img-wrapper img {
        transition: transform 5s ease;
    }
    
    .carousel-item.active .promo-img-wrapper img {
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .promo-img-wrapper { height: 300px !important; }
        .promo-container .p-5 { padding: 2rem !important; }
    }

     /* Estilos para los iconos de redes sociales */
    .social-link {
        color: rgba(255,255,255,0.6);
        font-size: 1.2rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }

    .social-link:hover {
        color: var(--gold);
        transform: translateY(-3px);
    }

    .extra-small {
        letter-spacing: 1px;
    }
/* Activar el despliegue al pasar el mouse */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Evitar que se separe del menú principal */
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
    }
}

/* Estilo opcional para que el submenú combine con la estética de Ceramikos */
.dropdown-menu {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0;
}

.dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #333;
    color: #bc9c22; /* Color dorado/acento de la marca */
}

/* --- ESTILOS PARA IMÁGENES DE PRODUCTOS --- */
.img-zoom-container {
    height: 250px; /* Altura fija de tu diseño original */
    overflow: hidden; /* Importante para que el zoom no se salga del cuadro */
    position: relative;
    cursor: pointer; /* Cambia el cursor a una mano para indicar que es clickeable */
    background-color: #f8f8f8; /* Color de fondo mientras carga */
}

.image-to-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    transition: transform 0.6s ease; /* Velocidad suave de la animación */
}

/* Efecto al pasar el mouse sobre la tarjeta */
.card-luxury:hover .image-to-zoom {
    transform: scale(1.1); /* Agranda la imagen un 10% */
}

/* Asegurar que el título sea mayúscula usando clases de Bootstrap, 
   o corregir tu CSS si usabas la clase .uppercase */
.text-uppercase {
    text-transform: uppercase;
}

/* Estilos básicos para la Ventana Modal (Lightbox) */
#modalImagenProducto .modal-content {
    background-color: transparent;
    border: none;
}

#modalImagenProducto .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modalImagenProducto .img-fullscreen {
    max-width: 100%;
    max-height: 90vh; /* Altura máxima para que no se corte en pantallas pequeñas */
    object-fit: contain; /* Muestra la imagen completa sin recortar */
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

#modalImagenProducto .btn-close-white {
    position: absolute;
    top: -30px;
    right: 0;
    filter: invert(1); /* Hace la X de cerrar de color blanco */
}


 /* --- AJUSTES DE DISEÑO SOLICITADOS --- */

        /* Separación del contenido respecto al Hero */
        .section-padding {
            padding: 80px 0; /* Mayor espacio arriba y abajo */
            background-color: #fcfcfc;
        }

        /* Refinamiento de las tarjetas de lujo */
        .card-luxury {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .card-luxury:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: #c5a059;
        }

        /* Contenedor de imagen con mejor proporción */
        .img-zoom-container {
            overflow: hidden;
            border-radius: 2px;
            margin-bottom: 1.5rem;
            cursor: zoom-in;
            background: #f8f8f8;
            aspect-ratio: 4 / 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .img-zoom-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .card-luxury:hover .img-zoom-container img {
            transform: scale(1.1);
        }

        /* Estilo para el botón dorado */
        .btn-gold {
            background-color: #c5a059;
            color: white;
            border: none;
            padding: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600;
            transition: background 0.3s ease;
            margin-top: auto; /* Empuja el botón al final */
        }

        .btn-gold:hover {
            background-color: #a8874a;
            color: white;
        }

        /* --- HERO SECTION INTERNA --- */
        .hero-internal {
            height: 40vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: 80px;
        }

        .hero-internal h1 {
            font-weight: 200;
            letter-spacing: 10px;
            text-transform: uppercase;
        }

        .img-fullscreen {
            width: 100%;
            height: auto;
            max-height: 85vh;
            object-fit: contain;
        }