body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* 🔑 Evita desbordamiento horizontal */
    width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1d2230, #1e2633, #27374e, #191919);
    background-size: 200% 200%;
    background-attachment: fixed;
    animation: boldShift 10s ease-in-out infinite;
}

@keyframes boldShift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;

}



a:hover,
a:active {
    color: #ffffff;
}


.white {
    color: #fff
}

h1 {
    color: white;
}










/* ==============================
   LISTAS DE BUSCADORES
============================== */
.list-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.list-item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.list-item .info a {
    color: #212121;
    text-decoration: none;
    margin-bottom: 6px;

}

.list-item .info a:hover {
    color: #000;
}

.vip {
    background: linear-gradient(135deg, #ce9400, #2c2313);
    background-size: 200% 200%;
    animation: vipFlow 12s ease infinite;

    border-left: 6px solid #8a6a2f;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--color-gold-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 15px;

    display: flex;
    align-items: flex-start;
    gap: 16px;
}

@keyframes vipFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Logo */
.vip img.thumbbuscadores {
    width: 80px;
    /* Ajusta según necesidad */
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    /* Evita que se achique */
}

/* Info (nombre + redes) */
.vip .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    /* Ocupa todo el espacio restante */

}

.vip .info a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: bold;
    padding: 2px 0;
    line-height: 1.2;
}

.vip .info a:hover {
    color: #0097a7;
}

/* Redes sociales */
.vip .redes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.vip .redes a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.vip .redes a:hover {
    color: #00bcd4;
}

.base {
    background: linear-gradient(135deg, #12313a, #172a38);
    border-left: 6px solid #00bcd4;
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 14px rgba(0, 188, 212, 0.16);
}

.base .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.base .info a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: bold;
    padding: 2px 0;
    line-height: 1.2;
}

.base .info a:hover {
    color: #4fe7f3;
}

.base .redes a {
    color: #39d8e8;
}

.base .redes a:hover {
    color: #ffffff;
}

.gratis {
    border-bottom: 1px solid #e0e0e0;
}

.gratis .info a {
    color: #ffffff;
}

