/* ==================================================
        IMPORTACIÓN Y CONFIGURACIÓN DE MONTSERRAT
    ================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* =============================================
        REINICIO Y ESTILOS BASE MEJORADOS 
    ============================================ */
:root {
    --color-primary: #540606;
    --color-secondary: #dda97c;
    --color-secondary-transparent: #dda97cdd;
    --color-accent: #3498db;
    --color-light: #f5efef;
    --color-dark: #540606;
    --color-texto-claro: #f5efef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --container-padding: clamp(1rem, 5vw, 5%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(#ffffff, #fffffff1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================================
        HEADER MEJORADO - MENÚ TOGGLE PROFESIONAL 
    ================================================== */
.header-principal {
    background-image: linear-gradient(to right, #5a0202, #8a0303);
    box-shadow: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    animation: none;
}

.header-principal.scrolled {
    padding: 0.5rem var(--container-padding);
    background-image: linear-gradient(to bottom, rgba(84, 6, 6, 0.95), rgba(84, 6, 6, 0.8));
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.header-principal.scrolled .logo img {
    height: 40px;
    animation: none;
}

/* Botón del menú hamburguesa MEJORADO */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
    background-color: var(--color-light);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    transform-origin: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--color-secondary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: var(--color-secondary);
}

/* Mostrar navegación normal en pantallas grandes */
.barra-navegacion ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.barra-navegacion li {
    position: relative;
    margin: 0 0.8rem;
}

.barra-navegacion a {
    text-decoration: none;
    color: var(--color-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.barra-navegacion a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.barra-navegacion a:hover:after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.catalogo-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(84, 6, 6, 0.95);
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 4px;
    padding: 0.5rem 0;
}

.catalogo-dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color-light);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.catalogo-dropdown a:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding-left: 2rem;
}

.dropdown:hover .catalogo-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* =============================================
   EFECTOS DE DESTELLO SOLAR Y ANIMACIONES DE LETRAS 
   (TRANSFERIDOS DESDE EL APARTADO DE INICIO)
============================================= */

/* DESTELLO HORIZONTAL EN HEADER (EFECTO SOLAR) */
.header-principal::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.04) 20%, 
        rgba(255, 215, 0, 0.5) 50%,
        rgba(255, 255, 255, 0.04) 80%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: sunFlash 3.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes sunFlash {
    0% {
        left: -150%;
        opacity: 0.5;
    }
    50% {
        left: 150%;
        opacity: 0.7;
    }
    100% {
        left: 150%;
        opacity: 0.5;
    }
}

/* EFECTOS MEJORADOS EN ENLACES DE NAVEGACIÓN */
.barra-navegacion a {
    text-decoration: none;
    color: var(--color-light) !important;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.2);
}

.barra-navegacion a:hover {
    color: #FFD700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* SUBRAYADO SOLAR ANIMADO EN ENLACES */
.barra-navegacion a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FFD700, #FF8C00, #FFD700);
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.barra-navegacion a:hover::after {
    width: 100%;
}

/* EFECTO EN LOGO */
.logo img {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.2));
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* ANIMACIÓN DE PULSO PARA LOGO */
@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
}

.logo img {
    animation: pulseLogo 2s infinite;
}

/* MEJORA DROPDOWN CON EFECTOS SOLARES */
.catalogo-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(84, 6, 6, 0.95);
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border-radius: 4px;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.catalogo-dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color-light);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.1);
}

.catalogo-dropdown a:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    color: #FFD700 !important;
    padding-left: 2rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.dropdown:hover .catalogo-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* EFECTO BRILLO EN BOTÓN HAMBURGUESA */
.menu-toggle span {
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

.menu-toggle.active span {
    background-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
/* ======================================================= */
/* VIDEO HEADER MEJORADO */
/* ======================================================= */

.video-conteiner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-fondo-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(84, 6, 6, 0.4) 0%,
        rgba(84, 6, 6, 0.2) 50%,
        rgba(84, 6, 6, 0.4) 100%
    );
    z-index: 2;
}

