@import url('https://fonts.googleapis.com/css2?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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #194994;
    --primary-blue: #1a2d5a;
    --accent-blue: #0538ea;
    --accent-light: #1be6f7;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --text-dark: #333333;
    --text-gray: #383737;
    --text-negro: #000000;
    --border-color: #e0e0e0;
}

*,::before,::after {
    box-sizing: border-box
}


.button_flotante{
    position: fixed;
    width: 60px;
    right: 40px;
    bottom: 45px;
}

.button_whatsapp{
    background: rgb(45, 183, 66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_whatsapp a i{
    font-size: 38px;
    color: var(--color-blanco);
    padding: 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
h2, h3, h4{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
p{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--white);
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-icon img {
    width: 95px;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .kt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-text .trading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: var(--accent-blue);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 18px;
    cursor: pointer;
    padding: 8px 15px;
}

/* Asegura el contenedor relativo para la búsqueda flotante */
.search-bar {
    position: relative;
}

/* Caja Flotante de Resultados */
.search-results-box {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    z-index: 1000;
    max-height: 360px;
    overflow-y: auto;
    display: none; /* Controlado dinámicamente o con la clase .active */
}

/* Muestra la caja cuando tiene datos */
.search-results-box.active {
    display: block;
}

/* Lista de Sugerencias */
.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.search-results-list li {
    border-bottom: 1px solid var(--border-color);
}

.search-results-list li:last-child {
    border-bottom: none;
}

/* Enlaces individualizados */
.search-results-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-results-list .product-name {
    line-height: 1.4;
}

.search-results-list .search-icon {
    font-size: 13px;
    color: var(--text-gray);
    transition: transform 0.2s ease, color 0.2s ease;
    margin-left: 10px;
}

/* Estado Hover Mejorado */
.search-results-list a:hover {
    background-color: var(--light-gray);
    color: var(--accent-blue);
}

.search-results-list a:hover .search-icon {
    color: var(--accent-blue);
    transform: translate(2px, -2px); /* Efecto leve de elevación en la flecha */
}

/* Estilo para Scrollbar interno pulido */
.search-results-box::-webkit-scrollbar {
    width: 6px;
}

.search-results-box::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
}

.search-results-box::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.search-results-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icons .facebook {
    background: #1877f2;
    color: white;
}

.social-icons .tiktok {
    background: #000;
    color: white;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--primary-dark);
    padding: 0 60px;
    position: relative;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: flex;
    gap: 8px;
    padding: 16px 22px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: calc(50% - 10px);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.main-nav ul li a.active {
    border-bottom: 3px solid var(--accent-light);
    width: 100%;

}

.main-nav ul li a i {
    font-size: 14px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.main-nav ul li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: var(--text-dark) !important;
    padding: 12px 10px !important;
    font-size: 13px !important;
}

.dropdown-menu a:hover {
    background: var(--light-gray) !important;
    color: var(--accent-blue) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    border: none;
    color: var(--text-negro);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
}

.mobile-nav-menu {
    display: none;
    background: var(--primary-dark);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.mobile-nav-menu.active {
    display: block;
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-nav-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav-menu ul li a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-menu .dropdown-toggle {
    cursor: pointer;
}

.mobile-nav-menu .chevron {
    transition: transform 0.3s;
}

.mobile-nav-menu .dropdown-item.active .chevron {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 30px;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    padding: 12px 20px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: var(--primary-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 610px;
}

.slide-subtitle {
    font-size: 14px;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.slide-subtitle span {
    color: var(--white);
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.slide-title .highlight {
    color: var(--accent-blue);
}

.slide-title-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.slide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1565c0;
}

.btn-catalog {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-catalog:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp i,
.btn-catalog i {
    font-size: 20px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: var(--accent-blue);
}

.slide-image-container {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slide-image-container img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}


/* ==================================== Estilos para la sección del carrusel =================================================== */
.carousel-section {
    position: relative;
    width: 100%;
    /* max-width: 1340px; */
    margin: auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Aquí no se requiere más cambios */
}

.carousel-slide {
    position: relative;
    width: 100%;
    /* Ajusta la altura que prefieras para tu banner */
    min-height: 160px;
    overflow: hidden;
}

.carousel-slide .ad-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* Efecto de desvanecimiento suave */
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.carousel-slide .ad-container.active-slide {
    opacity: 1;
    visibility: visible;
    position: relative;
    /* La activa mantiene el flujo del contenedor */
}

.ad-container img {
    width: 100%;
    background-size: cover;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px 13px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: #00000021;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: #00000044;
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: var(--color-blanco-oscuro);
    position: absolute;
    bottom: 10px;
    background: transparent;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    /* background-color: var(--color-azul-buttom-hover); */
}

.promo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    color: #fff;
    width: 80%;

}

.promo-text h2 {
    color: #FFE6BF;
    font-size: 50px;
    font-family: "PT Serif", serif;
}

.promo-text p {
    font-family: "Inter", sans-serif;
    font-size: 22px;
}



/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 60px 60px 40px;
    text-align: center;
    background: var(--white);
}

.why-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.why-section h2 span {
    color: var(--accent-blue);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    padding: 20px 10px;
    border-right: 1px solid var(--border-color);
}

.why-item:last-child {
    border-right: none;
}

.why-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item .icon svg {
    width: 50px;
    height: 50px;
}

.why-item h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-negro);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 40px 60px 60px;
    background: var(--white);
}

.categories-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
}

.categories-section h2 span {
    color: var(--accent-blue);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}

.category-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
    background: var(--white);
}

.category-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.category-card .card-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.category-card .card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-negro);
    margin-bottom: 5px;

    /* Limitar a 2 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;

    /* Limitar a 2 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-ver-mas {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-ver-mas:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 50px 20px;
    text-align: center;
}

.video-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark, #1a252f);
    margin-bottom: 8px;
}

.video-section .subtitle {
    color: var(--text-gray, #888888);
    font-size: 14px;
    margin-bottom: 30px;
}

.video-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 55px;
    box-sizing: border-box;
}

.video-carousel-container {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.video-carousel {
    display: flex;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.video-carousel:active {
    cursor: grabbing;
}

.video-carousel.dragging {
    transition: none !important;
}

/* --- TAMAÑO FIJO E UNIFORME --- */
.video-thumb {
    /* Por defecto muestra 5 elementos en pantallas grandes */
    flex: 0 0 calc((100% - (15px * 4)) / 5);
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumb:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    z-index: 10;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-blue, #0d6efd);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.video-thumb:hover .play-btn {
    background: var(--accent-blue, #0d6efd);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- NAVEGACIÓN --- */
.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 136, 229, 0.9);
    border: none;
    color: white;
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-arrow:hover {
    background: var(--accent-blue, #0d6efd);
    transform: translateY(-50%) scale(1.1);
}

.video-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) !important;
}

.video-arrow.prev { left: 5px; }
.video-arrow.next { right: 5px; }

.video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.video-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.video-dots .dot.active {
    background: var(--accent-blue, #0d6efd);
    transform: scale(1.3);
    border-radius: 6px;
    width: 20px; /* Estilo de píldora para la pestaña activa */
}

/* --- ADAPTABILIDAD RESPONSIVE --- */
@media (max-width: 1100px) {
    .video-thumb {
        flex: 0 0 calc((100% - (15px * 3)) / 4); /* 4 visibles */
    }
}

@media (max-width: 850px) {
    .video-thumb {
        flex: 0 0 calc((100% - (15px * 2)) / 3); /* 3 visibles */
    }
}

@media (max-width: 600px) {
    .video-carousel-wrapper {
        padding: 0 40px;
    }
    .video-thumb {
        flex: 0 0 calc((100% - 15px) / 2); /* 2 visibles */
        height: 160px;
    }
}

@media (max-width: 420px) {
    .video-thumb {
        flex: 0 0 100%; /* 1 visible */
        height: 180px;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 60px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 136, 229, 0.08);
    border-radius: 12px;
}

.stat-item .stat-icon svg {
    width: 35px;
    height: 35px;
}

.stat-item .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1.2;
    min-width: 120px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 50px 60px 20px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .kt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
}

.footer-logo .trading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social .ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .fb {
    background: #1877f2;
}

.footer-social .tt {
    background: #000;
    border: 1px solid #333;
}

.footer-social .wa {
    background: #25d366;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c0bdbd;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    width: 16px;
    color: var(--white);
    font-size: 14px;
}

.map-container {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #1a2d4a;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-pin i {
    font-size: 24px;
    color: #e53935;
}

.map-pin span {
    display: block;
    font-size: 10px;
    color: white;
    white-space: nowrap;
    margin-top: 2px;
}

.btn-maps {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-maps:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .top-bar {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .social-icons {
        order: 2;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .search-bar {
        order: 3;
        flex-basis: 100%;
        margin: 15px 0 0 0;
        max-width: 100%;
    }

    .main-nav {
        padding: 0;
    }

    .main-nav ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: 275px;
    }

    .slide-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-title-bottom {
        font-size: 22px;
    }

    .slide-image-container {
        display: none;
    }

    .why-section {
        padding: 40px 20px 30px;
    }

    .why-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 20px 10px;
    }

    .why-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .why-item .icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
    }

    .why-item .icon svg {
        width: 40px;
        height: 40px;
    }

    .why-item h4 {
        font-size: 11px;
    }

    .categories-section {
        padding: 30px 20px 40px;
    }

    .categories-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .category-card .card-img {
        height: 120px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .category-card p {
        font-size: 11px;
    }

    .video-section {
        padding: 40px 15px;
    }

    .video-section h2 {
        font-size: 20px;
    }

    .video-carousel-wrapper {
        padding: 0 45px;
    }

    .video-thumb {
        min-width: calc(50% - 8px);
        height: 160px;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
        gap: 12px;
    }

    .stat-item .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-item .stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .stat-item .stat-number {
        font-size: 24px;
        min-width: 80px;
    }

    .stat-item .stat-label {
        font-size: 12px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }
}

/* ===== RESPONSIVE SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-title-bottom {
        font-size: 18px;
    }

    .slide-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .slide-desc {
        font-size: 13px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-whatsapp,
    .btn-catalog {
        padding: 12px 20px;
        font-size: 13px;
        justify-content: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .why-item {
        border-bottom: 1px solid var(--border-color);
    }

    .why-item:last-child {
        border-bottom: none;
    }

    .categories-grid {
        grid-template-columns: 1fr 2fr;
    }

    .category-card {
        padding: 20px;
    }

    .category-card .card-img {
        max-height: 150px;
    }

    .video-carousel-wrapper {
        padding: 0 40px;
    }

    .video-thumb {
        min-width: calc(100% - 15px);
        height: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        width: calc(50% - 12px);
    }

    .footer-logo .kt {
        font-size: 28px;
    }
}



/* ===== PRODUCT PAGE STYLES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Banner - Más pequeño que el slider */
.product-banner {
    position: relative;
    height: 350px;
    background: var(--primary-dark);
    overflow: hidden;
}

.product-banner .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.product-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--accent-light);
    font-weight: 500;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: center;
}