.thumbbuscadores {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.redes {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.redes a {
    align-items: center;
    color: #0097a7;
    display: inline-flex;
    font-size: 0.92rem;
    gap: 6px;
    line-height: 1.25;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.2s ease;
}

.redes a i {
    flex-shrink: 0;
    font-size: 20px;
}

.redes a:hover {
    color: #00bcd4;
}

.search-meta {
    color: #d9e4f2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    line-height: 1.35;
    margin-top: 6px;
}

.search-meta i {
    color: #00bcd4;
    flex-shrink: 0;
}

.base .search-meta {
    color: #eaf7fb;
}

.gratis .search-meta {
    color: #d9e4f2;
}

.categoria-principal {
    background: linear-gradient(90deg, #3464b6, #000000);
    background-size: 200% 200%;
    animation: categoriaFlow 8s ease infinite;

    color: #fff;
    font-weight: bold;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

@keyframes categoriaFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




.categoria-principal:hover {
    transform: scale(1.02);
}

.categoria-principal a {
    color: #fff;
    text-decoration: none;
    padding: 2px 0;
    line-height: 1.2;
}

.categoria-principal a:hover {
    text-decoration: underline;
}

























































/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0a0c12, #141a24, #141c28, #000000);
    background-size: 200% 200%;
    background-size: 200% 200%;
    background-attachment: fixed;
    animation: boldShift 10s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

@keyframes boldShift {

    0%,
    100% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }
}

.header .logo img {
    height: 60px;
    width: auto;
    margin-top: 10px;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #00d2d3;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav ul li a:hover::after {
    transform: scaleX(1);
}

.nav ul li a:hover {
    color: #00d2d3;
}

.header .nav ul li a.active {
    font-weight: bold;
    /* Hacer el texto mÃ¡s grueso */
    color: #01b4b5;
    /* Cambiar el color del texto */
}

.header .nav ul li a i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.white {
    color: #fff
}

/* Content */
.content {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    width: min(90%, 1500px);
}

.content h2 {
    margin-bottom: 20px;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.carouseloculto {
    visibility: hidden;
    /* Oculta el carrusel hasta que se aplique el índice aleatorio */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    border-radius: 10px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Thumbnail Carousel */
.thumbnail-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.thumbnail-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.thumbnail-item {
    flex: 0 0 auto;
    width: 25%;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    /* Necesario para posicionar las etiquetas */
}

.thumbnail-item img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 0 2px 2px rgba(0, 0, 0, 0.5);
}

.thumbnail-item img:hover {
    transform: scale(1.05);
}

/* Estilo para el contenedor de etiquetas en fila */
.thumbnail-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: row;
    /* Etiquetas alineadas en fila */
    gap: 5px;
    /* Espacio entre las etiquetas */
    flex-wrap: wrap;
    /* Permite que las etiquetas pasen a la siguiente lÃ­nea si no caben en una fila */
}

/* Estilo para las etiquetas individuales */
.thumbnail-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.85rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-brand-logos {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.footer-municipio-logo {
    width: min(220px, 100%);
    max-height: 78px;
    object-fit: contain;
    opacity: 0.92;
}


/* Footer */
.footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(1, 209, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #03070c, #050910 52%, #06151b);
    color: var(--color-footer-text);
    padding: clamp(44px, 5vw, 72px) clamp(18px, 4vw, 42px);
    border-top: 1px solid rgba(1, 209, 255, 0.42);
}

.footer-container {
    align-items: start;
    display: grid;
    gap: clamp(28px, 5vw, 72px);
    grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
    max-width: 1120px;
    margin: 0 auto;
}

.footer-info,
.footer-contact,
.footer-social {
    min-width: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-logos {
    align-items: flex-start;
    display: grid;
    gap: 18px;
}

.footer-logo {
    display: block;
    margin-top: 0;
    max-width: 230px;
    width: min(230px, 100%);
}

.footer-municipio-logo {
    display: block;
    max-width: 245px;
    width: min(245px, 100%);
}

.footer h3,
.footer h4 {
    margin: 0 0 18px;
}

.footer-info h3 {
    color: var(--color-accent);
    font-size: 24px;
}

.footer-contact h4,
.footer-social h4 {
    color: #00d2d3;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.45;
    margin: 20px 0 0;
}

.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a,
.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-contact a i,
.footer-social a i {
    color: #00d2d3;
    flex: 0 0 auto;
    font-size: 19px;
    width: 22px;
}

.footer-contact a:hover,
.footer-social a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Call-to-Action */
.call-to-action {
    background-color: #00d2d3;
    /* Color de fondo con el color primario */
    color: #000;
    /* Texto en blanco */
    padding: 40px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-number {
    font-size: 200px;
    /* TamaÃ±o gigante para el nÃºmero */
    font-weight: bold;
    color: #000;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    /* Fondo blanco para el botÃ³n */
    color: #000000;
    /* Texto del botÃ³n en color primario */
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    /* Fondo primario al pasar el ratÃ³n */
    color: #01b4b5;
    /* Texto blanco al pasar el ratÃ³n */
}






/* Icon Carousel del HOMEPAGE*/
.icon-carousel-wrapper2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    /* Ajusta segÃºn el diseÃ±o */
    padding: 20px 0;
    /* Espaciado superior e inferior para el carrusel */
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
    /* Centra el contenedor del carrusel horizontalmente */
}

.icon-carousel2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    /* Centra verticalmente los Ã­conos */
    justify-content: center;
    /* Centra horizontalmente los Ã­conos dentro del contenedor */
}


.icon-item2 {
    flex: 0 0 auto;
    width: 200px;
    /* Ajusta el ancho segÃºn el diseÃ±o */
    height: 200px;
    /* Ajusta la altura segÃºn el diseÃ±o */
    border-radius: 50%;
    /* Hace el elemento circular */
    text-align: center;
    padding: 20px;
    /* Ajusta el padding para centrar el Ã­cono */
    background-color: #333;
    /* Ajusta el color de fondo segÃºn el diseÃ±o */
    margin-right: 30px;
    /* Espacio entre cÃ­rculos */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.icon-item2 i {
    font-size: 48px;
    color: #fff;
    /* Color del Ã­cono */
    margin-bottom: 10px;
}

.icon-item2 p {
    color: #fff;
    /* Color del texto */
    font-size: 20px;
}

.icon-item2:hover {
    transform: scale(1.1);
}













/* Icon Carousel */
.icon-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    /* Ajusta segÃºn el diseÃ±o */
    padding: 10px 0;
    /* Espaciado superior e inferior para el carrusel */
    margin-bottom: 50px;
}

.icon-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    /* Centra verticalmente los Ã­conos */
}

.icon-item {
    flex: 0 0 auto;
    width: 220px;
    /* Ajusta el ancho segÃºn el diseÃ±o */
    height: 220px;
    /* Ajusta la altura segÃºn el diseÃ±o */
    border-radius: 50%;
    /* Hace el elemento circular */
    text-align: center;
    padding: 20px;
    /* Ajusta el padding para centrar el Ã­cono */
    background-color: #333;
    /* Ajusta el color de fondo segÃºn el diseÃ±o */
    margin-right: 30px;
    /* Espacio entre cÃ­rculos */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.icon-item i {
    font-size: 48px;
    color: #fff;
    /* Color del Ã­cono */
    margin-bottom: 10px;
}

.icon-item p {
    color: #fff;
    /* Color del texto */
    font-size: 20px;
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-carousel-prev,
.icon-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.icon-carousel-prev {
    left: 10px;
}

.icon-carousel-next {
    right: 10px;
}



/* SIN DATOS*/
.sindatos {
    width: 1000px;
}
























/* Media Queries */


@media (max-width: 1200px) {


    .header .nav ul li {
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info,
    .footer-links,
    .footer-contact,
    .footer-social {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .icon-item2 {
        width: 150px;
        /* Reduce el ancho para pantallas más pequeñas */
        height: 150px;
        /* Reduce la altura proporcionalmente */
        padding: 15px;
        /* Ajusta el padding para mantener el ícono centrado */
        margin-right: 20px;
        /* Reduce el espacio entre los círculos */
    }

    .icon-item2 i {
        font-size: 36px;
        /* Reduce el tamaño del ícono */
    }

    .icon-item2 p {
        font-size: 16px;
        /* Reduce el tamaño del texto */
    }
}









/* Tablets */
@media (max-width: 768px) {
    .header .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header .nav ul li {
        margin: 10px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info,
    .footer-links,
    .footer-contact,
    .footer-social {
        margin-right: 0;
        margin-bottom: 20px;
    }

}

/* Mobile */
@media (max-width: 480px) {
    .thumbnail-item {
        min-width: 25%;
        /* 100% / 2 = 50% for 2 items visible */
    }


    .carousel-prev,
    .carousel-next {

        font-size: 1.5rem;

    }

    .content {
        padding: 10px 0;
        width: calc(100% - 32px);
    }











    .header .logo img {
        height: 40px;
        /* Ajusta el tamaÃ±o de la imagen del logo */
    }


    .footer-info h3,
    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 16px;
    }

    .footer-info p,
    .footer-links a,
    .footer-contact p,
    .footer-social a {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-number {
        font-size: 120px;
        /* Ajusta el tamaÃ±o segÃºn sea necesario */
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
    }
}



















.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    /* TamaÃ±o del icono */
    cursor: pointer;
    color: #000;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        /* Fondo semitransparente */
        z-index: 9999;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 20px;
        /* Espacio superior para el botÃ³n de cierre */
    }

    .nav ul.nav-open {
        display: flex;
    }

    .nav ul li {
        margin: 20px 0;
        /* Espaciado entre enlaces */
    }

    .nav ul li a {
        font-size: 1.5rem;
        /* TamaÃ±o de fuente mÃ¡s grande */
        color: #01d1ff;
        /* Color de los enlaces */
        text-decoration: none;
        transition: color 0.3s;
    }

    .nav ul li a:hover {
        color: #fff;
        /* Color al pasar el ratÃ³n */
    }

    .nav-toggle {
        display: block;
        color: #000;
        /* Color del icono de hamburguesa */
    }

    .nav-toggle i {
        font-size: 2rem;
        /* Aumentar el tamaÃ±o del icono */
        transition: color 0.3s;
        /* TransiciÃ³n para el color */
        margin-left: 100px;
    }

    .nav ul li.close-nav {
        display: block;
        /* Mostrar el botÃ³n de cierre */
        position: absolute;
        top: 20px;
        /* Espacio desde la parte superior */
        right: 20px;
        /* Espacio desde la derecha */
        cursor: pointer;
        color: #fff;
        /* Color de la cruz */
        font-size: 2rem;
        /* TamaÃ±o del icono */
        z-index: 10000;
        /* Asegurarse de que estÃ© encima de otros elementos */
    }
}

@media (min-width: 769px) {
    .nav ul li.close-nav {
        display: none;
        /* Ocultar el botÃ³n de cierre en pantallas grandes */
    }
}


















































/* Ajusta el tamaÃ±o y la disposiciÃ³n de la secciÃ³n de precios */
.pricing-section {
    padding: 6rem 2rem;
    /* Aumenta el padding para dar mÃ¡s espacio */
}

.pricing-container {
    max-width: 1400px;
    /* Aumenta el ancho mÃ¡ximo del contenedor */
    margin: 0 auto;
    text-align: center;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Muestra cuatro tarjetas por fila */
    gap: 3rem;
    /* Espacio entre las tarjetas */
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    /* Aumenta el radio del borde para bordes mÃ¡s redondeados */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Sombra mÃ¡s profunda */
    padding: 3rem;
    /* Aumenta el padding interno de las tarjetas */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Alinea el texto y los Ã­conos al centro */
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /* Aumenta la altura del borde superior */
    transition: background 0.3s ease;
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, #00d2d3, #01b4b5);
}

.pricing-card:hover {
    transform: translateY(-12px);
    /* Aumenta el desplazamiento en hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    /* Sombra mÃ¡s profunda en hover */
}

.pricing-card h3 {
    margin-top: 0;
    font-size: 2rem;
    /* Aumenta el tamaÃ±o del texto del tÃ­tulo */
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 4rem;
    /* Aumenta el tamaÃ±o del precio */
    font-weight: bold;
    color: #01b4b5;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card li {
    margin: 0.5rem 0;
    /* Aumenta el espacio entre los Ã­tems de la lista */
    font-size: 1.1rem;
    /* Aumenta el tamaÃ±o del texto de los Ã­tems */
    color: #666;
    background-color: #e9e9e9;
    height: 65px;
    text-align: center;
    display: flex;
    /* Utiliza flexbox para centrar el contenido */
    align-items: center;
    /* Alinea verticalmente el contenido */
    justify-content: center;
    /* Alinea horizontalmente el contenido */
}

.pricing-card li.new-item::before {
    content: '+';
    /* SÃ­mbolo de mÃ¡s */
    display: flex;
    /* Mantiene el sÃ­mbolo dentro del cuadrado */
    align-items: center;
    /* Centra verticalmente el sÃ­mbolo */
    justify-content: center;
    /* Centra horizontalmente el sÃ­mbolo */
    position: absolute;
    /* Posiciona el sÃ­mbolo relativo al li */
    left: 10px;
    /* Espacio desde el borde izquierdo */
    width: 30px;
    /* Ancho del cuadrado pequeÃ±o */
    height: 30px;
    /* Altura del cuadrado pequeÃ±o */
    background-color: #01b4b5;
    /* Fondo del cuadrado */
    color: white;
    /* Color del sÃ­mbolo */
    border-radius: 4px;
    /* Bordes ligeramente redondeados */
    font-weight: bold;
    /* Asegura que el sÃ­mbolo sea visible */
    font-size: 1rem;
    /* Ajusta el tamaÃ±o del sÃ­mbolo */
}

.cta-button2 {
    display: inline-block;
    padding: 1rem 2rem;
    /* Aumenta el padding del botÃ³n */
    font-size: 1.2rem;
    /* Aumenta el tamaÃ±o del texto del botÃ³n */
    font-weight: bold;
    color: #ffffff;
    background-color: #01b4b5;
    border-radius: 8px;
    /* Aumenta el radio del borde del botÃ³n */
    text-decoration: none;
    margin-top: 1.5rem;
    /* Aumenta el margen superior del botÃ³n */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button2:hover {
    background-color: #00d2d3;
    transform: scale(1.1);
    /* Aumenta el tamaÃ±o del botÃ³n en hover */
}

.pricing-icon {
    font-size: 3rem;
    color: #01b4b5;
    margin-bottom: 1rem;
}






























/* Estilos del modal */
.modal {
    display: none;
    /* Ocultar el modal por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* Fondo semi-transparente */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* Centrando el modal vertical y horizontalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Ancho del modal */
    max-width: 600px;
    /* Ancho mÃ¡ximo del modal */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Sombra del modal */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo del contenido del modal */
.modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.modal-content p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.modal-content i {
    color: #01d1ff;
    /* Color del icono */
    margin-right: 0.5rem;
}











/* Ajustes generales */
.pricing-section {
    padding: 2rem 1rem;
    /* Reducido padding en mÃ³viles */
}

.pricing-container {
    max-width: 90%;
    /* Asegura que la secciÃ³n use todo el ancho disponible */
    margin: 0 auto;
    text-align: center;
}

.pricing-table {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Ajusta las columnas en pantallas pequeÃ±as */
}











/* Estilos para dispositivos mÃ³viles */
@media (max-width: 767px) {


    /* Icon Carousel del HOMEPAGE*/
    .icon-carousel-wrapper2 {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
        /* Ajusta segÃºn el diseÃ±o */
        padding: 20px 0;
        /* Espaciado superior e inferior para el carrusel */
        margin-bottom: -20px;
        display: flex;
        justify-content: center;
        /* Centra el contenedor del carrusel horizontalmente */
    }

    .icon-carousel2 {
        display: flex;
        transition: transform 0.5s ease-in-out;
        align-items: center;
        /* Centra verticalmente los Ã­conos */
        justify-content: center;
        /* Centra horizontalmente los Ã­conos dentro del contenedor */
    }


    .icon-item2 {
        flex: 0 0 auto;
        width: 50px;
        /* Ajusta el ancho segÃºn el diseÃ±o */
        height: 50px;
        /* Ajusta la altura segÃºn el diseÃ±o */
        border-radius: 50%;
        /* Hace el elemento circular */
        text-align: center;
        padding: 20px;
        /* Ajusta el padding para centrar el Ã­cono */
        background-color: #333;
        /* Ajusta el color de fondo segÃºn el diseÃ±o */
        margin-right: 10px;
        /* Espacio entre cÃ­rculos */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
    }

    .icon-item2 i {
        font-size: 28px;
        color: #fff;
        /* Color del Ã­cono */
        margin-bottom: 0px;
    }

    .icon-item2 p {
        color: #fff;
        /* Color del texto */
        font-size: 10px;
    }

    .icon-item2:hover {
        transform: scale(1.1);
    }






    /* Icon Carousel MOVILES*/
    .icon-carousel-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-top: 0px;
        /* Ajusta segÃºn el diseÃ±o */
        padding: 0px 0;
        /* Espaciado superior e inferior para el carrusel */
        margin-bottom: 20px;

    }

    .icon-carousel {
        display: flex;
        transition: transform 0.5s ease-in-out;
        align-items: center;
        /* Centra verticalmente los Ã­conos */
    }

    .icon-item {
        width: 50px;
        /* Ajusta el tamaÃ±o segÃºn el diseÃ±o */
        height: 50px;
        /* Ajusta el tamaÃ±o segÃºn el diseÃ±o */
        margin-right: 5px;
    }

    .icon-item i {
        font-size: 25px;
        /* Ajusta el tamaÃ±o del Ã­cono */
        margin-bottom: -5px;
    }

    .icon-item p {
        font-size: 10px;
        /* Ajusta el tamaÃ±o del texto */
    }


    .icon-item:hover {
        transform: scale(1.1);
    }

    .icon-carousel-prev,
    .icon-carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
    }

    .icon-carousel-prev {
        left: 10px;
    }

    .icon-carousel-next {
        right: 10px;
    }





}









/* Pantallas medianas (tablets en orientación vertical y horizontal) */
@media (max-width: 768px) {
    .general-item {
        padding: 20px;
        flex-direction: column;
    }

    .general-logo {
        flex: 0 0 100%;
        height: 180px;
        margin-bottom: 20px;
    }

    .general-name {
        font-size: 28px;
        text-align: center;
    }

    .general-contact {
        font-size: 22px;
        justify-content: center;
        gap: 20px;
    }

    .general-contact i {
        font-size: 32px;
    }
}

/* Pantallas grandes (notebooks y pantallas mayores a 1024px) */
@media (min-width: 1024px) {
    .general-item {
        padding: 30px;
        flex-direction: column;
    }

    .general-logo {
        max-height: 200px;
    }





    .general-name {
        font-size: 30px;
        margin: 20px;
    }

    .general-contact {
        font-size: 24px;
    }

    .general-contact i {
        font-size: 34px;
    }
}

/* Pantallas extra grandes (iPads Pro y monitores grandes) */
@media (min-width: 1440px) {
    .general-item {
        padding: 40px;
        flex-direction: row;
    }

    .general-logo {
        flex: 0 0 300px;
        height: 200px;
    }

    .general-name {
        font-size: 36px;
    }

    .general-contact {
        font-size: 26px;
        gap: 30px;
    }

    .general-contact i {
        font-size: 40px;
    }
}













/* Media query para pantallas de hasta 1280px de ancho (Nest Hub Max y dispositivos similares) */
@media (max-width: 1280px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
        /* Muestra dos cards por fila */
        gap: 2rem;
        /* Espacio entre las cards */
    }

    .pricing-card {
        padding: 2.5rem 2rem;
        /* Ajusta el padding interno de las tarjetas */
        border-radius: 10px;
        /* Ajusta el radio del borde */
    }

    .nav ul {
        flex-direction: row;
        /* Ajusta la dirección del menú a vertical */
        align-items: center;
        /* Alinea los items en el centro */
    }

    .nav ul li {
        margin: 10px 0;
        /* Espaciado entre elementos */
    }

    .nav ul li a {
        font-size: 0.9rem;
        /* Reduce el tamaño de la fuente en pantallas más pequeñas */
        margin-right: 15px;
    }

    .nav ul li a i {
        font-size: 1.1rem;
        /* Ajusta el tamaño de los íconos en pantallas pequeñas */
    }
}

/* Media query para pantallas de hasta 1024px de ancho (Nest Hub y dispositivos similares) */
@media (max-width: 1024px) {
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
        /* Mantiene dos cards por fila */
        gap: 2rem;
        /* Espacio entre las cards */
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        /* Reduce el padding interno */
    }




}

/* Media query para pantallas de hasta 800px de ancho (Nest Hub Max en orientaciÃ³n vertical o pantallas mÃ¡s pequeÃ±as) */
@media (max-width: 800px) {
    .pricing-table {
        grid-template-columns: 1fr;
        /* Muestra una card por fila */
        gap: 1.5rem;
        /* Ajusta el espacio entre las cards */
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        /* Reduce aÃºn mÃ¡s el padding interno */
    }
}

/* Media query para pantallas de hasta 600px de ancho (Nest Hub en orientaciÃ³n vertical) */
@media (max-width: 600px) {
    .pricing-table {
        grid-template-columns: 1fr;
        /* Muestra una card por fila */
        gap: 1.5rem;
        /* Mantiene el espacio entre las cards */
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        /* Reduce el padding interno */
    }
}

/* Estilos responsivos para dispositivos mÃ³viles */
@media (max-width: 768px) {
    .thumbnail-labels {
        top: 5px;
        /* Ajusta la posiciÃ³n para pantallas pequeÃ±as */
        left: 5px;
        /* Espaciado menor para mÃ³viles */
        gap: 3px;
        /* Espacio mÃ¡s pequeÃ±o entre las etiquetas */
    }

    .thumbnail-label {
        padding: 3px 7px;
        /* Reduce el padding en mÃ³viles */
        font-size: 0.75rem;
        /* Disminuye el tamaÃ±o del texto en mÃ³viles */
    }
}

/* Estilos para pantallas aÃºn mÃ¡s pequeÃ±as, como telÃ©fonos compactos */
@media (max-width: 480px) {
    .thumbnail-labels {
        top: 10px;
        /* AÃºn menos espacio superior en dispositivos muy pequeÃ±os */
        left: 3px;
        gap: 2px;
        /* Espacio mÃ¡s reducido entre las etiquetas */
    }

    .thumbnail-label {
        padding: 2px 5px;
        /* Ajuste aÃºn mÃ¡s pequeÃ±o para pantallas muy compactas */
        font-size: 0.65rem;
        /* Reducir el tamaÃ±o del texto aÃºn mÃ¡s */
    }


    /* SIN DATOS*/
    .sindatos {
        width: 400px;
    }
}




@media (max-width: 768px) {
    .nav ul li a {
        font-size: 0.9rem;
        /* Más pequeño para pantallas de tablets y móviles */
    }

    .nav ul li a i {
        font-size: 1rem;
        /* Ajuste adicional para los íconos en pantallas muy pequeñas */
    }
}

/* Media queries para dispositivos móviles */
@media (max-width: 1024px) {
    .nav ul {
        flex-direction: row;
        /* Ajusta la dirección del menú a vertical */
        align-items: center;
        /* Alinea los items en el centro */
    }

    .nav ul li {
        margin: 10px 0;
        /* Espaciado entre elementos */
    }

    .nav ul li a {
        font-size: 0.8rem;
        /* Reduce el tamaño de la fuente en pantallas más pequeñas */
        margin-right: 5px;
    }

    .nav ul li a i {
        font-size: 1.0rem;
        /* Ajusta el tamaño de los íconos en pantallas pequeñas */
    }

}

/* Carousel - Estilos generales */
.hero {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Media query para dispositivos móviles */
@media (max-width: 480px) {
    .carousel-item {
        min-width: 100%;
        box-sizing: border-box;
    }

    .carousel-item img {
        width: 100%;
        border-radius: 10px;
        height: auto;
        display: block;
    }

    .carousel-prev,
    .carousel-next {
        font-size: 1.5rem;
        padding: 8px;
    }
}

/* Media query para tablets */
@media (max-width: 768px) {

    .carousel-prev,
    .carousel-next {
        font-size: 1.8rem;
    }
}

/* ==============================
   MODERN REFRESH 2026
   Capa visual conservadora. No cambia estructura ni nombres de clases.
============================== */
:root {
    --modern-bg-1: #101722;
    --modern-bg-2: #182536;
    --modern-panel: rgba(18, 29, 43, 0.82);
    --modern-panel-strong: rgba(8, 14, 22, 0.92);
    --modern-line: rgba(1, 209, 255, 0.22);
    --modern-text-soft: #d7e8f4;
    --modern-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    --modern-glow: 0 0 0 1px rgba(1, 209, 255, 0.18), 0 16px 40px rgba(0, 0, 0, 0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 20% 0%, rgba(1, 180, 181, 0.16), transparent 32%),
        radial-gradient(circle at 82% 15%, rgba(1, 209, 255, 0.12), transparent 34%),
        linear-gradient(135deg, var(--modern-bg-1), var(--modern-bg-2) 48%, #0d1118);
    color: #ffffff;
}

.header {
    background: rgb(5 27 36);
    border-bottom: 1px solid rgba(1, 209, 255, 0.18);
    box-shadow: var(--modern-glow);
    backdrop-filter: blur(12px);
}

.header .logo img {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
    margin-top: 0;
}

.nav ul {
    align-items: center;
    gap: 6px;
}

.nav ul li {
    margin: 0;
}

.nav ul li a {
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.2;
    padding: 10px 12px;
}

.nav ul li a::after {
    display: none;
}

.nav ul li a:hover,
.header .nav ul li a.active {
    background: rgba(1, 180, 181, 0.16);
    color: #ffffff;
    text-shadow: 0 0 18px rgba(1, 209, 255, 0.28);
}

.content {
    width: min(92%, 1500px);
}

.hero {
    border-bottom: 1px solid rgba(1, 209, 255, 0.14);
}

.carousel-item img {
    border-radius: 0;
    filter: saturate(1.04) contrast(1.02);
}

.carousel {
    position: relative;
}

.carousel::after {
    background: linear-gradient(180deg, rgba(5, 10, 18, 0.08), rgba(5, 10, 18, 0.44));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.carousel-prev,
.carousel-next,
.icon-carousel-prev,
.icon-carousel-next {
    backdrop-filter: blur(10px);
    background: rgba(5, 14, 24, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.thumbnail-carousel-wrapper,
.icon-carousel-wrapper,
.icon-carousel-wrapper2 {
    border-radius: 16px;
}

.thumbnail-item img {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.thumbnail-item img:hover {
    transform: translateY(-3px) scale(1.025);
}

.thumbnail-label {
    background: rgba(3, 12, 20, 0.78);
    border: 1px solid rgba(1, 209, 255, 0.24);
    border-radius: 999px;
}

.icon-carousel-wrapper {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 24px 0;
    position: relative;
}

.icon-carousel-wrapper::before,
.icon-carousel-wrapper::after {
    display: none;
}

.icon-carousel {
    gap: clamp(20px, 2.4vw, 34px);
    touch-action: pan-y;
    user-select: none;
}

.icon-item {
    background:
        radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(45, 51, 56, 0.98), rgba(27, 34, 40, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 36px rgba(0, 0, 0, 0.26);
    isolation: isolate;
    margin-right: 0;
    overflow: hidden;
    position: relative;
}

.icon-item::before {
    background: linear-gradient(135deg, rgba(1, 209, 255, 0.54), rgba(212, 175, 55, 0.28));
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.icon-item::after {
    border: 1px solid rgba(1, 209, 255, 0.2);
    border-radius: inherit;
    content: "";
    inset: 10px;
    opacity: 0.8;
    position: absolute;
}

.icon-item i {
    color: #ffffff;
    filter: drop-shadow(0 10px 18px rgba(1, 209, 255, 0.18));
    position: relative;
    z-index: 1;
}

.icon-item p {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
    max-width: 150px;
    position: relative;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
    z-index: 1;
}

.icon-item:hover {
    border-color: rgba(1, 209, 255, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(1, 209, 255, 0.12);
    transform: translateY(-5px) scale(1.035);
}

.icon-item:hover::before {
    opacity: 0.16;
}

.general-item {
    background: linear-gradient(180deg, rgba(20, 32, 46, 0.9), rgba(11, 18, 27, 0.92));
    border: 1px solid rgba(1, 209, 255, 0.16);
    border-radius: 16px;
    box-shadow: var(--modern-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.general-item:hover {
    border-color: rgba(1, 209, 255, 0.36);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
    transform: translateY(-2px);
}

.general-logo,
.general-item img {
    border-radius: 12px;
}

.general-name {
    color: #ffffff;
    letter-spacing: 0;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

.general-contact,
.general-contact a {
    color: var(--modern-text-soft);
}

.general-contact i {
    color: #01d1ff;
}

/* Listados de rubros: refresh visual solo con CSS */
.generallist {
    display: grid;
    gap: 14px;
    justify-self: center;
    margin: 24px auto 0;
    max-width: 1600px !important;
    padding: 0 24px 32px;
    width: min(calc(100% - 96px), 1600px) !important;
}

.generallist .general-item {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(1, 209, 255, 0.04), transparent 35%),
        linear-gradient(180deg, rgba(18, 31, 45, 0.96), rgba(11, 20, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
    display: grid;
    gap: 12px 22px;
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas:
        "logo details"
        "logo contact";
    overflow: hidden;
    padding: 16px 26px;
    position: relative;
}

.generallist .general-item:has(.general-logo) {
    border-color: rgba(240, 184, 45, 0.82);
    background:
        radial-gradient(circle at top left, rgba(255, 201, 61, 0.30), transparent 34%),
        linear-gradient(180deg, rgba(80, 59, 9, 0.48), rgba(19, 36, 39, 0.98) 46%, rgba(9, 28, 38, 0.98));
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 218, 110, 0.14),
        inset 0 0 30px rgba(226, 166, 22, 0.10);
}

.generallist .general-item::after {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: inherit;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.generallist .general-item:hover {
    border-color: rgba(1, 209, 255, 0.32);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(1, 209, 255, 0.08);
    transform: translateY(-1px);
}

.generallist .general-item:has(.general-logo):hover {
    border-color: rgba(255, 203, 72, 0.95);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255, 218, 110, 0.22),
        inset 0 0 34px rgba(226, 166, 22, 0.14);
}

.generallist .general-logo {
    align-self: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    flex: initial;
    grid-area: logo;
    height: 156px;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    padding: 8px;
    width: 100%;
}

.generallist .general-logo a {
    display: block;
    height: 100%;
    width: 100%;
}

.generallist .general-logo img,
.generallist .general-item>img {
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.generallist .general-details {
    align-content: center;
    display: grid;
    gap: 6px;
    grid-area: details;
    min-width: 0;
}

.generallist .general-details a {
    text-decoration: none;
}

.generallist .general-name {
    font-size: clamp(1.28rem, 1.62vw, 1.7rem);
    font-weight: 850;
    line-height: 1.22;
    margin: 0;
    text-align: left;
    text-wrap: pretty;
}

.generallist .general-item:has(.general-logo) .general-details {
    border-left: 3px solid rgba(240, 184, 45, 0.95);
    padding-left: 26px;
}

.generallist .general-item:has(.general-logo) .general-details::after {
    content: "";
    display: none;
}

.generallist .general-contact {
    align-content: center;
    color: #e6f4ff;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.11rem;
    gap: 0;
    grid-area: contact;
    justify-content: flex-start;
    line-height: 1.5;
    min-width: 0;
    padding-top: 0;
    position: relative;
}

.generallist .general-contact>div {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    max-width: 100%;
    min-height: 52px;
    padding: 0 28px;
    position: relative;
}

.generallist .general-contact a {
    color: #f5fbff;
    font-weight: 600;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.generallist .general-contact a:hover {
    color: #01d1ff;
}

.generallist .general-contact i {
    color: #ff4d33;
    flex: 0 0 auto;
    font-size: 1.55rem;
    margin: 0;
}

.generallist .general-contact>div:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.14);
    content: "";
    height: 72%;
    position: absolute;
    right: 0;
    top: 14%;
    width: 1px;
}

.generallist .general-item:not(:has(.general-logo)) {
    grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
    grid-template-areas: "details contact";
    min-height: 92px;
    padding: 14px 26px;
}

.generallist .general-item:not(:has(.general-logo)) .general-details {
    align-items: center;
    display: block;
}

.generallist .general-item:not(:has(.general-logo)) .general-details::after {
    display: none;
}

.generallist .general-item:not(:has(.general-logo)) .general-name {
    font-size: clamp(1.16rem, 1.46vw, 1.38rem);
    line-height: 1.26;
}

@media (max-width: 1180px) {
    .generallist .general-item {
        gap: 10px 18px;
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .generallist .general-item:not(:has(.general-logo)) {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    }

    .generallist .general-contact>div {
        min-height: 48px;
        padding: 0 20px;
    }

    .generallist .general-contact>div:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .generallist {
        gap: 8px;
        margin: 16px auto;
        max-width: none !important;
        padding: 0 10px 18px;
        width: min(calc(100% - 16px), 100%) !important;
    }

    .generallist .general-item {
        gap: 8px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "details"
            "contact";
        padding: 10px 12px;
        border-radius: 14px;
    }

    .generallist .general-item:not(:has(.general-logo)) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "details"
            "contact";
        min-height: 0;
        padding: 10px 12px;
    }

    .generallist .general-logo {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 12px;
        padding: 6px;
    }

    .generallist .general-details {
        justify-items: start;
        gap: 4px;
    }

    .generallist .general-name {
        font-size: clamp(1.12rem, 5.6vw, 1.48rem);
        line-height: 1.18;
        text-wrap: pretty;
    }

    .generallist .general-item:has(.general-logo) .general-details {
        border-left: none;
        padding-left: 0;
    }

    .generallist .general-item:has(.general-logo) .general-details::after {
        background: linear-gradient(90deg, rgba(240, 184, 45, 0.95), rgba(240, 184, 45, 0));
        border-radius: 999px;
        content: "";
        display: block;
        height: 2px;
        width: 88px;
    }

    .generallist .general-item:not(:has(.general-logo)) .general-details {
        display: block;
    }

    .generallist .general-item:not(:has(.general-logo)) .general-name {
        font-size: 1.08rem;
    }

    .generallist .general-contact {
        font-size: 0.96rem;
        gap: 0;
        line-height: 1.18;
        margin-top: 2px;
    }

    .generallist .general-contact>div {
        border: none;
        border-radius: 0;
        min-height: 24px;
        padding: 1px 0;
        background: transparent;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
    }

    .generallist .general-contact>div::after {
        display: none;
    }

    .generallist .general-contact i {
        font-size: 0.92rem;
        width: 16px;
    }
}

.vip,
.base,
.gratis,
.categoria-principal,
.list-item {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vip:hover,
.base:hover,
.gratis:hover,
.categoria-principal:hover,
.list-item:hover {
    transform: translateY(-2px);
}

.vip {
    background:
        linear-gradient(135deg, rgba(206, 148, 0, 0.94), rgba(44, 35, 19, 0.96)),
        radial-gradient(circle at 10% 0%, rgba(255, 248, 225, 0.22), transparent 35%);
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.22);
}

.base {
    background: linear-gradient(135deg, rgba(18, 49, 58, 0.96), rgba(23, 42, 56, 0.96));
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(0, 188, 212, 0.13);
}

.gratis {
    border-color: rgba(255, 255, 255, 0.14);
}

.search-bar {
    background: rgba(9, 17, 27, 0.76);
    border: 1px solid var(--modern-line);
    border-radius: 16px;
    box-shadow: var(--modern-shadow);
}

.search-bar input[type="text"] {
    border-radius: 12px;
    min-height: 48px;
    outline: none;
}

.search-bar input[type="text"]:focus {
    border-color: rgba(1, 209, 255, 0.78);
    box-shadow: 0 0 0 4px rgba(1, 209, 255, 0.14);
}

.search-bar button {
    background: linear-gradient(135deg, #01b4b5, #0182a9);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(1, 180, 181, 0.24);
    font-weight: 700;
    min-height: 48px;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #01d1ff, #01b4b5);
    transform: translateY(-1px);
}

.search-shell {
    margin: 0 auto 16px;
    max-width: 980px;
    position: relative;
    z-index: 40;
}

.search-shell .search-bar {
    margin: 0;
    max-width: none;
    position: relative;
    z-index: 2;
}

.search-dropdown {
    background:
        linear-gradient(180deg, rgba(9, 18, 31, 0.98), rgba(6, 13, 24, 0.98)),
        rgba(6, 13, 24, 0.98);
    border: 1px solid rgba(1, 209, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
    left: 0;
    margin-top: 10px;
    max-height: min(68vh, 760px);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    visibility: hidden;
}

.search-dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.search-dropdown::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    content: "";
    height: 1px;
    left: 18px;
    position: absolute;
    right: 18px;
    top: 0;
}

.search-dropdown-empty,
.search-dropdown-scroll {
    max-height: min(68vh, 760px);
    overflow-y: auto;
}

.search-dropdown-empty {
    color: #e7f2fb;
    font-size: 1rem;
    padding: 22px 20px;
    text-align: center;
}

.search-dropdown-scroll {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    scrollbar-color: rgba(1, 209, 255, 0.7) rgba(255, 255, 255, 0.08);
}

.search-dropdown-section {
    background: rgba(11, 24, 39, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.search-dropdown-section-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.search-dropdown-section-title {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 800;
    gap: 10px;
}

.search-dropdown-section-title i {
    color: #01d1ff;
}

.search-dropdown-section-count {
    color: #c6d8e7;
    font-size: 0.88rem;
}

.search-dropdown-group-title {
    color: #8feaff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.search-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-dropdown-folder-link,
.search-dropdown-result-link {
    text-decoration: none;
}

.search-dropdown-folder-item {
    background: rgba(1, 209, 255, 0.08);
    border: 1px solid rgba(1, 209, 255, 0.18);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
}

.search-dropdown-folder-link {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 8px 12px;
}

.search-dropdown-folder-icon {
    font-size: 1rem;
}

.search-dropdown-folder-top,
.search-dropdown-folder-heading {
    align-items: center;
    display: flex;
}

.search-dropdown-folder-top {
    gap: 12px;
    justify-content: space-between;
}

.search-dropdown-folder-heading {
    gap: 10px;
}

.search-dropdown-folder-name {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.search-dropdown-folder-count {
    color: #c6d8e7;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.search-dropdown-result-card {
    background: rgba(5, 14, 24, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.search-dropdown-result-card.vip {
    background:
        linear-gradient(135deg, rgba(145, 104, 0, 0.95), rgba(40, 29, 12, 0.96)),
        rgba(5, 14, 24, 0.76);
    border-color: rgba(255, 208, 92, 0.34);
}

.search-dropdown-result-card.base {
    border-color: rgba(1, 209, 255, 0.2);
}

.search-dropdown-result-link {
    align-items: flex-start;
    color: #ffffff;
    display: flex;
    gap: 12px;
    padding: 13px 14px;
}

.search-dropdown-thumb {
    border-radius: 12px;
    flex: 0 0 56px;
    height: 56px;
    object-fit: cover;
    width: 56px;
}

.search-dropdown-result-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.search-dropdown-result-title {
    color: #ffffff;
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.18;
}

.search-dropdown-tags,
.search-dropdown-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-dropdown-tag,
.search-dropdown-meta-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #dbeaf7;
    display: inline-flex;
    font-size: 0.84rem;
    gap: 7px;
    line-height: 1.2;
    padding: 6px 10px;
}

.search-dropdown-meta-item i {
    color: #01d1ff;
}

.search-dropdown-more {
    align-self: flex-start;
    background: rgba(1, 209, 255, 0.1);
    border: 1px solid rgba(1, 209, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 9px 14px;
    text-decoration: none;
}

.search-dropdown-more-results {
    margin-top: 2px;
}

.search-dropdown mark {
    background: rgba(255, 208, 92, 0.2);
    border-radius: 4px;
    color: #fff2bf;
    padding: 0 2px;
}

.footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(1, 209, 255, 0.12), transparent 30%),
        #05080d;
    border-top: 1px solid rgba(1, 209, 255, 0.42);
}

.footer-container {
    gap: 24px;
}

.footer-social a {
    transform-origin: left center;
}

@media (max-width: 768px) {
    .header {
        padding: 10px 14px;
    }

    .nav-toggle,
    .nav-toggle i {
        color: #ffffff;
        text-shadow: 0 0 18px rgba(1, 209, 255, 0.35);
    }

    .nav-toggle i {
        margin-left: 0;
    }

    .header .nav ul {
        background:
            radial-gradient(circle at 50% 12%, rgba(1, 209, 255, 0.14), transparent 32%),
            rgba(4, 9, 15, 0.96);
    }

    .nav ul li a {
        font-size: 1.2rem;
    }

    .content {
        width: min(94%, 1500px);
    }

    .general-item {
        border-radius: 14px;
    }

    .search-bar {
        border-radius: 14px;
    }
}

/* Guia compacta en secciones principales */
.content>.search-bar,
main .content>.search-bar,
section.content>.search-bar,
body main>.search-bar {
    align-items: center;
    background: rgba(9, 17, 27, 0.76);
    border: 1px solid var(--modern-line);
    border-radius: 16px;
    box-shadow: var(--modern-shadow);
    display: flex;
    gap: 10px;
    margin: 20px auto 28px !important;
    max-width: 980px !important;
    padding: 12px;
    width: min(calc(100% - 32px), 980px) !important;
}

.content>.search-bar input[type="text"],
main .content>.search-bar input[type="text"],
section.content>.search-bar input[type="text"],
body main>.search-bar input[type="text"] {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    flex: 1;
    font-size: 1rem;
    min-height: 48px;
    padding: 12px 16px;
}

.content>.search-bar button,
main .content>.search-bar button,
section.content>.search-bar button,
body main>.search-bar button {
    background: linear-gradient(135deg, #01b4b5, #0182a9);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(1, 180, 181, 0.24);
    margin: 0;
    min-height: 48px;
    padding: 12px 18px;
}

body main>section.directory,
.directory {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1120px !important;
    width: min(calc(100% - 32px), 1120px) !important;
}

.directory .category-section,
section.content .directory .category-section,
main .directory .category-section,
body main>section.directory>.category-section {
    background: var(--modern-panel);
    border: 1px solid var(--modern-line);
    border-radius: 16px;
    box-shadow: var(--modern-shadow);
    margin: 14px auto !important;
    max-width: 1120px !important;
    padding: 16px;
    width: 100% !important;
}

.directory .toggle-button,
section.content .directory .toggle-button,
main .directory .toggle-button,
body main>section.directory>.category-section>.toggle-button {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 800;
    gap: 10px;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 0;
    padding-bottom: 12px;
}

.directory .toggle-button i,
section.content .directory .toggle-button i,
main .directory .toggle-button i,
body main>section.directory>.category-section>.toggle-button i {
    color: #01d1ff;
    margin-right: 0;
}

.directory .rubros-content,
section.content .directory .rubros-content,
main .directory .rubros-content,
body main>section.directory .rubros-content {
    margin-top: 14px;
    max-height: 300px;
    padding-right: 8px;
    scrollbar-color: rgba(1, 209, 255, 0.75) rgba(255, 255, 255, 0.08);
}

.directory .rubros-list,
section.content .directory .rubros-list,
main .directory .rubros-list,
body main>section.directory .rubros-list {
    column-gap: 28px;
    padding: 0;
}

.directory .rubros-list li,
section.content .directory .rubros-list li,
main .directory .rubros-list li,
body main>section.directory .rubros-list li {
    break-inside: avoid;
    margin: 4px 0;
}

.directory .rubros-list a,
section.content .directory .rubros-list a,
main .directory .rubros-list a,
body main>section.directory .rubros-list a {
    border-radius: 10px;
    color: #ffffff;
    display: inline-block;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.25;
    padding: 7px 10px;
}

.directory .rubros-list a:hover,
section.content .directory .rubros-list a:hover,
main .directory .rubros-list a:hover,
body main>section.directory .rubros-list a:hover {
    background: rgba(1, 209, 255, 0.1);
    color: #ffffff;
}

section.content>center h1,
main .content>center h1 {
    margin: 24px auto 24px;
}

@media (max-width: 768px) {

    .search-shell {
        max-width: calc(100% - 24px);
    }

    .search-dropdown {
        border-radius: 16px;
        max-height: 62vh;
    }

    .search-dropdown-empty,
    .search-dropdown-scroll {
        max-height: 62vh;
    }

    .search-dropdown-scroll {
        gap: 14px;
        padding: 14px;
    }

    .search-dropdown-section {
        border-radius: 14px;
        gap: 10px;
        padding: 13px;
    }

    .search-dropdown-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .search-dropdown-folder-link,
    .search-dropdown-result-link {
        padding: 12px;
    }

    .search-dropdown-result-link {
        flex-direction: column;
    }

    .search-dropdown-thumb {
        height: 64px;
        width: 64px;
    }

    .search-dropdown-result-title {
        font-size: 0.96rem;
    }

    .search-dropdown-tag,
    .search-dropdown-meta-item {
        font-size: 0.8rem;
        padding: 6px 9px;
    }

    .content>.search-bar,
    main .content>.search-bar,
    section.content>.search-bar {
        border-radius: 14px;
        flex-direction: column;
        margin: 18px auto 24px;
        width: min(calc(100% - 24px), 980px) !important;
    }

    .content>.search-bar input[type="text"],
    .content>.search-bar button,
    main .content>.search-bar input[type="text"],
    main .content>.search-bar button,
    section.content>.search-bar input[type="text"],
    section.content>.search-bar button {
        width: 100%;
    }

    .directory {
        width: min(calc(100% - 24px), 1120px) !important;
    }

    .directory .category-section,
    section.content .directory .category-section,
    main .directory .category-section {
        border-radius: 14px;
        padding: 14px;
    }

    .directory .rubros-list,
    section.content .directory .rubros-list,
    main .directory .rubros-list {
        column-count: 1;
    }
}

@media (max-width: 420px) {
    .search-shell {
        max-width: calc(100% - 16px);
    }

    .search-dropdown {
        border-radius: 14px;
        max-height: 58vh;
    }

    .search-dropdown-empty,
    .search-dropdown-scroll {
        max-height: 58vh;
    }

    .search-dropdown-scroll {
        gap: 10px;
        padding: 10px;
    }

    .search-dropdown-section {
        border-radius: 12px;
        gap: 8px;
        padding: 10px;
    }

    .search-dropdown-section-title {
        font-size: 0.94rem;
        gap: 8px;
    }

    .search-dropdown-section-count {
        font-size: 0.8rem;
    }

    .search-dropdown-group-title {
        font-size: 0.8rem;
        padding-top: 0;
    }

    .search-dropdown-folder-item {
        border-radius: 12px;
        padding: 10px;
    }

    .search-dropdown-folder-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .search-dropdown-folder-heading {
        gap: 8px;
    }

    .search-dropdown-folder-name {
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .search-dropdown-folder-count {
        font-size: 0.78rem;
    }

    .search-dropdown-folder-link {
        font-size: 0.82rem;
        justify-content: center;
        line-height: 1.25;
        padding: 8px 10px;
        text-align: center;
        width: 100%;
    }

    .search-dropdown-result-link {
        gap: 10px;
        padding: 10px;
    }

    .search-dropdown-thumb {
        height: 58px;
        width: 58px;
    }

    .search-dropdown-result-content {
        gap: 6px;
    }

    .search-dropdown-result-title {
        font-size: 0.92rem;
        line-height: 1.14;
    }

    .search-dropdown-tags,
    .search-dropdown-meta {
        gap: 6px;
    }

    .search-dropdown-tag,
    .search-dropdown-meta-item {
        font-size: 0.76rem;
        gap: 6px;
        padding: 5px 8px;
    }

    .search-dropdown-more {
        font-size: 0.8rem;
        line-height: 1.2;
        padding: 8px 12px;
        text-align: center;
        width: 100%;
    }

    .content>.search-bar,
    main .content>.search-bar,
    section.content>.search-bar,
    body main>.search-bar {
        padding: 10px;
        width: min(calc(100% - 16px), 980px) !important;
    }
}

/* Mobile navigation cleanup */
@media (max-width: 768px) {
    .header {
        align-items: center;
        min-height: 74px;
        padding: 9px 18px;
    }

    .header .logo,
    .header .logo a {
        align-items: center;
        display: flex;
        line-height: 1;
        padding: 0;
    }

    .header .logo img {
        height: clamp(44px, 12vw, 54px);
        margin-top: 0;
    }

    .nav-toggle {
        align-items: center;
        background: rgba(1, 180, 181, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        color: #ffffff;
        display: inline-flex;
        font-size: 1.85rem;
        height: 46px;
        justify-content: center;
        margin-left: 0;
        width: 52px;
        z-index: 10001;
    }

    .header .nav ul,
    .nav ul {
        background:
            radial-gradient(circle at 50% 0%, rgba(1, 209, 255, 0.18), transparent 36%),
            rgba(4, 9, 15, 0.97);
        border: 1px solid rgba(1, 209, 255, 0.22);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
        display: none;
        flex-direction: column;
        gap: 4px;
        height: 100dvh;
        inset: 0;
        justify-content: center;
        padding: 88px 24px 36px;
        position: fixed;
        width: 100%;
        z-index: 9999;
    }

    .header .nav ul.nav-open,
    .nav ul.nav-open {
        display: flex;
    }

    .header .nav ul li,
    .nav ul li {
        margin: 0;
        width: min(100%, 320px);
    }

    .header .nav ul li a,
    .nav ul li a {
        align-items: center;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        color: #ffffff;
        display: flex;
        font-size: 1.05rem;
        gap: 12px;
        justify-content: flex-start;
        line-height: 1.15;
        padding: 14px 18px;
        width: 100%;
    }

    .header .nav ul li a i,
    .nav ul li a i {
        color: #01d1ff;
        font-size: 1.2rem;
        margin-right: 0;
        text-align: center;
        width: 22px;
    }

    .nav ul li.close-nav {
        display: none;
    }

    body:not(:has(.gallery-contact-container)) .hero .carousel,
    body:not(:has(.gallery-contact-container)) .hero .carousel-item {
        height: min(118vw, 620px);
        max-height: 72vh;
        min-height: 360px;
    }

    body:not(:has(.gallery-contact-container)) .hero .carousel-item img {
        display: block;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        width: 100%;
    }

    .vip-hero-picture,
    .vip-hero-picture img {
        display: block;
        height: 100%;
        width: 100%;
    }

    .vip-hero-picture img {
        object-fit: cover;
        object-position: center center;
    }

    body:not(:has(.gallery-contact-container)) .hero .carousel-item.vip-hero-item,
    body:not(:has(.gallery-contact-container)) .hero .carousel-item:has(.vip-hero-picture) {
        height: min(118vw, 620px);
        max-height: 72vh;
        min-height: 360px;
    }
}

/* Mobile minisitio readability and gallery controls */
@media (max-width: 768px) {
    body:has(.gallery-contact-container) .main-image .arrow {
        align-items: center;
        backdrop-filter: blur(8px);
        background: rgba(5, 13, 20, 0.76);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        color: #ffffff;
        display: flex;
        font-size: 1.35rem;
        height: 42px;
        justify-content: center;
        line-height: 1;
        padding: 0;
        width: 34px;
    }

    body:has(.gallery-contact-container) .main-image .arrow-prev {
        left: 8px;
    }

    body:has(.gallery-contact-container) .main-image .arrow-next {
        right: 8px;
    }

    body:has(.gallery-contact-container) .contact-info {
        align-items: stretch;
        font-size: 1rem;
        line-height: 1.55;
        text-align: left;
    }

    body:has(.gallery-contact-container) .contact-info>p,
    body:has(.gallery-contact-container) .contact-info>div:not(.contact-item):not(.social-icons) {
        hyphens: none;
        letter-spacing: 0;
        line-height: 1.6;
        margin-block: 0 16px;
        text-align: left;
        text-wrap: pretty;
        word-spacing: normal;
    }

    body:has(.gallery-contact-container) .service-list {
        display: grid;
        gap: 12px;
        margin: 8px 0 22px;
        padding: 0;
    }

    body:has(.gallery-contact-container) .service-list li {
        align-items: flex-start;
        display: flex;
        gap: 10px;
        line-height: 1.35;
        margin: 0;
        text-align: left;
        word-spacing: normal;
    }

    body:has(.gallery-contact-container) .service-list li i {
        flex: 0 0 20px;
        margin: 2px 0 0;
        text-align: center;
        width: 20px;
    }
}

/* Mobile polish for public thumbnails and recommended rubros */
@media (max-width: 768px) {
    section.content {
        overflow: hidden;
        padding-left: 22px;
        padding-right: 22px;
    }

    section.content h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
        line-height: 1.05;
        margin: 0 0 22px;
    }

    section.content .thumbnail-carousel-wrapper {
        margin: 0 -22px 30px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 42px 10px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        white-space: nowrap;
    }

    section.content .thumbnail-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    section.content .thumbnail-carousel {
        align-items: stretch;
        gap: 14px;
        white-space: normal;
    }

    section.content .thumbnail-carousel-wrapper>.thumbnail-item {
        display: inline-block;
        margin-right: 14px;
        vertical-align: top;
        white-space: normal;
    }

    section.content .thumbnail-item {
        border-radius: 14px;
        box-sizing: border-box;
        flex: 0 0 min(68vw, 270px);
        min-width: min(68vw, 270px);
        padding: 0;
        scroll-snap-align: center;
        width: min(68vw, 270px);
    }

    section.content .thumbnail-item a {
        display: block;
    }

    section.content .thumbnail-item img {
        aspect-ratio: 16 / 9;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(1, 209, 255, 0.18);
        border-radius: 12px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
        display: block;
        height: auto;
        object-fit: cover;
        width: 100%;
    }

    body:has(.gallery-contact-container) section.content .thumbnail-item {
        flex: 0 0 clamp(88px, 26vw, 118px) !important;
        min-width: clamp(88px, 26vw, 118px) !important;
        width: clamp(88px, 26vw, 118px) !important;
    }

    body:has(.gallery-contact-container) section.content .thumbnail-item img,
    body:has(.gallery-contact-container) section.content .thumbnail-item video {
        height: clamp(64px, 19vw, 86px) !important;
        max-height: 86px !important;
        aspect-ratio: 4 / 3 !important;
        object-fit: cover !important;
    }

    section.content .thumbnail-labels {
        align-items: flex-start;
        display: flex;
        gap: 4px;
        left: 8px;
        max-width: calc(100% - 16px);
        pointer-events: none;
        right: 8px;
        top: 8px;
    }

    section.content .thumbnail-label {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        background: rgba(8, 16, 24, 0.84);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
        display: -webkit-box;
        font-size: 0.68rem;
        line-height: 1.05;
        max-width: 100%;
        overflow: hidden;
        padding: 5px 8px;
        text-overflow: ellipsis;
    }

    .thumbnail-carousel-wrapper>.carousel-prev,
    .thumbnail-carousel-wrapper>.carousel-next {
        background: rgba(5, 12, 19, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
        height: 58px;
        line-height: 1;
        width: 42px;
    }

    .thumbnail-carousel-wrapper>.carousel-prev {
        left: 10px;
    }

    .thumbnail-carousel-wrapper>.carousel-next {
        right: 10px;
    }

    .icon-carousel-wrapper {
        background: transparent;
        border-radius: 0;
        margin: 4px -22px 28px;
        overflow: hidden;
        padding: 14px 22px 16px;
    }

    .icon-carousel-wrapper::before,
    .icon-carousel-wrapper::after {
        width: 32px;
    }

    .icon-carousel {
        align-items: flex-start;
        gap: 14px;
    }

    .icon-carousel a {
        color: #ffffff;
        text-decoration: none;
    }

    .icon-item {
        background: transparent;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        box-sizing: border-box;
        flex: 0 0 74px;
        height: auto;
        justify-content: flex-start;
        margin-right: 0;
        overflow: visible;
        padding: 0;
        text-align: center;
        width: 74px;
    }

    .icon-item::before,
    .icon-item::after {
        display: none;
    }

    .icon-item i {
        align-items: center;
        background:
            radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.16), transparent 30%),
            linear-gradient(145deg, rgba(48, 55, 61, 0.98), rgba(25, 32, 39, 0.98));
        border: 1px solid rgba(1, 209, 255, 0.18);
        border-radius: 50%;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 12px 24px rgba(0, 0, 0, 0.28);
        color: #ffffff;
        display: inline-flex;
        font-size: 1.75rem;
        height: 64px;
        justify-content: center;
        line-height: 1;
        margin: 0 auto 8px;
        width: 64px;
    }

    .icon-item p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.08;
        margin: 0;
        max-width: 74px;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .icon-item:hover {
        transform: translateY(-2px);
    }

    .icon-carousel-prev,
    .icon-carousel-next {
        display: none;
    }
}

.call-to-action {
    background:
        radial-gradient(circle at 20% 15%, rgba(1, 209, 255, 0.18), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(9, 17, 27, 0.98), rgba(17, 32, 47, 0.98));
    border-top: 1px solid rgba(1, 209, 255, 0.25);
    color: #ffffff;
    overflow: hidden;
    padding: clamp(52px, 7vw, 86px) 20px;
    position: relative;
}

.call-to-action::before {
    background: linear-gradient(90deg, transparent, rgba(1, 209, 255, 0.48), rgba(212, 175, 55, 0.34), transparent);
    content: "";
    height: 1px;
    left: 12%;
    position: absolute;
    right: 12%;
    top: 0;
}

.cta-content {
    margin: 0 auto;
    max-width: 880px;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    letter-spacing: 0;
    margin: 0;
}

.cta-number {
    background: linear-gradient(180deg, #ffffff, #d7e8f4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-size: clamp(4.5rem, 12vw, 9.5rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
    margin: 12px 0 20px;
    text-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.cta-content p {
    color: var(--modern-text-soft);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    margin: 0 auto 24px;
    max-width: 640px;
}

.cta-button {
    background: linear-gradient(135deg, #01b4b5, #0182a9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(1, 180, 181, 0.22);
    color: #ffffff;
    display: inline-flex;
    font-weight: 800;
    line-height: 1.2;
    padding: 14px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #01d1ff, #01b4b5);
    box-shadow: 0 18px 36px rgba(1, 209, 255, 0.26);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Precios - planes publicitarios 2026 */
.pricing-section-vip {
    background:
        radial-gradient(circle at 18% 8%, rgba(1, 209, 255, 0.14), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(5, 12, 22, 0.96), rgba(13, 29, 44, 0.98));
    border-top: 1px solid rgba(1, 209, 255, 0.2);
    color: #ffffff;
    padding: clamp(56px, 8vw, 92px) 20px;
}

.pricing-section-vip .pricing-container {
    max-width: 1180px;
    width: min(calc(100% - 24px), 1180px);
}

.pricing-header {
    margin: 0 auto 34px;
    max-width: 900px;
    text-align: center;
}

.pricing-kicker {
    align-items: center;
    color: #01d1ff;
    display: inline-flex;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 900;
    gap: 10px;
    letter-spacing: 0.08em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.pricing-header h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.pricing-header p:not(.pricing-kicker) {
    color: var(--modern-text-soft);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.5;
    margin: 14px auto 0;
    max-width: 780px;
}

.pricing-section-vip .pricing-table {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-section-vip .pricing-card {
    background:
        linear-gradient(180deg, rgba(21, 40, 59, 0.88), rgba(7, 16, 27, 0.94)),
        radial-gradient(circle at 50% 0%, rgba(1, 209, 255, 0.14), transparent 34%);
    border: 1px solid rgba(151, 195, 220, 0.2);
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: visible;
    padding: 28px;
    position: relative;
    text-align: center;
}

.pricing-section-vip .pricing-card::before {
    background: linear-gradient(90deg, transparent, rgba(1, 209, 255, 0.9), transparent);
    border-radius: 999px;
    height: 2px;
    left: 32px;
    right: 32px;
    top: auto;
    width: auto;
    bottom: 86px;
}

.pricing-section-vip .pricing-card:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 38px rgba(1, 209, 255, 0.12);
    transform: translateY(-6px);
}

.pricing-section-vip .pricing-card-featured {
    border-color: rgba(1, 209, 255, 0.85);
    box-shadow: 0 26px 70px rgba(1, 209, 255, 0.13), 0 24px 58px rgba(0, 0, 0, 0.32);
}

.plan-badge {
    background: linear-gradient(135deg, #01d1ff, #01a8b5);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(1, 209, 255, 0.22);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    left: 50%;
    line-height: 1;
    padding: 12px 22px;
    position: absolute;
    text-transform: uppercase;
    top: -18px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.pricing-section-vip .pricing-icon {
    color: #09d3df;
    font-size: clamp(2.5rem, 4vw, 3.3rem);
    margin: 10px 0 14px;
    text-shadow: 0 12px 28px rgba(1, 209, 255, 0.26);
}

.pricing-section-vip .pricing-card h3 {
    color: #ffffff;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
}

.pricing-section-vip .pricing-card .price {
    color: #01d1ff;
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin: 14px 0 8px;
    text-shadow: 0 18px 42px rgba(1, 209, 255, 0.24);
}

.plan-note {
    color: var(--modern-text-soft);
    font-size: 1rem;
    line-height: 1.35;
    margin: 0 auto 22px;
    min-height: 44px;
}

.pricing-section-vip .pricing-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
}

.pricing-section-vip .pricing-card li {
    align-items: flex-start;
    background: transparent;
    color: #f4f8fb;
    display: grid;
    font-size: 1rem;
    gap: 11px;
    grid-template-columns: 22px 1fr;
    height: auto;
    justify-content: initial;
    line-height: 1.35;
    margin: 0;
    padding: 0;
    text-align: left;
}

.pricing-section-vip .pricing-card li::before {
    align-items: center;
    background: rgba(1, 209, 255, 0.13);
    border: 1px solid rgba(1, 209, 255, 0.62);
    border-radius: 50%;
    color: #01d1ff;
    content: "\f00c";
    display: inline-flex;
    font-family: "Font Awesome 6 Free";
    font-size: 0.72rem;
    font-weight: 900;
    height: 20px;
    justify-content: center;
    margin-top: 1px;
    width: 20px;
}

.pricing-section-vip .pricing-card li.new-item::before {
    position: static;
}

.pricing-section-vip .cta-button2 {
    align-items: center;
    align-self: center;
    background: linear-gradient(135deg, #01d1ff, #01a8b5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow: 0 18px 34px rgba(1, 180, 181, 0.24);
    color: #ffffff;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 900;
    justify-content: center;
    margin-top: auto;
    min-height: 52px;
    min-width: 190px;
    padding: 14px 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pricing-section-vip .cta-button2:hover {
    background: linear-gradient(135deg, #18e2ff, #01b4b5);
    box-shadow: 0 22px 42px rgba(1, 209, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-benefits {
    align-items: center;
    background: rgba(17, 34, 50, 0.72);
    border: 1px solid rgba(151, 195, 220, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin: 24px auto 0;
    overflow: hidden;
}

.pricing-benefits span {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    min-height: 74px;
    padding: 16px;
}

.pricing-benefits span+span {
    border-left: 1px solid rgba(1, 209, 255, 0.34);
}

.pricing-benefits i {
    color: #01d1ff;
    font-size: 1.8rem;
}

@media (max-width: 1024px) {
    .pricing-section-vip .pricing-table {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 620px;
    }

    .pricing-benefits {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .pricing-benefits span+span {
        border-left: 0;
        border-top: 1px solid rgba(1, 209, 255, 0.24);
    }
}

@media (max-width: 600px) {
    .pricing-section-vip {
        padding: 44px 12px;
    }

    .pricing-section-vip .pricing-container {
        width: 100%;
    }

    .pricing-section-vip .pricing-card {
        border-radius: 14px;
        padding: 26px 20px;
    }

    .pricing-section-vip .pricing-card::before {
        bottom: 76px;
        left: 24px;
        right: 24px;
    }

    .pricing-section-vip .cta-button2 {
        width: 100%;
    }
}

@media (min-width: 1025px) {
    .pricing-section-vip {
        padding-bottom: 64px;
        padding-top: 62px;
    }

    .pricing-header {
        margin-bottom: 28px;
    }

    .pricing-header h1 {
        font-size: clamp(2.8rem, 4.2vw, 3.55rem);
    }

    .pricing-section-vip .pricing-card {
        padding: 24px 26px;
    }

    .pricing-section-vip .pricing-icon {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .pricing-section-vip .pricing-card .price {
        font-size: 4rem;
        margin-bottom: 6px;
    }

    .plan-note {
        font-size: 0.95rem;
        margin-bottom: 18px;
        min-height: 38px;
    }

    .pricing-section-vip .pricing-card ul {
        gap: 9px;
        margin-bottom: 22px;
    }

    .pricing-section-vip .pricing-card li {
        font-size: 0.95rem;
        line-height: 1.28;
    }

    .pricing-section-vip .cta-button2 {
        min-height: 48px;
    }
}
















/* ==============================
   GUIA BUSCADOR 2026
============================== */
body.search-active .category-section {
    background:
        radial-gradient(circle at 8% 0%, rgba(1, 209, 255, 0.12), transparent 34%),
        rgba(9, 18, 31, 0.84);
    border-color: rgba(1, 209, 255, 0.26);
    padding: 16px;
}

body.search-active .toggle-button {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 4px;
}

body.search-active .rubros-content.search-results-list {
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: visible;
    scrollbar-width: auto;
}

body.search-active .rubros-list,
body.search-active .search-results-list {
    column-count: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-results-summary {
    align-items: center;
    background: linear-gradient(135deg, rgba(1, 209, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(1, 209, 255, 0.28);
    border-radius: 14px;
    color: #ffffff;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin: 8px 0 4px;
    order: 1;
    padding: 14px 16px;
}

.search-results-summary>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-results-label {
    color: #01d1ff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-results-summary strong {
    color: #ffffff;
    font-size: 1.28rem;
    line-height: 1.1;
}

.search-results-hint {
    color: #c9d8e7;
    font-size: 0.92rem;
    text-align: right;
}

.search-subgroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-subgroup-title {
    color: #dbeaf7;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 2px 4px 0;
    text-transform: uppercase;
}

.search-subgroup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.search-active .search-result-card {
    align-items: center;
    background: rgba(7, 15, 27, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    gap: 14px;
    margin: 0;
    min-height: 92px;
    order: 3;
    padding: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.search-active .search-result-card:hover {
    border-color: rgba(1, 209, 255, 0.32);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

body.search-active .search-result-card.vip {
    background:
        linear-gradient(135deg, rgba(164, 118, 0, 0.86), rgba(32, 24, 13, 0.95)),
        radial-gradient(circle at 0% 0%, rgba(255, 236, 160, 0.2), transparent 34%);
    border-color: rgba(255, 210, 83, 0.38);
    box-shadow: 0 16px 36px rgba(164, 118, 0, 0.22);
}

body.search-active .search-result-card.base {
    background:
        linear-gradient(135deg, rgba(13, 55, 65, 0.9), rgba(9, 24, 39, 0.96)),
        radial-gradient(circle at 0% 0%, rgba(1, 209, 255, 0.16), transparent 34%);
    border-color: rgba(1, 209, 255, 0.28);
}

body.search-active .search-result-card.gratis {
    border-bottom: 0;
}

body.search-active .search-result-card .info {
    min-width: 0;
}

body.search-active .thumbbuscadores,
body.search-active .vip img.thumbbuscadores {
    aspect-ratio: 1;
    border-radius: 12px;
    height: 76px;
    margin: 0;
    object-fit: cover;
    width: 76px;
}

.search-plan-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #dcefff;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 7px;
    padding: 6px 9px;
    text-transform: uppercase;
}

.vip .search-plan-badge {
    background: rgba(255, 210, 83, 0.18);
    border-color: rgba(255, 210, 83, 0.34);
    color: #fff5c7;
}

.base .search-plan-badge {
    background: rgba(1, 209, 255, 0.14);
    border-color: rgba(1, 209, 255, 0.28);
    color: #dffaff;
}

body.search-active .search-result-title,
body.search-active .vip .info a.search-result-title,
body.search-active .base .info a.search-result-title,
body.search-active .gratis .info a.search-result-title {
    color: #ffffff;
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.18;
    margin: 0;
    padding: 0;
}

.search-result-category {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 6px;
}

.search-result-category-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #b9cce0;
    display: inline-flex;
    font-size: 0.9rem;
    line-height: 1.25;
    padding: 4px 10px;
}

body.search-active .redes {
    gap: 8px;
    margin-top: 10px;
}

body.search-active .redes a {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #eaf7ff;
    font-size: 0.86rem;
    line-height: 1.1;
    padding: 7px 10px;
}

body.search-active .redes a i {
    color: #01d1ff;
    font-size: 0.98rem;
}

body.search-active .search-meta {
    color: #d7e7f4;
    font-size: 0.88rem;
    margin-top: 9px;
}

body.search-active .search-folder-link {
    background: rgba(1, 209, 255, 0.1);
    border: 1px solid rgba(1, 209, 255, 0.22);
    box-shadow: none;
    min-height: 0;
    order: 2;
    padding: 0;
}

body.search-active .search-folder-link a {
    color: #ffffff;
    display: block;
    font-size: 0.98rem;
    padding: 12px 14px;
    width: 100%;
}

/* White mode 2026: VIP minisitio content only. Header/nav and footer stay untouched. */
:root {
    --vip-white-bg: #f7fbfd;
    --vip-white-surface: rgba(255, 255, 255, 0.92);
    --vip-white-text: #10212c;
    --vip-white-muted: #526a78;
    --vip-white-line: rgba(1, 95, 125, 0.16);
    --vip-white-shadow: 0 22px 52px rgba(18, 60, 75, 0.12);
}

body:has(.gallery-contact-container) {
    background:
        radial-gradient(circle at 20% 0%, rgba(1, 180, 181, 0.16), transparent 32%),
        radial-gradient(circle at 82% 15%, rgba(1, 209, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff, #ffffff 48%, #d9f1f6) !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) main {
    background: transparent !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .gallery-contact-container,
body:has(.gallery-contact-container) .vip-store-section {
    background: var(--vip-white-surface) !important;
    border: 1px solid var(--vip-white-line) !important;
    box-shadow: var(--vip-white-shadow) !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .gallery,
body:has(.gallery-contact-container) .main-image,
body:has(.gallery-contact-container) .contact-info {
    background: transparent !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .contact-info h1,
body:has(.gallery-contact-container) .contact-info h2,
body:has(.gallery-contact-container) .contact-info h3,
body:has(.gallery-contact-container) .vip-store-heading h2,
body:has(.gallery-contact-container) .vip-store-featured-head,
body:has(.gallery-contact-container) .vip-store-category summary,
body:has(.gallery-contact-container) .vip-store-card-body h3 {
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .contact-info p,
body:has(.gallery-contact-container) .contact-info .contact-item a,
body:has(.gallery-contact-container) .contact-info .contact-item span,
body:has(.gallery-contact-container) .service-list li,
body:has(.gallery-contact-container) .vip-store-heading p,
body:has(.gallery-contact-container) .vip-store-card-body p {
    color: #1d3746 !important;
}

body:has(.gallery-contact-container) .thumbnail-container,
body:has(.gallery-contact-container) .vip-store-category,
body:has(.gallery-contact-container) .vip-store-card,
body:has(.gallery-contact-container) .vip-store-cart-panel {
    background: #ffffff !important;
    border-color: var(--vip-white-line) !important;
    box-shadow: 0 14px 34px rgba(18, 60, 75, 0.08) !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .thumbnail-carousel-wrapper {
    max-width: 100% !important;
    overflow: hidden !important;
}

body:has(.gallery-contact-container) .thumbnail-carousel {
    align-items: stretch !important;
    gap: 12px !important;
}

body:has(.gallery-contact-container) .thumbnail-item {
    flex: 0 0 clamp(96px, 10vw, 132px) !important;
    width: clamp(96px, 10vw, 132px) !important;
    max-width: clamp(96px, 10vw, 132px) !important;
    padding: 0 !important;
}

body:has(.gallery-contact-container) .thumbnail-item img,
body:has(.gallery-contact-container) .thumbnail-item video {
    display: block !important;
    width: 100% !important;
    height: clamp(170px, 7vw, 92px) !important;
    max-height: 170px !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    border: 1px solid rgba(1, 95, 125, 0.14) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 22px rgba(18, 60, 75, 0.12) !important;
}

body:has(.gallery-contact-container) .vip-store-search,
body:has(.gallery-contact-container) .vip-store-search input {
    background: #ffffff !important;
    color: var(--vip-white-text) !important;
}

body:has(.gallery-contact-container) .vip-store-product-category,
body:has(.gallery-contact-container) .vip-store-stock,
body:has(.gallery-contact-container) .vip-store-filter {
    color: #126181 !important;
}

/* VIP store commercial layout. */
body:has(.gallery-contact-container) .vip-store-section {
    width: min(1120px, calc(100% - 32px)) !important;
    margin: 42px auto !important;
    padding: clamp(20px, 3vw, 34px) !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at 6% 0%, rgba(1, 209, 255, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%) !important;
}

body:has(.gallery-contact-container) .vip-store-heading {
    display: grid !important;
    gap: 10px !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(1, 95, 125, 0.10) !important;
}

body:has(.gallery-contact-container) .vip-store-heading>span {
    width: fit-content !important;
    border-radius: 999px !important;
    padding: 6px 11px !important;
    color: #007a8f !important;
    background: rgba(1, 209, 255, 0.12) !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
}

body:has(.gallery-contact-container) .vip-store-heading h2 {
    max-width: 860px !important;
    margin: 0 !important;
    color: #10212c !important;
    font-size: clamp(32px, 5vw, 56px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.02em !important;
}

body:has(.gallery-contact-container) .vip-store-heading p {
    max-width: 760px !important;
    color: #38515f !important;
    font-size: 1.02rem !important;
}

body:has(.gallery-contact-container) .vip-store-live-strip {
    gap: 8px !important;
    margin-top: 4px !important;
}

body:has(.gallery-contact-container) .vip-store-toolbar {
    display: grid !important;
    gap: 14px !important;
    margin: 22px 0 !important;
}

body:has(.gallery-contact-container) .vip-store-search {
    min-height: 56px !important;
    border: 1px solid rgba(1, 180, 181, 0.38) !important;
    border-radius: 999px !important;
    padding: 0 18px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 30px rgba(18, 60, 75, 0.08) !important;
}

body:has(.gallery-contact-container) .vip-store-search i {
    color: #009eb4 !important;
}

body:has(.gallery-contact-container) .vip-store-search input {
    min-height: 54px !important;
    color: #10212c !important;
    font-size: 1rem !important;
}

body:has(.gallery-contact-container) .vip-store-search:focus-within {
    border-color: rgba(1, 180, 181, 0.75) !important;
    box-shadow: 0 0 0 4px rgba(1, 209, 255, 0.12), 0 16px 34px rgba(18, 60, 75, 0.11) !important;
}

body:has(.gallery-contact-container) .vip-store-filters {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding: 2px 2px 8px !important;
    scrollbar-width: thin !important;
}

body:has(.gallery-contact-container) .vip-store-filter {
    flex: 0 0 auto !important;
    border: 1px solid rgba(1, 180, 181, 0.28) !important;
    border-radius: 999px !important;
    padding: 10px 15px !important;
    color: #126181 !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(18, 60, 75, 0.06) !important;
    font-weight: 900 !important;
}

body:has(.gallery-contact-container) .vip-store-filter span {
    color: #10212c !important;
    background: #e6f9fb !important;
}

body:has(.gallery-contact-container) .vip-store-filter.is-active {
    color: #06202a !important;
    border-color: #00bdd2 !important;
    background: linear-gradient(135deg, #00d1ed, #01b4b5) !important;
}

body:has(.gallery-contact-container) .vip-store-categories {
    display: grid !important;
    gap: 14px !important;
}

body:has(.gallery-contact-container) .vip-store-featured {
    width: fit-content !important;
    max-width: 100% !important;
    margin: 10px 0 20px !important;
    padding: 16px !important;
    border: 1px solid rgba(191, 128, 0, 0.28) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 245, 196, 0.92), transparent 42%),
        linear-gradient(135deg, #fff8df 0%, #efd47b 56%, #d19d27 100%) !important;
    box-shadow: 0 22px 50px rgba(105, 74, 12, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head {
    padding: 0 0 12px !important;
    color: #231b08 !important;
    text-shadow: none !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head small {
    color: #231b08 !important;
    background: #fff5bf !important;
    border: 1px solid rgba(105, 74, 12, 0.16) !important;
}

body:has(.gallery-contact-container) .vip-store-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
    gap: 16px !important;
    padding: 14px 0 0 !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
    grid-template-columns: repeat(auto-fit, minmax(182px, 208px)) !important;
    padding-top: 0 !important;
}

body:has(.gallery-contact-container) .vip-store-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
    border: 1px solid rgba(1, 95, 125, 0.13) !important;
    border-radius: 18px !important;
    color: #10212c !important;
    background: #ffffff !important;
    box-shadow: 0 16px 36px rgba(18, 60, 75, 0.09) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(1, 180, 181, 0.34) !important;
    box-shadow: 0 22px 44px rgba(18, 60, 75, 0.14) !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-card {
    border-color: rgba(105, 74, 12, 0.18) !important;
    box-shadow: 0 18px 36px rgba(105, 74, 12, 0.14) !important;
}

body:has(.gallery-contact-container) .vip-store-card.has-promotion {
    border-color: rgba(199, 143, 12, 0.42) !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 230, 130, 0.24), transparent 34%),
        #ffffff !important;
}

body:has(.gallery-contact-container) .vip-store-card-media {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    max-height: 232px !important;
    padding: 12px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(1, 95, 125, 0.09) !important;
    background: linear-gradient(180deg, #f8fdfe, #edf6f8) !important;
}

body:has(.gallery-contact-container) .vip-store-card-media img,
body:has(.gallery-contact-container) .vip-store-placeholder {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

body:has(.gallery-contact-container) .vip-store-card-media img {
    border-radius: 12px !important;
}

body:has(.gallery-contact-container) .vip-store-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 15px !important;
}

body:has(.gallery-contact-container) .vip-store-card-body h3 {
    margin: 0 !important;
    color: #10212c !important;
    font-size: 1.03rem !important;
    line-height: 1.18 !important;
}

body:has(.gallery-contact-container) .vip-store-card-body p {
    display: -webkit-box !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #38515f !important;
    font-size: 0.92rem !important;
    line-height: 1.38 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

body:has(.gallery-contact-container) .vip-store-price-block {
    display: grid !important;
    gap: 2px !important;
    margin-top: auto !important;
    justify-items: start !important;
}

body:has(.gallery-contact-container) .vip-store-price {
    color: #10212c !important;
    font-size: 1.38rem !important;
    line-height: 1 !important;
    text-shadow: none !important;
}

body:has(.gallery-contact-container) .vip-store-price-before {
    color: #7a8790 !important;
}

body:has(.gallery-contact-container) .vip-store-product-meta {
    gap: 7px !important;
}

body:has(.gallery-contact-container) .vip-store-product-category {
    color: #006f82 !important;
    background: rgba(1, 209, 255, 0.13) !important;
    border-color: rgba(1, 160, 190, 0.34) !important;
}

body:has(.gallery-contact-container) .vip-store-stock {
    color: #69420a !important;
    background: rgba(255, 226, 135, 0.32) !important;
    border-color: rgba(199, 143, 12, 0.28) !important;
}

body:has(.gallery-contact-container) .vip-store-promo-badge {
    color: #1c1500 !important;
    background: linear-gradient(135deg, #ffe76f, #ffb000) !important;
    border-color: rgba(166, 112, 0, 0.28) !important;
}

body:has(.gallery-contact-container) .vip-store-actions {
    margin-top: 2px !important;
}

body:has(.gallery-contact-container) .vip-store-add {
    min-height: 40px !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #22c765, #07833b) !important;
    box-shadow: 0 14px 24px rgba(19, 168, 79, 0.24) !important;
    font-weight: 950 !important;
}

body:has(.gallery-contact-container) .vip-store-add:hover {
    background: linear-gradient(135deg, #35d879, #0b9446) !important;
}

body:has(.gallery-contact-container) .vip-store-category {
    overflow: hidden !important;
    border: 1px solid rgba(1, 95, 125, 0.13) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(90deg, rgba(1, 209, 255, 0.11), transparent 42%),
        #ffffff !important;
    box-shadow: 0 12px 28px rgba(18, 60, 75, 0.07) !important;
}

body:has(.gallery-contact-container) .vip-store-category summary {
    min-height: 58px !important;
    padding: 16px 18px !important;
    color: #10212c !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
}

body:has(.gallery-contact-container) .vip-store-category summary small {
    color: #10212c !important;
    background: #e6f9fb !important;
}

body:has(.gallery-contact-container) .vip-store-empty {
    color: #38515f !important;
    background: rgba(1, 209, 255, 0.06) !important;
    border-color: rgba(1, 180, 181, 0.28) !important;
}

@media (max-width: 768px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 20px) !important;
        margin: 24px auto !important;
        padding: 18px 12px !important;
        border-radius: 20px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading h2 {
        font-size: clamp(30px, 10vw, 42px) !important;
    }

    body:has(.gallery-contact-container) .vip-store-search {
        min-height: 52px !important;
        padding-inline: 14px !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured {
        width: 100% !important;
        padding: 13px !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 190px !important;
        padding: 9px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body {
        padding: 12px !important;
        gap: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.94rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body p {
        font-size: 0.84rem !important;
        -webkit-line-clamp: 2 !important;
    }

    body:has(.gallery-contact-container) .vip-store-price {
        font-size: 1.18rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-add {
        width: 100% !important;
    }
}

@media (max-width: 360px) {

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Galeria del modal VIP: mayor protagonismo solo desde tablets en adelante. */
@media (min-width: 769px) {
    body:has(.gallery-contact-container) .vip-store-product-modal-panel {
        grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr) !important;
        gap: 26px !important;
        width: min(1180px, 96vw) !important;
    }

    body:has(.gallery-contact-container) .vip-store-modal-media img {
        max-width: 560px !important;
        max-height: 620px !important;
    }

    body:has(.gallery-contact-container) .vip-store-modal-zoom {
        max-width: 560px !important;
        min-height: min(620px, 64vh) !important;
    }

    body:has(.gallery-contact-container) .vip-store-modal-nav {
        z-index: 10 !important;
    }
}

/* VIP store split-catalog layout inspired by modern marketplace UX. */
body:has(.gallery-contact-container) .vip-store-section {
    display: grid !important;
    grid-template-columns: minmax(230px, 286px) minmax(0, 1fr) !important;
    grid-template-areas:
        "heading heading"
        "search search"
        "filters featured"
        "filters categories"
        "empty empty" !important;
    align-items: start !important;
    column-gap: 26px !important;
    row-gap: 18px !important;
}

body:has(.gallery-contact-container) .vip-store-heading {
    grid-area: heading !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    column-gap: 22px !important;
    padding-bottom: 10px !important;
    border-bottom: 0 !important;
}

body:has(.gallery-contact-container) .vip-store-heading>span,
body:has(.gallery-contact-container) .vip-store-heading h2,
body:has(.gallery-contact-container) .vip-store-heading p {
    grid-column: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-heading h2 {
    max-width: 780px !important;
}

body:has(.gallery-contact-container) .vip-store-live-strip {
    grid-column: 2 !important;
    grid-row: 2 / span 2 !important;
    justify-self: end !important;
    align-self: center !important;
    justify-content: flex-end !important;
    min-width: max-content !important;
}

body:has(.gallery-contact-container) .vip-store-toolbar {
    display: contents !important;
}

body:has(.gallery-contact-container) .vip-store-search {
    grid-area: search !important;
    width: 100% !important;
    margin: 4px 0 8px !important;
}

body:has(.gallery-contact-container) .vip-store-filters {
    grid-area: filters !important;
    position: sticky !important;
    top: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    overflow: visible !important;
    min-height: 0 !important;
    padding: 20px !important;
    border: 1px solid rgba(1, 95, 125, 0.13) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 253, 0.94)),
        radial-gradient(circle at 100% 0%, rgba(1, 209, 255, 0.10), transparent 40%) !important;
    box-shadow: 0 16px 34px rgba(18, 60, 75, 0.08) !important;
    scrollbar-width: auto !important;
}

body:has(.gallery-contact-container) .vip-store-filters::before {
    content: "Categorías";
    display: block;
    margin: 0 0 8px;
    color: #10212c;
    font-size: 1.1rem;
    font-weight: 950;
}

body:has(.gallery-contact-container) .vip-store-filters::after {
    content: "Elegí una categoría para ver productos específicos.";
    display: block;
    margin-top: 12px;
    border-top: 1px solid rgba(1, 95, 125, 0.12);
    padding-top: 14px;
    color: #58707d;
    font-size: 0.88rem;
    line-height: 1.35;
}

body:has(.gallery-contact-container) .vip-store-filter {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: space-between !important;
    border-radius: 12px !important;
    padding: 11px 12px !important;
    text-align: left !important;
}

body:has(.gallery-contact-container) .vip-store-filter.is-active {
    box-shadow: 0 12px 24px rgba(1, 180, 181, 0.20) !important;
}

body:has(.gallery-contact-container) .vip-store-featured {
    grid-area: featured !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head {
    min-height: 44px !important;
    padding: 0 2px 12px !important;
    color: #10212c !important;
    font-size: 1.22rem !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head span i {
    color: #f0b82f !important;
    filter: drop-shadow(0 5px 10px rgba(199, 143, 12, 0.20));
}

body:has(.gallery-contact-container) .vip-store-featured-head small {
    color: #10212c !important;
    background: #fff0a9 !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
    grid-template-columns: repeat(auto-fit, minmax(218px, 1fr)) !important;
    gap: 18px !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-card {
    max-width: none !important;
    border-color: rgba(1, 95, 125, 0.12) !important;
    box-shadow: 0 16px 34px rgba(18, 60, 75, 0.10) !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-card-media {
    max-height: 300px !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-add,
body:has(.gallery-contact-container) .vip-store-category .vip-store-add {
    background: linear-gradient(135deg, #10c965, #078d41) !important;
}

body:has(.gallery-contact-container) .vip-store-categories {
    grid-area: categories !important;
}

body:has(.gallery-contact-container) .vip-store-category {
    border-radius: 16px !important;
    background: #ffffff !important;
}

body:has(.gallery-contact-container) .vip-store-category summary {
    min-height: 66px !important;
    padding: 18px 20px !important;
}

body:has(.gallery-contact-container) .vip-store-empty {
    grid-area: empty !important;
}

@media (max-width: 900px) {
    body:has(.gallery-contact-container) .vip-store-section {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "heading"
            "search"
            "filters"
            "featured"
            "categories"
            "empty" !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading {
        grid-template-columns: 1fr !important;
    }

    body:has(.gallery-contact-container) .vip-store-live-strip {
        grid-column: 1 !important;
        grid-row: auto !important;
        justify-self: start !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
    }

    body:has(.gallery-contact-container) .vip-store-filters {
        position: static !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 2px 2px 10px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body:has(.gallery-contact-container) .vip-store-filters::before,
    body:has(.gallery-contact-container) .vip-store-filters::after {
        display: none !important;
    }

    body:has(.gallery-contact-container) .vip-store-filter {
        width: auto !important;
        min-width: max-content !important;
        border-radius: 999px !important;
        justify-content: center !important;
    }
}

/* VIP minisitio information panels. */
body:has(.gallery-contact-container) .vip-business-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: 18px;
    width: 100%;
    margin-top: 22px;
}

body:has(.gallery-contact-container) .vip-info-card {
    border: 1px solid rgba(1, 95, 125, 0.14);
    border-radius: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 32px rgba(18, 60, 75, 0.08);
}

body:has(.gallery-contact-container) .vip-info-card-description {
    grid-column: 1 / -1;
}

body:has(.gallery-contact-container) .vip-info-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--vip-white-text) !important;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
}

body:has(.gallery-contact-container) .vip-info-card h3::after {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #01b4b5, transparent);
}

body:has(.gallery-contact-container) .vip-info-card .business-description {
    color: #1d3746;
    line-height: 1.62;
}

body:has(.gallery-contact-container) .vip-info-card-contact .contact-list {
    margin: 0;
}

body:has(.gallery-contact-container) .vip-info-card-contact .contact-item {
    padding: 9px 0;
    border-bottom: 1px solid rgba(1, 95, 125, 0.1);
}

body:has(.gallery-contact-container) .vip-info-card-contact .contact-item:last-child {
    border-bottom: 0;
}

body:has(.gallery-contact-container) .vip-info-card-contact .contact-item i {
    color: #126181;
}

body:has(.gallery-contact-container) .vip-info-card-services .service-list {
    margin: 0;
}

body:has(.gallery-contact-container) .vip-business-actions {
    display: grid;
    gap: 16px;
    width: 100%;
    margin-top: 18px;
}

body:has(.gallery-contact-container) .vip-business-actions .social-icons {
    margin: 0;
}

/* VIP store cart white-mode contrast. */
body:has(.gallery-contact-container) .vip-store-cart-panel {
    background: #ffffff !important;
    border: 1px solid rgba(1, 95, 125, 0.16) !important;
    color: #10212c !important;
    max-height: min(720px, calc(100dvh - 40px)) !important;
    overflow: hidden !important;
    box-shadow: 0 28px 70px rgba(6, 20, 30, 0.28) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-head {
    border-bottom-color: rgba(1, 95, 125, 0.12) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-head span {
    color: #079345 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-head strong {
    color: #10212c !important;
}

body:has(.gallery-contact-container) .vip-store-cart-close {
    color: #ffffff !important;
    background: #126181 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-items {
    flex: 1 1 auto !important;
    gap: 10px !important;
    min-height: 0 !important;
    max-height: min(46dvh, 430px) !important;
    overflow: auto !important;
    overscroll-behavior: contain !important;
}

body:has(.gallery-contact-container) .vip-store-cart-row {
    align-items: flex-start !important;
    border: 1px solid rgba(1, 95, 125, 0.12) !important;
    border-radius: 12px !important;
    padding: 11px 12px !important;
    color: #10212c !important;
    background: #f6fbfd !important;
}

body:has(.gallery-contact-container) .vip-store-cart-row span {
    color: #10212c !important;
    font-weight: 800 !important;
    line-height: 1.28 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-row small {
    display: inline-block;
    margin-top: 3px;
    color: #526a78 !important;
    font-weight: 700 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-row button {
    flex: 0 0 auto;
    border-radius: 999px !important;
    padding: 7px 10px !important;
    color: #b92318 !important;
    background: rgba(233, 65, 47, 0.1) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-footer {
    border-top-color: rgba(1, 95, 125, 0.12) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-total {
    color: #7a4c00 !important;
    background: rgba(255, 226, 135, 0.34) !important;
    border: 1px solid rgba(199, 143, 12, 0.22) !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send {
    color: #ffffff !important;
    background: linear-gradient(135deg, #14b957, #07833b) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-clear {
    color: #b92318 !important;
    background: transparent !important;
}

/* VIP store product detail modal. */
body:has(.gallery-contact-container) .vip-store-modal {
    background: rgba(2, 10, 16, 0.76) !important;
    backdrop-filter: blur(10px);
}

body:has(.gallery-contact-container) .vip-store-product-modal-panel {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
    gap: 24px;
    width: min(980px, 96vw);
    max-height: 90vh;
    overflow: auto;
    padding: 18px;
    border: 1px solid rgba(1, 209, 255, 0.2) !important;
    border-radius: 22px;
    background: #ffffff !important;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36) !important;
}

body:has(.gallery-contact-container) .vip-store-modal-media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 420px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f6fbfd, #eef6f8);
    overflow: hidden;
    touch-action: pan-y;
}

body:has(.gallery-contact-container) .vip-store-modal-media img {
    width: 100%;
    max-width: 440px;
    max-height: 520px;
    border-radius: 16px;
    object-fit: contain;
    background: transparent;
}

body:has(.gallery-contact-container) .vip-store-modal-zoom {
    --zoom-scale: 1;
    --zoom-x: 0px;
    --zoom-y: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    min-height: min(520px, 58vh);
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
    background: rgba(255, 255, 255, 0.45);
}

body:has(.gallery-contact-container) .vip-store-modal-zoom.is-zoomed {
    cursor: grab;
}

body:has(.gallery-contact-container) .vip-store-modal-zoom.is-dragging {
    cursor: grabbing;
}

body:has(.gallery-contact-container) .vip-store-modal-zoom img {
    transform: translate3d(var(--zoom-x), var(--zoom-y), 0) scale(var(--zoom-scale));
    transform-origin: center center;
    transition: transform 160ms ease;
    will-change: transform;
    pointer-events: none;
}

body:has(.gallery-contact-container) .vip-store-modal-zoom.is-dragging img {
    transition: none;
}

body:has(.gallery-contact-container) .vip-store-zoom-hint {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #10212c;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 20px rgba(16, 33, 44, 0.13);
    font-size: 12px;
    font-weight: 900;
    opacity: 0.86;
    pointer-events: none;
}

body:has(.gallery-contact-container) .vip-store-modal-zoom.is-zoomed .vip-store-zoom-hint {
    opacity: 0;
}

body:has(.gallery-contact-container) .vip-store-zoom-control {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: min(210px, calc(100% - 28px));
    max-width: 100%;
    margin: 10px auto 4px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(11, 20, 28, 0.84);
    box-shadow: 0 14px 30px rgba(16, 33, 44, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: default;
}

/* VIP store responsive polish: balanced catalog scale and persistent cart CTA. */
body:has(.gallery-contact-container) .vip-store-section {
    width: min(1360px, calc(100% - clamp(28px, 5vw, 92px))) !important;
    margin: clamp(28px, 4vw, 54px) auto 70px !important;
    padding: clamp(22px, 2.8vw, 40px) !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
    gap: clamp(18px, 2.4vw, 34px) !important;
}

body:has(.gallery-contact-container) .vip-store-heading h2 {
    font-size: clamp(2.1rem, 4.1vw, 3.45rem) !important;
}

body:has(.gallery-contact-container) .vip-store-grid,
body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
    grid-template-columns: repeat(auto-fill, minmax(clamp(176px, 15vw, 226px), 1fr)) !important;
    gap: clamp(14px, 1.6vw, 22px) !important;
}

body:has(.gallery-contact-container) .vip-store-featured {
    width: 100% !important;
    margin: 8px 0 22px !important;
    padding: clamp(16px, 2vw, 24px) !important;
}

body:has(.gallery-contact-container) .vip-store-card-media {
    max-height: clamp(184px, 21vw, 286px) !important;
    padding: clamp(8px, 1.1vw, 12px) !important;
}

body:has(.gallery-contact-container) .vip-store-card-body {
    gap: clamp(7px, 1vw, 10px) !important;
    padding: clamp(12px, 1.4vw, 16px) !important;
}

body:has(.gallery-contact-container) .vip-store-card-body h3 {
    font-size: clamp(0.95rem, 1.1vw, 1.08rem) !important;
    line-height: 1.2 !important;
}

body:has(.gallery-contact-container) .vip-store-card-body p {
    font-size: clamp(0.84rem, 0.95vw, 0.92rem) !important;
    line-height: 1.36 !important;
}

body:has(.gallery-contact-container) .vip-store-price {
    font-size: clamp(1.18rem, 1.65vw, 1.42rem) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab {
    position: fixed !important;
    right: clamp(18px, 3vw, 42px) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px) !important;
    left: auto !important;
    z-index: 1250 !important;
    width: auto !important;
    min-width: 190px !important;
    max-width: calc(100vw - 32px) !important;
    box-shadow: 0 18px 42px rgba(5, 120, 62, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.24) inset !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab[hidden] {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-cart {
    z-index: 1400 !important;
}

body:has(.gallery-contact-container) .vip-product-modal,
body:has(.gallery-contact-container) .vip-store-product-modal {
    z-index: 1450 !important;
}

@media (min-width: 1121px) and (max-width: 1440px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: min(1180px, calc(100% - 56px)) !important;
        padding: 28px !important;
        grid-template-columns: minmax(210px, 252px) minmax(0, 1fr) !important;
        gap: 26px !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        grid-template-columns: repeat(auto-fill, minmax(174px, 1fr)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 238px !important;
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: min(940px, calc(100% - 36px)) !important;
        padding: 26px !important;
        grid-template-columns: 1fr !important;
    }

    body:has(.gallery-contact-container) .vip-store-categories {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 28px) !important;
        margin: 28px auto 78px !important;
        padding: 24px 18px !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body:has(.gallery-contact-container) .vip-store-toolbar {
        gap: 12px !important;
        margin: 18px 0 !important;
    }

    body:has(.gallery-contact-container) .vip-store-categories {
        gap: 12px !important;
    }
}

@media (max-width: 640px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 16px) !important;
        margin: 22px auto 86px !important;
        padding: 18px 10px 86px !important;
        border-radius: 18px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading {
        gap: 7px !important;
        padding-bottom: 14px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading h2 {
        font-size: clamp(1.85rem, 9vw, 2.45rem) !important;
        line-height: 1.02 !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading p {
        font-size: 0.92rem !important;
        line-height: 1.42 !important;
    }

    body:has(.gallery-contact-container) .vip-store-search {
        min-height: 48px !important;
        padding: 0 12px !important;
    }

    body:has(.gallery-contact-container) .vip-store-search input {
        min-height: 46px !important;
        font-size: 0.92rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card {
        border-radius: 14px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: clamp(132px, 43vw, 176px) !important;
        padding: 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body {
        gap: 6px !important;
        padding: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.84rem !important;
        line-height: 1.16 !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body p {
        font-size: 0.76rem !important;
        line-height: 1.28 !important;
        -webkit-line-clamp: 2 !important;
    }

    body:has(.gallery-contact-container) .vip-store-product-category,
    body:has(.gallery-contact-container) .vip-store-stock,
    body:has(.gallery-contact-container) .vip-store-promo-badge {
        font-size: 0.68rem !important;
        padding: 4px 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-price {
        font-size: 1.08rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-add,
    body:has(.gallery-contact-container) .vip-store-qty-control {
        min-height: 38px !important;
        border-radius: 11px !important;
        font-size: 0.82rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab {
        left: auto !important;
        right: 12px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: 50px !important;
        max-width: calc(100vw - 24px) !important;
        padding: 12px 14px !important;
        border-radius: 999px !important;
        gap: 9px !important;
        font-size: 0.92rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab strong {
        min-width: 26px !important;
        height: 26px !important;
        font-size: 0.88rem !important;
    }
}

@media (max-width: 360px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 10px) !important;
        padding-inline: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        gap: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 142px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.78rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab {
        right: 10px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
        padding: 11px 12px !important;
    }
}

body:has(.gallery-contact-container) .vip-store-zoom-control i {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 12px;
    opacity: 0.9;
}

body:has(.gallery-contact-container) .vip-store-zoom-control input {
    flex: 1 1 auto;
    min-width: 0;
    height: 20px;
    accent-color: #00c8d7;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

body:has(.gallery-contact-container) .vip-store-zoom-control input::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

body:has(.gallery-contact-container) .vip-store-zoom-control input::-webkit-slider-thumb {
    width: 17px;
    height: 17px;
    margin-top: -7px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 200, 215, 0.24);
    -webkit-appearance: none;
}

body:has(.gallery-contact-container) .vip-store-zoom-control input::-moz-range-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

body:has(.gallery-contact-container) .vip-store-zoom-control input::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 200, 215, 0.24);
}

body:has(.gallery-contact-container) .vip-store-modal-thumbs {
    display: flex;
    justify-content: center;
    gap: 9px;
    width: 100%;
    max-width: 440px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    scrollbar-width: thin;
    margin: 50px;
}

body:has(.gallery-contact-container) .vip-store-modal-thumbs[hidden] {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-modal-thumb {
    flex: 0 0 58px;
    width: 58px !important;
    height: 58px !important;
    padding: 0 !important;
    border: 2px solid transparent !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    overflow: hidden;
    opacity: 0.68;
    box-shadow: 0 8px 18px rgba(16, 33, 44, 0.12);
}

body:has(.gallery-contact-container) .vip-store-modal-thumb.is-active {
    border-color: #00bdd2 !important;
    opacity: 1;
}

body:has(.gallery-contact-container) .vip-store-modal-thumb img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
}

body:has(.gallery-contact-container) .vip-store-modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 2;
    color: #10212c !important;
    background: #ffffff !important;
    box-shadow: 0 10px 26px rgba(16, 33, 44, 0.14);
}

body:has(.gallery-contact-container) .vip-store-modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 18px 18px 0;
    color: #10212c;
}

body:has(.gallery-contact-container) .vip-store-modal-category,
body:has(.gallery-contact-container) .vip-store-modal-meta span {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #006f8d;
    background: rgba(1, 209, 255, 0.12);
    border: 1px solid rgba(1, 209, 255, 0.35);
    font-size: 13px;
    font-weight: 900;
}

body:has(.gallery-contact-container) .vip-store-modal-info h3 {
    margin: 0;
    color: #10212c !important;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.05;
    font-weight: 900;
}

body:has(.gallery-contact-container) .vip-store-modal-price-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

body:has(.gallery-contact-container) .vip-store-modal-price-block strong {
    color: #0b7a3e !important;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    font-weight: 950;
}

body:has(.gallery-contact-container) .vip-store-modal-price-block span {
    color: #7a8790 !important;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 800;
}

body:has(.gallery-contact-container) .vip-store-modal-info p {
    margin: 4px 0 2px;
    color: #314957 !important;
    font-size: 16px;
    line-height: 1.5;
    white-space: pre-line;
}

body:has(.gallery-contact-container) .vip-store-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body:has(.gallery-contact-container) .vip-store-modal-add {
    width: 100% !important;
    height: auto !important;
    min-height: 52px;
    margin-top: 10px;
    border-radius: 14px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #23d265, #079340) !important;
    box-shadow: 0 14px 30px rgba(7, 147, 64, 0.22);
    font-size: 16px;
    font-weight: 950;
}

body:has(.gallery-contact-container) .vip-store-modal-add:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #7a8790 !important;
}

.vip-page-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-end;
    margin: 0 0 12px auto;
    padding: 10px 14px;
    border: 1px solid rgba(1, 180, 181, 0.28);
    border-radius: 999px;
    background: rgba(1, 180, 181, 0.10);
    color: #126181;
    font: inherit;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 97, 129, 0.10);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vip-page-share-button:hover,
.vip-page-share-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(1, 180, 181, 0.52);
    background: rgba(1, 180, 181, 0.16);
    box-shadow: 0 14px 28px rgba(18, 97, 129, 0.16);
    outline: none;
}

.vip-page-share-button i,
.vip-store-modal-share i {
    color: #01b4b5;
}

.vip-store-modal-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    border: 1px solid rgba(1, 180, 181, 0.24);
    border-radius: 12px;
    background: rgba(1, 180, 181, 0.10);
    color: #126181;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.vip-store-modal-share:hover,
.vip-store-modal-share:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(1, 180, 181, 0.48);
    background: rgba(1, 180, 181, 0.16);
    outline: none;
}

@media (max-width: 1180px) {
    body:has(.gallery-contact-container) .vip-business-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body:has(.gallery-contact-container) .vip-business-panels {
        gap: 12px;
        margin-top: 16px;
    }

    body:has(.gallery-contact-container) .vip-info-card {
        padding: 16px;
        border-radius: 14px;
    }

    .vip-page-share-button {
        align-self: stretch;
        width: 100%;
        margin-bottom: 14px;
    }

    body:has(.gallery-contact-container) .vip-store-product-modal-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 12px;
        border-radius: 18px;
    }

    body:has(.gallery-contact-container) .vip-store-modal-media {
        min-height: 300px;
        padding: 12px;
    }

    body:has(.gallery-contact-container) .vip-store-modal-media img {
        max-width: 100%;
        max-height: 360px;
    }

    body:has(.gallery-contact-container) .vip-store-modal-zoom {
        max-width: 100%;
        min-height: 300px;
    }

    body:has(.gallery-contact-container) .vip-store-zoom-hint {
        display: none;
    }

    body:has(.gallery-contact-container) .vip-store-zoom-control {
        width: min(240px, calc(100% - 24px));
        margin: 10px auto 6px;
        padding: 10px 12px;
    }

    body:has(.gallery-contact-container) .vip-store-modal-info {
        padding: 4px 4px 8px;
    }

    body:has(.gallery-contact-container) .vip-store-modal-thumb {
        flex-basis: 50px;
        width: 50px !important;
        height: 50px !important;
    }
}

/* VIP store final polish: full-width catalog, golden featured area, clean share action. */
body:has(.gallery-contact-container) .vip-store-section {
    width: min(1680px, calc(100% - 48px)) !important;
    margin: 34px auto 54px !important;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr) !important;
}

body:has(.gallery-contact-container) .vip-store-featured {
    padding: 18px !important;
    border: 1px solid rgba(191, 128, 0, 0.34) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(135deg, #fff4c8 0%, #f1d46f 48%, #d4a12f 100%) !important;
    box-shadow: 0 22px 44px rgba(135, 92, 13, 0.16) !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head {
    padding: 0 0 16px !important;
    color: #172331 !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head span {
    color: #172331 !important;
}

body:has(.gallery-contact-container) .vip-store-featured-head small {
    color: #172331 !important;
    background: rgba(255, 255, 255, 0.74) !important;
    border: 1px solid rgba(191, 128, 0, 0.18) !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
    grid-template-columns: repeat(auto-fit, minmax(212px, 248px)) !important;
    justify-content: start !important;
}

.vip-store-modal-share {
    min-height: 50px;
    border-color: rgba(18, 97, 129, 0.18);
    background: linear-gradient(180deg, #f7fcfd, #edf8fb);
    color: #126181;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74), 0 10px 22px rgba(18, 97, 129, 0.08);
}

.vip-store-modal-share:hover,
.vip-store-modal-share:focus-visible {
    border-color: rgba(1, 180, 181, 0.46);
    background: linear-gradient(180deg, #ffffff, #e8f8fb);
    color: #0d4d68;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86), 0 14px 28px rgba(18, 97, 129, 0.13);
}

@media (max-width: 900px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: min(100% - 20px, 760px) !important;
        margin: 22px auto 36px !important;
        grid-template-columns: 1fr !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured {
        padding: 14px !important;
        border-radius: 18px !important;
    }
}

/* Keep business status badges under the VIP title; the store header uses its own layout. */
body:has(.gallery-contact-container) .contact-info>.vip-store-live-strip {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: start !important;
    align-self: start !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 8px 0 26px !important;
}

body:has(.gallery-contact-container) .contact-info>.vip-store-live-strip .vip-store-live-badge {
    flex: 0 0 auto !important;
}

body:has(.gallery-contact-container) .vip-store-modal-info .vip-store-modal-share {
    appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 10px 0 0 !important;
    padding: 13px 16px !important;
    border: 1px solid rgba(18, 97, 129, 0.20) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, #f8fcfd, #eef8fb) !important;
    color: #126181 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(18, 97, 129, 0.08) !important;
}

body:has(.gallery-contact-container) .vip-store-modal-info .vip-store-modal-share i {
    color: #01b4b5 !important;
    font-size: 15px !important;
}

body:has(.gallery-contact-container) .vip-store-modal-info .vip-store-modal-share:hover,
body:has(.gallery-contact-container) .vip-store-modal-info .vip-store-modal-share:focus-visible {
    transform: translateY(-1px) !important;
    border-color: rgba(1, 180, 181, 0.50) !important;
    background: linear-gradient(180deg, #ffffff, #e8f8fb) !important;
    color: #0d4d68 !important;
    outline: none !important;
}

/* Store buttons: clearer hover/tap feedback and compact mobile product grid. */
body:has(.gallery-contact-container) .vip-store-add,
body:has(.gallery-contact-container) .vip-store-modal-add {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    transition:
        transform 150ms ease,
        box-shadow 180ms ease,
        filter 180ms ease,
        background 180ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transition:
        transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 240ms ease,
        filter 240ms ease,
        background 240ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send::after {
    content: "" !important;
    position: absolute !important;
    inset: -45% auto -45% -65% !important;
    width: 42% !important;
    transform: skewX(-18deg) !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send:hover,
body:has(.gallery-contact-container) .vip-store-cart-send:focus-visible {
    transform: translateY(-2px) scale(1.006) !important;
    filter: saturate(1.07) brightness(1.04) !important;
    box-shadow: 0 18px 32px rgba(19, 168, 79, 0.28) !important;
    outline: none !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send:hover::after,
body:has(.gallery-contact-container) .vip-store-cart-send:focus-visible::after {
    animation: vipStoreButtonSheen 1180ms ease forwards !important;
    opacity: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-cart-send:active {
    transform: translateY(1px) scale(0.988) !important;
    filter: saturate(1.1) brightness(0.98) !important;
    box-shadow: 0 9px 18px rgba(19, 168, 79, 0.20) !important;
}

body:has(.gallery-contact-container) .vip-store-add.is-quantity-control,
body:has(.gallery-contact-container) .vip-store-modal-add.is-quantity-control {
    padding: 0 !important;
    background: #e9f8ef !important;
    color: #087d3e !important;
    border: 1px solid rgba(19, 168, 79, 0.18) !important;
    box-shadow: 0 10px 24px rgba(19, 168, 79, 0.14) !important;
}

body:has(.gallery-contact-container) .vip-store-add.is-quantity-control:hover,
body:has(.gallery-contact-container) .vip-store-add.is-quantity-control:focus-visible,
body:has(.gallery-contact-container) .vip-store-modal-add.is-quantity-control:hover,
body:has(.gallery-contact-container) .vip-store-modal-add.is-quantity-control:focus-visible {
    transform: translateY(-1px) scale(1.006) !important;
    box-shadow: 0 14px 26px rgba(19, 168, 79, 0.18) !important;
}

body:has(.gallery-contact-container) .vip-store-add.is-quantity-control::after,
body:has(.gallery-contact-container) .vip-store-modal-add.is-quantity-control::after {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-qty-control {
    display: grid !important;
    grid-template-columns: 34px minmax(28px, 1fr) 34px !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    min-height: 40px !important;
    padding: 5px !important;
    border-radius: inherit !important;
    background: linear-gradient(180deg, #edf9f3, #dff4ea) !important;
}

body:has(.gallery-contact-container) .vip-store-modal-add .vip-store-qty-control {
    min-height: 52px !important;
    grid-template-columns: 42px minmax(42px, 1fr) 42px !important;
    padding: 6px !important;
}

body:has(.gallery-contact-container) .vip-store-qty-control strong {
    color: #087d3e !important;
    font-size: 1rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-qty-btn {
    display: grid !important;
    place-items: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0b9850 !important;
    font-size: 1.2rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 16px rgba(8, 125, 62, 0.14) !important;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-modal-add .vip-store-qty-btn {
    width: 34px !important;
    height: 34px !important;
}

body:has(.gallery-contact-container) .vip-store-qty-btn[data-cart-quantity="decrease"] {
    color: #5dbb89 !important;
}

body:has(.gallery-contact-container) .vip-store-qty-btn:hover {
    transform: scale(1.08) !important;
    background: #0fa45b !important;
    color: #ffffff !important;
}

body:has(.gallery-contact-container) .vip-store-qty-btn:active {
    transform: scale(0.94) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    min-height: 52px !important;
    padding: 12px 15px 12px 18px !important;
    border-radius: 999px !important;
    font-size: 1rem !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transition:
        transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 320ms ease,
        filter 320ms ease,
        background 320ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab[hidden] {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-add::after,
body:has(.gallery-contact-container) .vip-store-modal-add::after,
body:has(.gallery-contact-container) .vip-store-cart-fab::after {
    content: "" !important;
    position: absolute !important;
    inset: -40% auto -40% -65% !important;
    width: 42% !important;
    transform: skewX(-18deg) !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-add:hover,
body:has(.gallery-contact-container) .vip-store-add:focus-visible,
body:has(.gallery-contact-container) .vip-store-modal-add:hover,
body:has(.gallery-contact-container) .vip-store-modal-add:focus-visible {
    transform: translateY(-2px) scale(1.015) !important;
    filter: saturate(1.08) brightness(1.03) !important;
    box-shadow: 0 18px 30px rgba(19, 168, 79, 0.32) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab:hover,
body:has(.gallery-contact-container) .vip-store-cart-fab:focus-visible {
    transform: translateY(-2px) scale(1.012) !important;
    filter: saturate(1.06) brightness(1.03) !important;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.16) inset !important;
}

body:has(.gallery-contact-container) .vip-store-add:hover::after,
body:has(.gallery-contact-container) .vip-store-add:focus-visible::after,
body:has(.gallery-contact-container) .vip-store-modal-add:hover::after,
body:has(.gallery-contact-container) .vip-store-modal-add:focus-visible::after,
body:has(.gallery-contact-container) .vip-store-cart-fab:hover::after,
body:has(.gallery-contact-container) .vip-store-cart-fab:focus-visible::after {
    animation: vipStoreButtonSheen 1080ms ease forwards !important;
    opacity: 1 !important;
}

body:has(.gallery-contact-container) .vip-store-add:active,
body:has(.gallery-contact-container) .vip-store-modal-add:active,
body:has(.gallery-contact-container) .vip-store-cart-fab:active {
    transform: translateY(1px) scale(0.982) !important;
    filter: saturate(1.12) brightness(0.98) !important;
    box-shadow: 0 8px 18px rgba(19, 168, 79, 0.22) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab strong {
    transition: transform 150ms ease, background 150ms ease !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab:hover strong,
body:has(.gallery-contact-container) .vip-store-cart-fab:focus-visible strong {
    transform: scale(1.08) !important;
    background: #eafff1 !important;
}

@keyframes vipStoreButtonSheen {
    from {
        left: -65%;
    }

    to {
        left: 125%;
    }
}

@media (prefers-reduced-motion: reduce) {

    body:has(.gallery-contact-container) .vip-store-add,
    body:has(.gallery-contact-container) .vip-store-modal-add,
    body:has(.gallery-contact-container) .vip-store-cart-fab,
    body:has(.gallery-contact-container) .vip-store-cart-fab strong {
        transition: none !important;
    }

    body:has(.gallery-contact-container) .vip-store-add::after,
    body:has(.gallery-contact-container) .vip-store-modal-add::after,
    body:has(.gallery-contact-container) .vip-store-cart-fab::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body:has(.gallery-contact-container) .vip-store-cart {
        min-height: 100dvh !important;
        align-items: center !important;
        justify-items: center !important;
        place-items: center !important;
        overflow: hidden !important;
        padding: max(12px, env(safe-area-inset-top, 0px)) 14px max(12px, env(safe-area-inset-bottom, 0px)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-panel {
        width: min(520px, calc(100vw - 28px)) !important;
        max-height: calc(100dvh - 28px) !important;
        border-radius: 18px !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-items {
        max-height: min(48dvh, 420px) !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card {
        min-width: 0 !important;
        border-radius: 15px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        aspect-ratio: 4 / 5 !important;
        max-height: 170px !important;
        padding: 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body {
        padding: 10px !important;
        gap: 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.86rem !important;
        line-height: 1.14 !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body p {
        display: none !important;
    }

    body:has(.gallery-contact-container) .vip-store-price {
        font-size: 1.05rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-product-category,
    body:has(.gallery-contact-container) .vip-store-stock,
    body:has(.gallery-contact-container) .vip-store-promo-badge {
        padding: 5px 8px !important;
        font-size: 0.72rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-add {
        min-height: 36px !important;
        padding: 8px 9px !important;
        border-radius: 10px !important;
        font-size: 0.82rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab {
        position: fixed !important;
        left: 14px !important;
        right: 14px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 14px) !important;
        z-index: 1250 !important;
        width: auto !important;
        min-height: 56px !important;
        padding: 13px 16px !important;
        border-radius: 18px !important;
        font-size: 1rem !important;
        box-shadow: 0 18px 38px rgba(4, 32, 22, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.14) inset !important;
    }
}

@media (max-width: 360px) {

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-category .vip-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 148px !important;
        padding: 6px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body {
        padding: 9px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.78rem !important;
    }
}

.search-empty-state {
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    padding: 18px;
    text-align: center;
}


/* Footer home - ajuste mobile */
@media (max-width: 768px) {
    .footer {
        padding: 34px 18px 38px;
    }

    .footer-container {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        max-width: 430px;
        text-align: center;
    }

    .footer-info,
    .footer-links,
    .footer-contact,
    .footer-social {
        align-items: center;
        display: flex;
        flex: none;
        flex-direction: column;
        margin: 0;
        min-width: 0;
        width: 100%;
    }

    .footer-brand-logos {
        align-items: center;
        display: grid;
        gap: 12px;
        justify-items: center;
        width: 100%;
    }

    .footer-logo {
        margin-top: 0;
        max-width: 300px;
        width: 100%;
    }

    .footer-municipio-logo {
        max-height: 58px;
        width: min(210px, 78%);
        margin-bottom: 30px;
    }

    .footer-info p {
        line-height: 1.35;
        margin: 8px 0 0;
    }

    .footer h4 {
        color: #00d2d3;
        margin: 0 0 12px;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .footer-links li {
        margin: 0;
    }

    .footer-links a,
    .footer-social a {
        align-items: center;
        display: inline-flex;
        gap: 7px;
        justify-content: center;
        line-height: 1.35;
        padding: 4px 0;
        text-align: center;
    }

    .footer-links a i,
    .footer-social a i,
    .footer-contact p i {
        margin-right: 0;
    }

    .footer-contact {
        gap: 8px;
    }

    .footer-contact p {
        align-items: center;
        display: flex;
        gap: 6px;
        justify-content: center;
        line-height: 1.35;
        margin: 0;
        overflow-wrap: anywhere;
        text-align: center;
        width: 100%;
    }

    .footer-social {
        gap: 8px;
    }

    .footer-social a {
        margin-bottom: 0;
    }
}

/* VIP store final viewport override: balanced catalog sizing and persistent cart CTA. */
body:has(.gallery-contact-container) .vip-store-section {
    width: min(1360px, calc(100% - clamp(28px, 5vw, 92px))) !important;
    margin: clamp(28px, 4vw, 54px) auto 76px !important;
    padding: clamp(22px, 2.8vw, 40px) !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
    gap: clamp(18px, 2.4vw, 34px) !important;
}

body:has(.gallery-contact-container) .vip-store-heading {
    grid-column: 1 / -1 !important;
}

body:has(.gallery-contact-container) .vip-store-heading h2 {
    font-size: clamp(2.1rem, 3.6vw, 4.15rem) !important;
    line-height: 1.02 !important;
}

body:has(.gallery-contact-container) .vip-store-sidebar {
    align-self: start !important;
    position: sticky !important;
    top: 92px !important;
}

body:has(.gallery-contact-container) .vip-store-main {
    min-width: 0 !important;
}

body:has(.gallery-contact-container) .vip-store-grid {
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)) !important;
    gap: clamp(12px, 1.4vw, 18px) !important;
}

body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
    grid-template-columns: repeat(auto-fit, minmax(176px, 220px)) !important;
}

body:has(.gallery-contact-container) .vip-store-card-media {
    max-height: clamp(190px, 19vw, 246px) !important;
}

body:has(.gallery-contact-container) .vip-store-card-body {
    padding: 13px !important;
    gap: 9px !important;
}

body:has(.gallery-contact-container) .vip-store-card-body h3 {
    font-size: clamp(0.94rem, 1.02vw, 1.08rem) !important;
    line-height: 1.18 !important;
}

body:has(.gallery-contact-container) .vip-store-price {
    font-size: clamp(1.22rem, 1.55vw, 1.52rem) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab {
    position: fixed !important;
    right: clamp(16px, 3vw, 42px) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px) !important;
    left: auto !important;
    width: auto !important;
    min-width: 190px !important;
    max-width: calc(100vw - 32px) !important;
    min-height: 54px !important;
    z-index: 1250 !important;
    border-radius: 999px !important;
    padding: 14px 18px !important;
    box-shadow: 0 18px 34px rgba(5, 150, 74, 0.28), 0 10px 18px rgba(0, 0, 0, 0.18) !important;
}

body:has(.gallery-contact-container) .vip-store-cart-fab[hidden] {
    display: none !important;
}

@media (min-width: 901px) {
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1121px) and (max-width: 1440px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: min(1180px, calc(100% - 56px)) !important;
        padding: 28px !important;
        grid-template-columns: minmax(205px, 252px) minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading h2 {
        font-size: clamp(2.2rem, 3.4vw, 3.45rem) !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid {
        grid-template-columns: repeat(auto-fit, minmax(168px, 206px)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 222px !important;
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: min(940px, calc(100% - 40px)) !important;
        padding: 26px !important;
        grid-template-columns: 1fr !important;
    }

    body:has(.gallery-contact-container) .vip-store-sidebar {
        position: static !important;
    }

    body:has(.gallery-contact-container) .vip-store-categories {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid {
        grid-template-columns: repeat(auto-fit, minmax(166px, 1fr)) !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 28px) !important;
        margin: 28px auto 82px !important;
        padding: 24px 18px !important;
        grid-template-columns: 1fr !important;
    }

    body:has(.gallery-contact-container) .vip-store-sidebar {
        position: static !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading h2 {
        font-size: clamp(2rem, 8vw, 3.3rem) !important;
    }

    body:has(.gallery-contact-container) .vip-store-statusbar,
    body:has(.gallery-contact-container) .vip-store-toolbar {
        justify-content: flex-start !important;
    }
}

@media (max-width: 640px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 16px) !important;
        padding: 18px 10px 88px !important;
        border-radius: 20px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading {
        gap: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading h2 {
        font-size: clamp(1.85rem, 10vw, 2.75rem) !important;
        letter-spacing: 0 !important;
    }

    body:has(.gallery-contact-container) .vip-store-heading p {
        font-size: 0.92rem !important;
        line-height: 1.35 !important;
    }

    body:has(.gallery-contact-container) .vip-store-search input {
        min-height: 48px !important;
        padding: 0 14px 0 42px !important;
        font-size: 0.95rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-featured {
        padding: 13px 10px !important;
        border-radius: 18px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card {
        border-radius: 14px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: clamp(132px, 43vw, 176px) !important;
        padding: 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body {
        padding: 10px !important;
        gap: 7px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.82rem !important;
        line-height: 1.16 !important;
    }

    body:has(.gallery-contact-container) .vip-store-product-desc {
        -webkit-line-clamp: 2 !important;
        font-size: 0.76rem !important;
        line-height: 1.28 !important;
    }

    body:has(.gallery-contact-container) .vip-store-price {
        font-size: 1.05rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-add,
    body:has(.gallery-contact-container) .vip-store-qty-control {
        min-height: 38px !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab {
        right: 12px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
        left: auto !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: 50px !important;
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        gap: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab strong {
        min-width: 24px !important;
        height: 24px !important;
        font-size: 0.82rem !important;
    }
}

@media (max-width: 360px) {
    body:has(.gallery-contact-container) .vip-store-section {
        width: calc(100% - 10px) !important;
        padding-inline: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-grid,
    body:has(.gallery-contact-container) .vip-store-featured .vip-store-grid {
        gap: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-media {
        max-height: 142px !important;
    }

    body:has(.gallery-contact-container) .vip-store-card-body h3 {
        font-size: 0.78rem !important;
    }

    body:has(.gallery-contact-container) .vip-store-cart-fab span {
        max-width: 82px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
}

/* Visor VIP a pantalla completa: la imagen ocupa el protagonismo sin perder el zoom. */
body:has(.gallery-contact-container) {
    --vip-fullscreen-z-index: 1600;
}

body.vip-store-fullscreen-open {
    overflow: hidden !important;
}

body:has(.gallery-contact-container) .vip-store-zoom-hint {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    white-space: nowrap;
}

body:has(.gallery-contact-container) .vip-store-modal-media > .vip-store-zoom-control {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen[hidden] {
    display: none !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen {
    position: fixed !important;
    inset: 0 !important;
    z-index: var(--vip-fullscreen-z-index) !important;
    display: grid !important;
    place-items: center !important;
    padding: 18px !important;
    background: rgba(2, 10, 16, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-panel {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    height: 100% !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-viewer {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(94vw, 1440px) !important;
    height: min(88vh, 920px) !important;
    touch-action: pan-y !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-zoom {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
    cursor: default !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-zoom img {
    width: auto !important;
    max-width: calc(100% - 16px) !important;
    height: auto !important;
    max-height: calc(100% - 16px) !important;
    border-radius: 8px !important;
    object-fit: contain !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-nav,
body:has(.gallery-contact-container) .vip-store-fullscreen-close {
    position: absolute !important;
    z-index: 4 !important;
    display: grid !important;
    place-items: center !important;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background: rgba(16, 33, 44, 0.78) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
    cursor: pointer !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-nav:hover,
body:has(.gallery-contact-container) .vip-store-fullscreen-close:hover {
    background: rgba(1, 180, 181, 0.9) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-prev {
    left: 2vw !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-next {
    right: 2vw !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-close {
    top: 18px !important;
    right: 18px !important;
    color: #10212c !important;
    background: #ffffff !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-count {
    position: absolute !important;
    right: 50% !important;
    bottom: 14px !important;
    z-index: 3 !important;
    min-width: 60px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: rgba(16, 33, 44, 0.82) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-align: center !important;
    transform: translateX(50%) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-zoom-control {
    position: absolute !important;
    left: 50% !important;
    bottom: 12px !important;
    z-index: 4 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: min(260px, calc(100% - 120px)) !important;
    max-width: 260px !important;
    margin: 0 !important;
    padding: 9px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: rgba(11, 20, 28, 0.86) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3) !important;
    transform: translateX(-50%) !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-zoom-control input {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

body:has(.gallery-contact-container) .vip-store-fullscreen-nav[hidden],
body:has(.gallery-contact-container) .vip-store-fullscreen-count[hidden] {
    display: none !important;
}

@media (max-width: 768px) {
    body:has(.gallery-contact-container) .vip-store-zoom-hint {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        padding: 7px 9px !important;
        font-size: 11px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen {
        padding: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-viewer {
        width: 100% !important;
        height: calc(100vh - 72px) !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-nav,
    body:has(.gallery-contact-container) .vip-store-fullscreen-close {
        width: 46px !important;
        height: 46px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-prev {
        left: 4px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-next {
        right: 4px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-close {
        top: 8px !important;
        right: 8px !important;
    }

    body:has(.gallery-contact-container) .vip-store-fullscreen-zoom-control {
        bottom: 10px !important;
        width: min(220px, calc(100% - 100px)) !important;
    }
}