.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Título sobre el video */
.video-conteiner h1 {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 5rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8),
                 0 0 50px rgba(0, 0, 0, 0.6),
                 0 0 70px rgba(0, 0, 0, 0.4);
    animation: fadeInZoom 2s ease forwards, bounceIn 1.5s ease-out;
    margin-bottom: 4rem;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.05);
}

.arrow-down {
    width: 30px;
    height: 30px;
    margin: 10px auto 0;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Aparición con resplandor y zoom */
@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.7);
        text-shadow: none;
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
                     0 0 60px rgba(255, 255, 255, 0.6);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
                     0 0 50px rgba(255, 255, 255, 0.4);
    }
}

/* Rebote ligero */
@keyframes bounceIn {
    0% { transform: translateY(-100px); }
    60% { transform: translateY(25px); }
    80% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ======================================================= */
/* CONTENEDOR PRINCIPAL DEL CATÁLOGO - MEJORADO */
/* ======================================================= */

.conteiner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.quienes-somos-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.quienes-somos-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.siluetas-luminosas-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}

/* MEJORAS PARA LAS TARJETAS - VISUALIZACIÓN COMO TARJETAS REALES */
.catalogo-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem 0;
}

/* Tarjetas de producto MEJORADAS - CON APARIENCIA DE TARJETA */
.catalogo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(84, 6, 6, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #333;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    border: 1px solid rgba(221, 169, 124, 0.2);
    position: relative;
}

/* Animación escalonada para las tarjetas */
.catalogo-card:nth-child(1) { animation-delay: 0.1s; }
.catalogo-card:nth-child(2) { animation-delay: 0.2s; }
.catalogo-card:nth-child(3) { animation-delay: 0.3s; }
.catalogo-card:nth-child(4) { animation-delay: 0.4s; }
.catalogo-card:nth-child(5) { animation-delay: 0.5s; }
.catalogo-card:nth-child(6) { animation-delay: 0.6s; }

.catalogo-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(84, 6, 6, 0.25);
}

/* Efecto de brillo al hacer hover */
.catalogo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.catalogo-card:hover::before {
    transform: scaleX(1);
}

/* Imagen dentro de la tarjeta - MEJORADA */
.card-image-wrapper {
    height: 250px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
    position: relative;
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(84, 6, 6, 0.1));
    pointer-events: none;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.catalogo-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

/* Información de la tarjeta - MEJORADA */
.card-info {
    padding: 1.8rem;
    background: transparent;
    position: relative;
}

.card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.8rem;
}

.card-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--color-secondary);
}

.description {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Características del producto - MEJORADAS */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0px;
    transition: all 0.3s ease;
    
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(84, 6, 6, 0.1);
    border-color: rgba(221, 169, 124, 0.5);
}

