
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Redefinimos tipografías globales */
body, p, span, a, input, button, select, h5, h6, .menu a {
    font-family: 'Poppins', sans-serif !important;
}
h1, h2, h3, h4, .section-title h2, .works-item h4 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

/* Tamaño fijo de imágenes de productos con encuadre premium */
.fixed-size {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #f7f7f7;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a.no-underline {
    text-decoration: none;
}
a.no-underline:hover {
    text-decoration: none;
}

#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-video {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#content {
    display: none;
}

/* Ícono de WhatsApp con latido animado */
.whatsapp-icon {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: pulseWhatsApp 2s infinite;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: transform 0.3s ease;
}   
.whatsapp-icon:hover {
    transform: scale(1.1);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.gray-bg {
    background-color: #ffffff;
}

.logo-video {
    width: 200px;
    height: 90px;
    object-fit: cover;
    background: transparent;
}

/* Buscador Premium */
.search-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto 30px auto;
}
.search-wrapper input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.search-wrapper input:focus {
    border-color: #c5a880;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.15);
    outline: none;
}
.search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
    font-size: 16px;
    transition: color 0.3s ease;
}
.search-wrapper input:focus + i {
    color: #c5a880;
}

/* Botones de Filtro de Categoría */
.category-filters-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0 40px 0;
}
.category-btn {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.category-btn:hover {
    background-color: #fdfaf5;
    border-color: #c5a880;
    color: #c5a880;
    transform: translateY(-2px);
}
.category-btn.active {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Tarjetas de Producto Modernas */
.works-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 25px;
}
.works-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #e5d8c3;
}
.works-item .works-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background-color: #f9f9f9;
}
.works-item:hover .works-thumb img.fixed-size {
    transform: scale(1.06);
}
.works-item .works-thumb .details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}
.works-item:hover .works-thumb .details {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.works-item h4 {
    margin: 20px 15px 6px 15px;
    font-size: 17px;
    font-weight: 700;
}
.works-item h4 a {
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.works-item h4 a:hover {
    color: #c5a880;
}
.works-item h6 {
    color: #888888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0px;
    font-weight: 600;
}

/* Títulos de Sección */
.section-title {
    margin-bottom: 40px;
}
.section-title span.subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c5a880;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title .divider {
    width: 60px;
    height: 3px;
    background: #c5a880;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Glassmorphism en "Sobre Nosotros" */
.about-block {
    background-color: #ffffff !important;
    padding: 60px 0 !important;
}
.about-block img.img-responsive {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}
.about-block img.img-responsive:hover {
    transform: scale(1.02);
}
.about-text-container {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 35px !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.about-text-container h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.about-text-container h4 {
    font-size: 14px;
    color: #c5a880;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}
.about-text-container p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    text-align: justify;
}

/* Controles de Slideshow */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.prev-slide:hover, .next-slide:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.05);
}
.prev-slide {
    left: 20px;
}
.next-slide {
    right: 20px;
}

/* Swiper Slide Premium en Detalle de Telas */
.swiper-container {
    padding: 10px 0 25px 0 !important;
}
.swiper-slide {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
    border: 1px solid #eeeeee !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background-color: #ffffff;
}
.swiper-slide:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,0.1) !important;
    border-color: #c5a880 !important;
}
.swiper-slide img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: block;
}
.swiper-slide:hover img {
    transform: scale(1.05) !important;
}
/* Icono de zoom en hover sobre el slide */
.swiper-slide a {
    display: block;
    position: relative;
}
.swiper-slide a::after {
    content: '\f00e'; /* Icono search-plus de FontAwesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
}
.swiper-slide:hover a::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsividad para Filtros de Categorías en Móviles (Scroll Horizontal) */
@media (max-width: 768px) {
    .category-filters-container {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 10px 15px !important;
        margin: 15px -15px 30px -15px !important;
        scrollbar-width: none !important; /* Firefox */
        -webkit-overflow-scrolling: touch;
    }
    .category-filters-container::-webkit-scrollbar {
        display: none !important; /* Chrome, Safari, Opera */
    }
    .category-btn {
        flex: 0 0 auto !important;
    }
}

  
        