.banner-text .slide-subtitle {
    font-size: 13px;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
}

.banner-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Bar */
.product-features {
    background: var(--white);
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-right: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 56, 234, 0.08);
    border-radius: 10px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.feature-text strong {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 3px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.feature-text span {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.3;
    font-family: 'poppins', sans-serif;
}

/* Products Section */
.products-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.products-wrapper {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 25px;
}

/* Sidebar Filters */
.products-sidebar {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--accent-blue);
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-negro);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 26px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.8;
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.filter-option:hover .checkmark {
    border-color: var(--accent-blue);
}

.filter-option input:checked~.checkmark {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.filter-option input:checked~.checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-text {
    flex: 1;
    font-weight: 400;
}

.option-count {
    color: var(--text-gray);
    font-size: 11px;
}

.btn-clear-filters {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-clear-filters svg {
    width: 14px;
    height: 14px;
}

.btn-clear-filters:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Products Content */
.products-content {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-content h2 {
    color: var(--primary-dark);
    text-transform: uppercase;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    font-size: 13px;
    color: var(--text-gray);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-dropdown label {
    font-size: 12px;
    color: var(--text-gray);
}

.sort-dropdown select {
    padding: 6px 30px 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    font-size: 12px;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.sort-dropdown select:focus {
    border-color: var(--accent-blue);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-blue);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.baja-rpm {
    background: #e3f2fd;
    color: #1976d2;
}

.product-badge.alta-rpm {
    background: #e8f5e9;
    color: #388e3c;
}

.product-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    /* max-height: 100%; */
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 36px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.product-specs-list {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.product-specs .spec,
.product-specs-list .spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-negro);
}

.product-specs .spec svg,
.product-specs-list .spec svg {
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.btn-details {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 5px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-details svg {
    width: 12px;
    height: 12px;
}

.btn-details:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.page-item,
.page-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.page-item:hover,
.page-next:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.page-item.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.page-dots {
    color: var(--text-gray);
    padding: 0 4px;
}

.page-next svg {
    width: 14px;
    height: 14px;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-dark);
    padding: 35px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.cta-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-whatsapp-large,
.btn-catalog-large {
    padding: 16px 25px;
    border-radius: 8px;
    text-decoration: none;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.icon-whatsappText {}

.btn-whatsapp-large {
    background: #0a9e40;
    color: var(--white);
    display: flex;
    align-items: center;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-catalog-large {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.btn-catalog-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp-large svg,
.btn-catalog-large svg {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.btn-whatsapp-large strong,
.btn-catalog-large strong {
    display: block;
    font-size: 15px;
    margin-top: 2px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item:nth-child(3n) {
        border-right: none;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-image {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: relative;
        top: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(1n) {
        border-right: 1px solid var(--border-color);
    }

    .feature-item:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

    .feature-item:nth-child(5n) {
        border-right: none;
    }

    .banner-content {
        text-align: center;
    }

    .banner-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-banner {
        height: 300px;
    }

    .banner-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        /* grid-template-columns: 1fr; */
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp-large,
    .btn-catalog-large {
        width: 100%;
        justify-content: center;
    }

    .product-features {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .banner-title {
        font-size: 24px;
    }

    .product-banner .container {
        padding: 0 20px;
    }
    .container-movil{
        padding: 0!important;
    }
    .products-grid {
        gap: 5px;
    }
    .products-content{
        padding: 25px 10px;
        text-align: center;
    }
    .product-info {
        padding: 10px;
    }
    .product-image{
        padding: 0;
    }

}



.section-container {
    position: relative;
    width: 100%;
    /* max-width: 1400px; */
    min-height: 550px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
}

/* Imagen de fondo usando etiqueta img */
.fondo-tienda {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* object-fit: contain; */
    z-index: 1;
}

/* Div superpuesto azul con degradado para que se funda con la imagen */
.overlay-panel {
    position: relative;
    z-index: 2;
    width: 65%;
    /* Cubre más de la mitad y se difumina al final */
    background: linear-gradient(90deg, var(--primary-dark) 75%, transparent 100%);
    color: var(--white);
    padding: 50px 80px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ujusteContactenos{
    justify-content: flex-start;
}
.ujusteContContact{
    min-height: 420px;
}

.breadcrumb {
    font-size: 13px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb span {
    color: var(--white);
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.sub-title {
    color: var(--accent-light);
    /* Azul brillante para resaltar */
    display: block;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Pequeña línea azul separadora */
.blue-line {
    width: 40px;
    height: 4px;
    background-color: var(--accent-blue);
    margin-bottom: 35px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.stat-text {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.stat-text strong {
    font-size: 14px;
    color: var(--white);
    display: block;
}

.vertical-separator {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.horizontal-separator {
    width: 100%;
    max-width: 600px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

.advisory-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.advisory-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .overlay-panel {
        width: 80%;
        background: linear-gradient(90deg, var(--primary-dark) 85%, transparent 100%);
        padding: 40px;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .vertical-separator {
        display: none;
    }
    .section-container{
        min-height: 345px;
    }
}

@media (max-width: 768px) {
    .overlay-panel {
        width: 100%;
        background: rgba(0, 28, 93, 0.92);
        /* Fondo más sólido en móvil */
        padding: 30px;
    }
    .section-container{
        min-height: 270px;
    }
}

/* --- CONTENEDOR DE LAS 2 SECCIONES --- */
.sections-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* --- SECCIÓN 1: ¿POR QUÉ ELEGIR... --- */
.why-choose-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.why-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.why-header .blue-bar {
    width: 40px;
    height: 3px;
    background-color: var(--accent-blue);
    margin-bottom: 25px;
}

.why-header p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-blue);
    margin: 0;
}

/* Grid de tarjetas (3 columnas x 2 filas) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 24px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 13px;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.feature-content p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--primary-blue);
    margin: 0;
}

/* --- SECCIÓN 2: MISIÓN Y VISIÓN --- */
.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mv-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.mv-icon {
    width: 60px;
    height: 60px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.img-h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.img-h3 h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.mv-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-negro);
    margin: 0 0 15px 0;
    margin-top: 8px;
}

.mv-content .blue-bar {
    width: 35px;
    height: 3px;
    background-color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-section {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 20px;
    }
    .section-container{
        min-height: 240px;
    }
}
@media (max-width: 400px) {
    .section-container {
        min-height: 150px;
    }
}

/* Contenedor de la sección */
.company-info-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Columna de texto */
.company-info-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 30px 0;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-info-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-negro);
    margin: 0 0 20px 0;
}

.company-info-text p strong {
    color: var(--text-negro);
    font-weight: 700;
}

.company-info-text p:last-child {
    margin-bottom: 0;
}

/* Columna de la imagen */
.company-info-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 380px;
    overflow: hidden;
    border-radius: 16px;
    /* Bordes redondeados sutiles */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-info-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Adaptabilidad Móvil */
@media (max-width: 868px) {
    .company-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .company-info-text h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .company-info-image-wrapper {
        height: 280px;
    }
}

/* Contenedor general */
.history-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 40px;
    box-sizing: border-box;
    text-align: center;
}

/* Título y línea inferior */
.history-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.history-title-bar {
    width: 40px;
    height: 3px;
    background-color: var(--accent-blue);
    margin: 0 auto 60px auto;
    border-radius: 2px;
}

/* Caja contenedora con borde principal */
.history-card-wrapper {
    position: relative;
    border: 2px solid var(--accent-light);
    border-radius: 16px;
    background-color: var(--white);
    padding: 40px 0 35px 0;
}

/* Grid de 4 columnas */
.history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

/* Columna individual */
.history-item {
    padding: 0 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- PUNTOS Y LÍNEAS VERTICALES --- */

/* 1. Líneas verticales divisorias (de los primeros 3 elementos) */
.history-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: -40px;
    /* Sube hasta alinearse con el borde superior de la caja */
    bottom: -35px;
    /* Baja hasta el borde inferior de la caja */
    width: 1px;
    background-color: var(--light-gray);
    /* Color #1be6f7 */
    z-index: 1;
}

/* 2. Puntos en la parte superior derecha de las 3 primeras columnas */
.history-item:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -5px;
    /* Centrado sobre la línea vertical */
    top: -45px;
    /* Ubicado justo sobre la línea horizontal superior */
    width: 10px;
    height: 10px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    z-index: 4;
}

/* Círculo azul oscuro con icono y año */
.history-circle-badge {
    position: absolute;
    top: -80px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 28, 93, 0.15);
    z-index: 3;
}

.history-circle-badge svg {
    width: 26px;
    height: 26px;
    margin-bottom: 2px;
}

.history-circle-badge span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Textos del contenido */
.history-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 25px 0 15px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.history-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }

    .history-item:not(:last-child)::after,
    .history-item:not(:last-child)::before {
        display: none;
    }

    .history-card-wrapper {
        padding-top: 60px;
    }

    .history-circle-badge {
        top: -60px;
    }
}

@media (max-width: 576px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* Contenedor general */
.sections-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* --- SECCIÓN 1: SECTORES INDUSTRIALES --- */
.sectors-section {
    text-align: center;
    margin-bottom: 60px;
}

.sectors-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sectors-title-bar {
    width: 40px;
    height: 3px;
    background-color: var(--accent-blue);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Grid de 5 tarjetas */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.sector-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.sector-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.sector-card-title {
    padding: 16px 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 0;
}

/* --- SECCIÓN 2: BANNER DE ASESORÍA / WHATSAPP --- */
.cta-banner {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-info {
    /* display: flex; */
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.cta-icon {
    width: 60px;
    height: 60px;
    color: var(--white);
    flex-shrink: 0;
}

.cta-text{
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
}

.cta-text h3 span {
    color: #cecb0b;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Botón Cotizar por WhatsApp */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #28b037;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 2;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #1c972a;
    /* color: var(--primary-dark); */
    border-color: var(--white);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Imagen de la asesora a la derecha */
.cta-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 160px;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
    opacity: 0.4;
}


/* Adaptabilidad Móvil */
@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px 20px;
    }

    .cta-image {
        display: none;
        /* Oculta la imagen en móviles para evitar solapamiento */
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MEGA MENU - CONTENEDOR PRINCIPAL
   ========================================================================== */
.nav-item-mega {
    position: static !important;
}

.nav-item-mega > .dropdown-menu.mm-container {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95vw !important;
    max-width: 1200px !important;
    background-color: var(--white, #ffffff) !important;
    border: 1px solid var(--border-color, #e5e7eb) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    z-index: 99999 !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
}

.nav-item-mega:hover > .mm-container,
.nav-item-mega > .dropdown-menu.mm-container.show {
    display: block !important;
}

/* ==========================================================================
   CONTENEDOR FLEXBOX VERTICAL CON LIMITACIÓN DE ALTURA
   ========================================================================== */
.mm-grid-wrapper {
    display: flex !important;
    flex-direction: column !important; /* Flujo de arriba hacia abajo */
    flex-wrap: wrap !important;        /* Cuando llega al límite de altura, brinca a la derecha */
    
    /* --- LÍMITE DE ALTURA (Ajusta este valor según cuántos elementos quieras por columna) --- */
    max-height: 520px !important;      /* Al llegar a esta altura, pasa a la siguiente columna */
    
    gap: 0 30px !important;             /* Espaciado entre columnas */
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   BLOQUES DE CATEGORÍA (.mm-col)
   ========================================================================== */
.mm-col {
    /* Ancho dinámico para 4 columnas fijas (25% menos el espacio del gap) */
    width: calc(30% - 22.5px) !important; 
    box-sizing: border-box !important;
    /* margin-bottom: 10px !important; */
    position: relative !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mm-cat-header-wrapper {
    display: block !important;
    padding: 0 !important;
    /* margin-bottom: 8px !important; */
    width: 100% !important;
}

/* Enlace Título Categoría Principal */
.mm-cat-link {
    display: block !important;
    text-decoration: none !important;
    color: var(--primary-blue, #0d6efd) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    width: 100% !important;
    word-break: normal !important;
    letter-spacing: 0.2px !important;
}

.mm-cat-link span {
    display: inline-block !important;
    width: 100% !important;
    color: var(--primary-dark, #1a1a1a);
}

.mm-cat-link:hover {
    color: var(--accent-blue, #0a58ca) !important;
}

/* Línea indicadora bajo el título */
.mm-title-underline {
    width: 30px !important;
    height: 3px !important;
    background-color: var(--primary-blue, #0d6efd) !important;
    /* margin-top: 6px !important; */
}

/* ==========================================================================
   SUBCATEGORÍAS
   ========================================================================== */
.mm-sub-dropdown {
    display: block !important;
    position: static !important;
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0 8px !important;
}

.mm-sub-dropdown a {
    display: flex !important;
    align-items: center !important;
    padding: 5px 10px !important;
    color: var(--text-dark, #333333) !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    width: 100% !important;
    line-height: 1.3 !important;
    transition: color 0.15s ease !important;
    /* border-bottom: 1px solid var(--border-color, #e5e7eb) !important; */
    box-sizing: border-box !important;
}

.mm-sub-dropdown a::before {
    content: none !important;
}

.mm-sub-dropdown a:hover {
    background-color: transparent !important;
    color: var(--accent-blue, #0a58ca) !important;
}

/* Icono/Flecha de Subcategoría */
.mm-arrow {
    font-size: 9px !important;
    color: var(--accent-blue, #0a58ca) !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   RESPONSIVE (TABLETS Y MÓVILES)
   ========================================================================== */
@media (max-width: 992px) {
    .mm-grid-wrapper {
        flex-direction: row !important; /* Vuelve a flujo normal por filas en móviles */
        max-height: none !important;
    }

    .mm-col {
        width: calc(50% - 15px) !important; /* 2 columnas */
    }
}

@media (max-width: 576px) {
    .mm-col {
        width: 100% !important; /* 1 columna completa */
    }
}



/* ===== VISTA DETALLE DE PRODUCTO ===== */
.product-detail-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    box-sizing: border-box;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 13px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--primary-dark);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav span {
    color: var(--text-gray);
    font-weight: 600;
}

/* Layout Principal */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

/* --- TARJETA DE GALERÍA DE IMÁGENES --- */
.product-gallery-card {
    background-color: var(--white);
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    padding: 20px 20px 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 310px;
    width: 100%;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 5;
}

.gallery-arrow:hover {
    background-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev-img { left: 0px; }
.gallery-arrow.next-img { right: 0px; }

/* Miniaturas Compactas e Integradas */
.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.thumb-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3px;
    background-color: var(--white);
    cursor: pointer;
    height: 52px; /* Tamaño compacto ajustado */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.thumb-item.active {
    border: 2px solid var(--accent-blue);
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- INFORMACIÓN TÉCNICA --- */
.product-info {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.category-badge {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.product-sku {
    font-size: 13.5px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0 0 15px 0;
}

.product-sku span {
    color: var(--accent-blue);
}

/* Tabla de Especificaciones Compacta */
.specs-table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #edf2f7;
    margin-bottom: 25px;
    width: 100%;
}
.specs-table-wrapper .specs-table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #edf2f7;
    margin-bottom: 25px;
    width: 100%;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6.5px 0; /* Padding reducido para menor espaciado */
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.spec-row .spec-label{
    background-color: transparent;
}
.spec-row .spec-value{
    width: 50%;
}

.spec-label {
    font-weight: 600;
    color: var(--text-negro);
}

.spec-value {
    color: #444444;
    font-weight: 500;
}

/* Botones de Acción */
.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #00c853;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #00a844;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    font-weight: 700;
    font-size: 11.5px;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 850px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 500px) {
    .action-buttons {
        flex-direction: column;
    }
    .btn-whatsapp, .btn-outline {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.product-description-section {
    max-width: 1150px;
    margin: 30px auto;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 35px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* ===== COLUMNA IZQUIERDA: DESCRIPCIÓN (~38%) ===== */
.description-column {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
}

/* Pestaña fija sin interacción */
.tab-header-single {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
    padding-bottom: 8px;
}

.active-tab-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 9px;
    letter-spacing: 0.5px;
}

.active-tab-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 14px 0;
}

.description-body p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.55;
    margin: 0 0 12px 0;
}

/* ===== COLUMNA DERECHA: ESPECIFICACIONES (~62%) ===== */
.specs-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.specs-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 16px 0;
}

/* Borde exterior y estructura tipo tabla limpia */
.specs-table-wrapper {
    border: 1px solid #dce4ec;
    border-radius: 6px;
    overflow: hidden;
}

.specs-table {
    border-collapse: collapse;
    background-color: var(--white);
}

.specs-table td {
    padding: 10px 14px;
    font-size: 12.5px;
    border-bottom: 1px solid #e8eef5;
    border-right: 1px solid #e8eef5;
    vertical-align: middle;
}

/* Eliminación del último borde a la derecha */
.specs-table tr td:last-child {
    border-right: none;
}

/* Eliminación del último borde en la fila inferior */
.specs-table tr:last-child td {
    border-bottom: none;
}

/* Celdas de etiquetas (fondo sutilmente azulado/gris) */
.spec-label {
    font-weight: 700;
    color: #2d3748;
    background-color: #f4f7fb;
}

/* Celdas de valores */
.spec-value {
    width: 28%;
    color: #4a5568;
    font-weight: 500;
    background-color: var(--white);
}

/* ===== ADAPTABILIDAD RESPONSIVE ===== */
@media (max-width: 900px) {
    .product-description-section {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .description-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .specs-table td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
        border-right: none;
    }
    
    .spec-label {
        background-color: #ebf1f7;
        font-weight: 800;
        padding-bottom: 4px;
        border-bottom: none;
    }

    .spec-value {
        padding-top: 4px;
        padding-bottom: 10px;
    }
}

.contact-section-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 15px;
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    box-sizing: border-box;
}

/* Layout horizontal en 3 columnas de igual ancho */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.contact-col {
    display: flex;
    flex-direction: column;
}

/* Titulares con línea inferior */
.col-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 8px;
    font-family: "Montserrat", sans-serif;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

/* ===== COLUMNA 1: COBERTURA Y DATOS ===== */
.promo-image-card {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    background-color: var(--primary-blue);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenedor horizontal de 3 datos */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.info-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.9;
    font-weight: 500;
}

.info-text .fa-whatsapp {
    color: #25d366;
    margin-left: 2px;
}

.email-text {
    word-break: break-all;
    font-size: 11px !important;
}

.schedule-time {
    color: var(--text-dark) !important;
    font-weight: 700 !important;
}

/* ===== COLUMNA 2: FORMULARIO ===== */
.contact-form {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    height: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: var(--primary-dark);
    font-size: 13px;
    pointer-events: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.input-group textarea {
    resize: none;
    padding-top: 10px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-blue);
}

.btn-submit {
    background-color: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    margin-top: 5px;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.security-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 2px;
}

.security-note i {
    color: var(--primary-dark);
}

/* ===== COLUMNA 3: MAPA ===== */
.map-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-directions {
    border: 1.5px solid var(--accent-blue);
    color: var(--accent-blue);
    background-color: var(--white);
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-directions:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-info-cards,
    .form-row {
        grid-template-columns: 1fr;
    }
}

.hero-header {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    /* Sin object-fit: cover */
    display: block;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem 1.5rem;
}

/* Breadcrumbs */
.nav-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-divider {
    color: var(--accent-light);
}

.nav-active {
    color: var(--accent-light);
    font-weight: 600;
}

/* Contenido */
.hero-body {
    max-width: 650px;
}

.hero-tagline {
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-heading {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-heading .text-white {
    color: var(--white);
}

.hero-heading .text-cyan {
    color: var(--accent-light);
}

.hero-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}


.products-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.category-item {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    flex-grow: 1;
}

.radio-icon {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--accent-blue);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.category-title, 
.subcategory-title {
    color: var(--text-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
            font-family: "Montserrat", sans-serif;
    font-family: "Poppins", sans-serif;
}

.accordion-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.accordion-toggle svg {
    width: 16px;
    height: 16px;
}

.subcategories-list {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.subcategory-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.subcategory-item:last-child {
    border-bottom: none;
}

/* Oculto por defecto */
.subcategories-list {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

/* Se muestra solo si tiene la clase .open */
.category-item.open .subcategories-list {
    display: flex;
}

/* Transición para que la flecha apunte hacia abajo o hacia arriba */
.accordion-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    transform: rotate(180deg); /* Flecha abajo por defecto */
}

/* Rotación de flecha cuando está abierto */
.category-item.open .accordion-toggle svg {
    transform: rotate(0deg); /* Flecha arriba */
}

/* Contenedor principal con Flexbox */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center; /* Centra las tarjetas de la última fila si quedan 2 o 3 */
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Tarjeta de categoría (Mantiene tamaño fijo, NO se estira) */
.category-card {
    /* 
       flex-grow: 0 (Evita que las tarjetas se estiren en filas incompletas)
       flex-shrink: 0 (Mantiene el tamaño constante)
       flex-basis: calc(20% - 13px) (5 tarjetas fijas por fila en escritorio)
    */
    flex: 0 0 calc(25% - 13px); 
    min-width: 210px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

/* Contenedor de la imagen */
.category-img-container {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

/* Textos e información */
.category-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-negro);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.category-count {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

/* Botón/Enlace VER PRODUCTOS */
.category-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.category-card:hover .category-link {
    color: var(--primary-dark);
}

.category-link .arrow {
    transition: transform 0.2s ease;
}

.category-card:hover .category-link .arrow {
    transform: translateX(4px);
}

/* Media Queries (Manteniendo flex: 0 0 para conservar el tamaño exacto sin deformar) */
@media (max-width: 1200px) {
    .category-card {
        flex: 0 0 calc(25% - 12px); /* 4 tarjetas por fila */
    }
}

@media (max-width: 992px) {
    .category-card {
        flex: 0 0 calc(33.333% - 11px); /* 3 tarjetas por fila */
    }
}

@media (max-width: 640px) {
    .category-card {
        flex: 0 0 calc(50% - 8px); /* 2 tarjetas por fila */
    }
}

@media (max-width: 400px) {
    .category-card {
        flex: 0 0 100%; /* 1 tarjeta por fila en móviles */
    }
}

/* ================= CSS DEL MODAL ================= */
.open-modal-btn {
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.pdf-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 100000;
  justify-content: center;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 100001;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: scale(1.2);
}

.visor-modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================================================= */

.pdfv-container {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}

.pdfv-flipbook {
  width: 100%;
  max-width: 800px;
  max-height: 100vh;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.pdfv-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.pdfv-page-slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pdfv-page-slide::-webkit-scrollbar {
  display: none;
}

.pdfv-page-slide canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.pdfv-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 100;
}

.pdfv-zoom-btn {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.pdfv-zoom-btn:hover {
  background: #555;
  transform: scale(1.1);
}

.pdfv-zoom-btn:active {
  transform: scale(0.95);
}

/* Botones flotantes */
.pdfv-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 100;
  color: #333;
}

.pdfv-nav-btn:hover {
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.05);
  color: #000;
}

.pdfv-left {
  left: 15px;
}

.pdfv-right {
  right: 30px;
}

@media (max-width: 768px) {
  .pdfv-left {
    left: -10px;
  }

  .pdfv-right {
    right: -10px;
  }
}

.pdfv-page-indicator {
  font-size: 14px;
  padding: 8px 12px;
  background-color: #eaeaea;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 60px;
  text-align: center;
  user-select: none;
}

.pdfv-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pdfv-box-loader {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.pdfv-box {
  width: 14px;
  height: 14px;
  background-color: #3498db;
  animation: pulseBox 1s infinite ease-in-out;
}

.pdfv-box:nth-child(2) {
  animation-delay: 0.2s;
}

.pdfv-box:nth-child(3) {
  animation-delay: 0.4s;
}

.pdfv-box:nth-child(4) {
  animation-delay: 0.6s;
}


/* Media query para ocultar/mostrar según pantalla */
@media (min-width: 769px) {
    .mobile-offcanvas,
    .mobile-nav-overlay,
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Overlay Oscuro */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Contenedor Principal Off-Canvas */
    .mobile-offcanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--white);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
    }

    .mobile-offcanvas.active {
        transform: translateX(0);
    }

    /* Encabezado */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background-color: var(--primary-dark);
        color: var(--white);
    }

    .mobile-menu-title {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
    }

    /* Contenedor de Paneles */
    .mobile-menu-wrapper {
        position: relative;
        flex: 1;
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* Estructura de Paneles Deslizantes */
    .mobile-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        transition: transform 0.3s ease-in-out;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .panel-active {
        transform: translateX(0);
    }

    .panel-prev {
        transform: translateX(-100%);
    }

    .panel-next {
        transform: translateX(100%);
    }

    /* Botón Volver */
    .btn-back-panel {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        background-color: var(--light-gray);
        border: none;
        border-bottom: 1px solid var(--border-color);
        color: var(--primary-dark);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        text-align: left;
    }

    .panel-subtitle {
        padding: 12px 20px 4px 20px;
        font-size: 12px;
        font-weight: 700;
        color: var(--accent-blue);
        text-transform: uppercase;
    }

    /* Listas y Enlaces */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-list a,
    .mobile-link-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        background: none;
        border: none;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        box-sizing: border-box;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        gap: 10px; /* <--- Agregado para separar el icono del texto */
    }

/* Forzar alineación a la izquierda en los enlaces simples */
    .mobile-nav-list a {
        justify-content: flex-start;
    }

    .mobile-nav-list a i:not(.arrow),
    .mobile-link-trigger i:not(.arrow) {
        width: 20px; /* Tamaño fijo para alineación perfecta */
        text-align: center;
        color: var(--primary-dark);
    }

    .mobile-link-trigger .arrow {
        font-size: 12px;
        color: var(--text-gray);
    }

    .mobile-nav-list a:hover,
    .mobile-link-trigger:hover {
        background-color: var(--light-gray);
        color: var(--accent-blue);
    }

    .link-all-category {
        font-weight: 700 !important;
        color: var(--accent-blue) !important;
        background-color: var(--light-gray);
    }
}

/* Header de título para el panel de categorías */
.panel-category-header {
    padding: 16px 20px 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel-category-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Segunda palabra en azul principal */
.panel-category-title span {
    color: var(--primary-dark);
}

/* Línea cian/azul claro inferior */
.panel-title-underline {
    width: 35px;
    height: 3px;
    background-color: var(--accent-light);
    margin-top: 6px;
    border-radius: 2px;
}