.feature i {
    color: var(--color-secondary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature:hover i {
    color: var(--color-primary);
    transform: scale(1.2);
}

/* Acciones de la tarjeta - MEJORADAS */
.card-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(221, 169, 124, 0.2);
}

.consult-btn {
    background: linear-gradient(135deg, var(--color-primary), #7a0c0c);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(84, 6, 6, 0.2);
}

.consult-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.consult-btn:hover {
    background: linear-gradient(135deg, #7a0c0c, var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(84, 6, 6, 0.3);
}

.consult-btn:hover::before {
    left: 100%;
}

.consult-btn:active {
    transform: translateY(0);
}

/* Animación de entrada para las tarjetas - MEJORADA */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    70% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ======================================================= */
/* SECCIÓN DE FRASE CON VIDEO */
/* ======================================================= */

.frase {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(84, 6, 6, 0.8));
}

.video-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    filter: brightness(0.5) contrast(1.2);
}

.frase-texto {
    position: relative;
    z-index: 2;
    color: var(--color-secondary-transparent);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    padding: 0 2rem;
    max-width: 900px;
    animation: textGlow 3s infinite alternate, floatText 6s infinite ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

/* Efectos de animación para el texto */
@keyframes textGlow {
    0% {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 0 rgba(255, 215, 0, 0);
    }
    100% {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes floatText {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* ======================================================= */
/* LIGHTBOX */
/* ======================================================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    animation: zoomIn 0.5s ease forwards;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #f2eaea;
}

/* Animación */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ======================================================= */
/* FOOTER PRINCIPAL */
/* ======================================================= */
.footer-principal {
    background-color: #f8f8f8;
    color: #333;
    padding: 30px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    border-top: 4px solid var(--color-primary);
}

footer p {
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
}

.footer-columna {
    flex-basis: 30%;
    padding: 20px;
}

.footer-info {
    text-align: left;
}

.footer-container h3 {
    color: var(--color-secondary-transparent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.footer-enlaces ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-enlaces li {
    margin-bottom: 10px;
}

.footer-enlaces a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-enlaces a:hover {
    color: var(--color-secondary-transparent);
}

.footer-contacto {
    text-align: left;
}

.footer-contacto p {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.footer-contacto i {
    margin-right: 8px;
    color: var(--color-secondary-transparent);
}

.footer-social h3 {
    margin-top: 20px;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-secondary-transparent);
}

.mapa-ubicacion-footer {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.mapa-ubicacion-footer iframe {
    width: 100%;
    height: 200px;
    display: block;
}



/* =======================================================
        ESTILOS PARA LIBRO DE RECLAMACIONES
    ======================================================= */
.libro-reclamaciones {
    color: #fffefbc0 !important;
    font-weight: 700 !important;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.libro-reclamaciones::before {
    content: "";
    background-image: url('../img/libro-reclamaciones.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 150px;
    height: 150px;
    margin-right: 8px;
    vertical-align: middle;
}

.libro-reclamaciones:hover {
    color: #ecc44ec0 !important;
    transform: translateX(5px);
}

.libro-reclamaciones::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.libro-reclamaciones:hover::after {
    width: 100%;
}

@keyframes attention {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.libro-reclamaciones {
    animation: attention 2s ease-in-out infinite;
}

/* =======================================================
        ESTILOS PARA TIKTOK MINI
    ======================================================= */
.tiktok-mini {
    max-width: 350px;
    transform: scale(0.7);
    transform-origin: top left;
    overflow: hidden;
    margin-top: 10px;
}

/* =======================================================
        ANIMACIONES Y EFECTOS DE MOVIMIENTO
    ======================================================= */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* -----------------------------
       BOTÓN FLOTANTE DE WHATSAPP
       ----------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: all 0.3s;
    animation: pulse1 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =======================================================
        RESPONSIVE DESIGN - Menú hamburguesa centrado
    ======================================================= */
@media (max-width: 768px) {
    /* Botón del menú hamburguesa */
    .menu-toggle {
        display: flex;
    }
    /* Navegación para móviles - CENTRADA */
    .barra-navegacion {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, #380101, #5f0000);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .barra-navegacion.visible {
        right: 0;
    }
    .barra-navegacion ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .barra-navegacion li {
        margin: 15px 0;
        width: 100%;
    }
    .barra-navegacion a {
        display: block;
        padding: 15px 0;
        font-size: 20px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-family: 'Montserrat', sans-serif;
    }
    .barra-navegacion a:after {
        display: none;
    }
    /* Dropdown en móviles */
    .catalogo-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(84, 6, 6, 0.7);
        margin-top: 10px;
        padding-left: 0;
        box-shadow: none;
        width: 100%;
        text-align: center;
    }
    .catalogo-dropdown.visible {
        display: block;
    }
    .catalogo-dropdown a {
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: 'Montserrat', sans-serif;
    }
    /* Header y Navegación */
    .header-principal {
        padding: 0.8rem 3%;
    }
    
    /* Video header responsive */
    .video-conteiner {
        height: 80vh;
    }
    
    .video-conteiner h1 {
        font-size: 3rem;
        letter-spacing: 3px;
        margin-bottom: 3rem;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
        bottom: 30px;
    }
    
    .arrow-down {
        width: 25px;
        height: 25px;
    }
    
    /* TARJETAS RESPONSIVE */
    .catalogo-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.8rem;
        padding: 0.5rem;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-info {
        padding: 1.5rem;
    }
    
    .card-info h3 {
        font-size: 1.3rem;
    }
    
    .siluetas-luminosas-title {
        font-size: 2rem;
    }
    
    /* Footer Responsive */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-columna {
        flex-basis: 100%;
        text-align: center;
    }
    .footer-info, .footer-enlaces ul, .footer-contacto {
        text-align: center;
    }
    .footer-social h3, .footer-contacto h3 {
        text-align: center;
    }
    .social-icons {
        display: flex;
        justify-content: center;
    }
    
    /* Mapa responsive */
    .mapa-ubicacion-footer iframe {
        height: 150px;
    }
    
    /* Lightbox responsive */
    .lightbox img {
        max-width: 95%;
        max-height: 70%;
    }
    
    .lightbox-close {
        font-size: 32px;
        top: 15px;
        right: 20px;
    }
    
    /* Sección frase responsive */
    .frase {
        height: 50vh;
    }
    
    .frase-texto {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    /* Títulos responsive */
    .siluetas-luminosas-title {
        font-size: 1.8rem;
    }
    
    /* Dimensiones responsive */
    .product-features {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Para pantallas más grandes, asegurar que el dropdown funcione con hover */
@media (min-width: 769px) {
    .catalogo-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(84, 6, 6, 0.95);
        min-width: 200px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 100;
        border-radius: 4px;
        padding: 0.5rem 0;
        display: block !important;
    }
    .dropdown:hover .catalogo-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    /* Asegurar que la navegación sea visible */
    .barra-navegacion {
        display: block !important;
    }
}

@media (max-width: 576px) {
    .header-principal {
        padding: 0.8rem 1rem;
    }
    .logo img {
        height: 35px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Video header responsive */
    .video-conteiner {
        height: 70vh;
    }
    
    .video-conteiner h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    
    .scroll-indicator {
        font-size: 0.7rem;
        bottom: 20px;
    }
    
    .arrow-down {
        width: 20px;
        height: 20px;
    }
    
    /* TARJETAS RESPONSIVE PARA MÓVILES */
    .catalogo-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .siluetas-luminosas-title {
        font-size: 1.7rem;
    }
    
    .card-info {
        padding: 1.2rem;
    }
    
    /* Footer responsive para móviles */
    .footer-columna {
        flex: 1 1 100%;
    }
    
    .footer-contacto p {
        justify-content: center;
    }
    
    /* Sección frase responsive */
    .frase {
        height: 40vh;
        margin: 2rem 0;
    }
    
    .frase-texto {
        font-size: 1.8rem;
    }
    
    /* Títulos responsive */
    .siluetas-luminosas-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
}

/* Ajustes adicionales para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .catalogo-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .card-image-wrapper {
        height: 220px;
    }
}

/* Ajustes para pantallas muy grandes */
@media (min-width: 1400px) {
    .conteiner {
        max-width: 1400px;
    }
    
    .catalogo-container {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* Optimización para rendimiento del video */
@media (max-width: 1024px) {
    .video-fondo-header {
        filter: brightness(0.7) contrast(1.2);
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =============================================
   PARTÍCULAS DE VERANO PARA HEADER
============================================= */
.summer-particles-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.summer-particles-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 50%);
    animation: particleGlow 4s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* =============================================
   RESPONSIVE: AJUSTES PARA MÓVILES
============================================= */
@media (max-width: 768px) {
    .header-principal::after {
        animation-duration: 5s;
        opacity: 0.4;
    }
    
    .summer-particles-header {
        display: none; /* Ocultar en móviles para rendimiento */
    }
    
    .barra-navegacion a {
        text-shadow: 0 0 2px rgba(255, 215, 0, 0.1);
    }
    
    .barra-navegacion a:hover {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}