/* ====== LOGO CENTRADO ====== */
.logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 100px;
}

/* ===== FIX RESPONSIVE ===== */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    padding-top: 210px;
}

/* ====== HEADER (LOGO Y MENU) ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Esto se activa cuando scrolleas hacia abajo */
.header.hide {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

/* Botón del menú */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #7B4AC0;
}

/* ====== BOTONES SUPERIORES ====== */
.top-buttons {
    position: fixed;
    top: 113px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 900;
    background: #7B4AC0;
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: white;
    font-weight: bold;
}

.top-btn {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.divider {
    width: 1px;
    height: 28px;
    background: #fff;
}

/* ====== NAV CON SCROLL Y FLECHAS ====== */
.nav-wrapper {
    position: fixed;
    top: 165px;
    left: 0;
    width: 100%;
    z-index: 899;
    display: flex;
    align-items: center;
    background: white;
    padding: 5px 0;
}

.nav-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    flex: 1;
    padding: 10px;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.nav-scroll a {
    white-space: nowrap;
    font-size: 14px;
    color: black;
    font-weight: 500;
    text-decoration: none;
}

/* ====== FLECHAS ====== */
.nav-arrow {
    width: 37px;
    height: 35px;
    border: none;
    background: white;
    font-size: 22px;
    cursor: pointer;
    color: #444;
}

/* ===== BANNER POPUP ===== */
.banner-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.banner-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.banner-popup-box {
    position: relative;
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.7) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}

.banner-popup-overlay.active .banner-popup-box {
    transform: scale(1) translateY(0);
}

.banner-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.banner-popup-close:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

.banner-popup-img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.banner-popup-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #7B4AC0, #9A54FF);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.15s ease;
}

.banner-popup-btn:hover {
    background: linear-gradient(135deg, #6a3aaa, #8a44ee);
    transform: scale(1.02);
}

/* Cuando se hace scroll */
.top-buttons.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.nav-wrapper.sticky {
    position: fixed;
    top: 48px;
    width: 100%;
    z-index: 8999;
}

.sticky-spacer {
    height: 110px;
}

/* ===== FONDO GENERAL ===== */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("Imagenes/fondonubes.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
}

/* ===== SECCIONES DE CATEGORÍAS ===== */
.category-section {
    margin-bottom: 40px;
}

/* ===== BLOQUES DE IMAGEN DE SECCIÓN (BASE) ===== */
.section-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.section-image {
    width: 345px;
    max-width: 90%;
    height: auto;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    color: #7B4AC0;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    transform: scale(0.85);
}

/* ------ TARJETA DE PRODUCTO (MÁS GRANDES) ------ */
.product-card {
    width: 100%;
    max-width: 220px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding-bottom: 15px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: black;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

.product-title {
    font-size: 17px;
    color: #7B4AC0;
    font-weight: 900;
    text-align: center;
    margin: 12px 0 8px 0;
}

.product-desc {
    font-size: 14px;
    text-align: center;
    padding: 0 12px;
    color: #444;
    line-height: 1.3;
    height: 42px;
    overflow: hidden;
}

.product-price {
    font-size: 17px;
    text-align: center;
    font-weight: 700;
    margin-top: 8px;
    color: black;
}

.product-fav {
    font-size: 20px;
    text-align: right;
    padding-right: 15px;
    margin-top: 8px;
    color: #bebac3;
    transition: color .2s ease;
}

.product-fav.liked {
    color: #9A54FF;
    font-weight: bold;
}

/* ===== GRID DE TARJETAS (MEJORADO) ===== */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
}

/* Si solo hay 1 tarjeta, que esté centrada y más grande */
.product-grid:has(.product-card:only-child) {
    justify-content: center;
}

.product-grid:has(.product-card:only-child) .product-card {
    max-width: 280px;
    width: 90%;
}

.product-grid:has(.product-card:only-child) .product-img {
    height: 250px;
}

/* Si hay 2 o más tarjetas, máximo 2 por fila */
.product-grid .product-card {
    flex: 0 1 calc(50% - 10px);
    max-width: 220px;
}

/* ------ MODO EXPANDIDO ------ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 9990;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.product-card.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 92vw;
    max-width: 450px;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 9999;
    height: auto;
    padding-bottom: 25px;
    background: white !important;
    opacity: 1;
}

.product-card.expanded .product-desc {
    height: auto;
    font-size: 15px;
    line-height: 1.4;
}

.product-card.expanded .product-img {
    height: 280px;
    object-fit: cover;
}

/* ====== VERSION RESPONSIVE ====== */
@media (min-width: 500px) {
    .product-grid .product-card {
        flex: 0 1 calc(50% - 15px);
        max-width: 250px;
    }

    .product-grid:has(.product-card:only-child) .product-card {
        max-width: 320px;
    }
}

@media (min-width: 768px) {
    .product-grid .product-card {
        flex: 0 1 calc(33.33% - 15px);
        max-width: 280px;
    }

    .product-grid:has(.product-card:only-child) .product-card {
        max-width: 350px;
    }
}

/* ===== VENTANA DE CONTACTO ===== */
.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.contact-content {
    position: relative;
}

.contact-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #7B4AC0;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.contact-close:hover {
    color: #333;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    color: #7B4AC0;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-align: center;
}

.contact-phone {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: #7B4AC0;
}

.contact-schedule {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.schedule-day {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.day-name {
    font-weight: 600;
    color: #444;
}

.day-time {
    color: #666;
}

.more-schedule {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.more-schedule.show {
    max-height: 400px;
}

.toggle-schedule {
    width: 100%;
    background: none;
    border: none;
    color: #7B4AC0;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    margin-top: 5px;
    transition: color 0.2s ease;
}

.toggle-schedule:hover {
    color: #5a3490;
}

/* ===== BOTONES FLOTANTES ===== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9500;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #7B4AC0;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(123, 74, 192, 0.4);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(123, 74, 192, 0.6);
}

.float-btn:active {
    transform: scale(0.95);
}

.favorites-btn.active {
    background: #9A54FF;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(123, 74, 192, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(154, 84, 255, 0.8);
    }
}

.btn-icon {
    font-size: 24px;
}

/* ===== MODAL DE BÚSQUEDA ===== */
.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.search-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.search-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-close:hover {
    color: #333;
}

.search-title {
    font-family: 'Montserrat', sans-serif;
    color: #7B4AC0;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    margin-bottom: 15px;
}

.search-input:focus {
    outline: none;
    border-color: #7B4AC0;
}

.search-results {
    flex: 1;
    overflow-y: auto;
    margin-top: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: 1px solid #f0f0f0;
}

.search-result-item:hover {
    background: #f8f5fc;
}

.result-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
}

.result-info {
    flex: 1;
}

.result-title {
    font-size: 16px;
    font-weight: 700;
    color: #7B4AC0;
    margin: 0 0 5px 0;
}

.result-price {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.no-results {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 20px;
}

/* Scrollbar para resultados */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #7B4AC0;
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #5a3490;
}

/* ===== MENÚ LATERAL ===== */
/* OVERLAY OSCURO */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MENÚ LATERAL */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.side-menu.active {
    left: 0;
}

/* BOTÓN CERRAR */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    color: #333;
}

/* LOGO EN EL MENÚ */
.menu-logo {
    width: 120px;
    margin: 20px auto 30px;
    display: block;
}

/* SECCIÓN DESPLEGABLE */
.menu-section {
    margin-bottom: 15px;
}

.menu-toggle {
    width: 100%;
    background: #7B4AC0;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: #6a3da8;
}

.menu-toggle.purple {
    background: #7B4AC0;
    color: white;
}

.menu-toggle.purple:hover {
    background: #6a3da8;
}

.toggle-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.toggle-arrow.rotated {
    transform: rotate(180deg);
}

/* CONTENIDO DESPLEGABLE */
.menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
}

.menu-content.active {
    max-height: 500px;
}

.menu-item {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    margin: 5px 0;
}

.menu-item:hover {
    background: #f8f5fc;
    border-left-color: #7B4AC0;
    color: #7B4AC0;
    padding-left: 25px;
}


/* ===== ETIQUETA DE RECOMENDADO ===== */
.recommended-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
}

/* Animación sutil para la etiqueta */
.recommended-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* Ajustar la tarjeta para que la etiqueta se vea bien */
.product-card {
    position: relative;
}

/* ===== TARJETA ESPECIAL DE LA SEMANA ===== */
.especial-semana-wrapper {
    padding: 0 16px 30px;
    max-width: 520px;
    margin: 0 auto;
}

.especial-semana-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(123, 74, 192, 0.22);
    border: 2.5px solid #e7d9f7;
}

.especial-badge-top {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #7B4AC0, #9A54FF);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    padding: 11px 16px;
    letter-spacing: 1px;
}

.especial-fav {
    position: absolute;
    top: 52px;
    right: 14px;
    z-index: 5;
    font-size: 24px;
    color: #bebac3;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.especial-fav.liked {
    color: #9A54FF;
}

.especial-semana-img {
    width: 100%;
    display: block;
    height: 260px;
    object-fit: cover;
}

.especial-semana-body {
    padding: 18px 18px 22px;
}

.especial-semana-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 10px 0;
}

.especial-semana-acomp {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #777;
    text-align: center;
    margin: 0 0 18px 0;
    line-height: 1.6;
}

.especial-semana-acomp strong {
    color: #7B4AC0;
    font-weight: 700;
}

/* Tabla de precios */
.especial-price-table {
    background: #f9f5ff;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #e7d9f7;
}

.especial-price-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #7B4AC0, #9A54FF);
    padding: 10px 12px;
}

.especial-price-header span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-align: center;
    letter-spacing: 0.5px;
}

.especial-price-header span:first-child {
    text-align: left;
}

.especial-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 12px 12px;
    border-bottom: 1px solid #ede5f9;
    align-items: center;
}

.especial-price-row:last-child {
    border-bottom: none;
}

.especial-price-row:nth-child(odd) {
    background: rgba(123, 74, 192, 0.04);
}

.especial-price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #7B4AC0;
}

.especial-price-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #444;
    text-align: center;
}

.especial-price-val.highlighted {
    color: #7B4AC0;
    font-size: 15px;
    font-weight: 900;
}

/* ===== LIGHTBOX ESPECIAL DE LA SEMANA ===== */
.especial-semana-img {
    cursor: zoom-in;
}

.especial-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

.especial-lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.especial-lightbox-box {
    position: relative;
    max-width: 94vw;
    max-height: 90vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.especial-lightbox-overlay.active .especial-lightbox-box {
    transform: scale(1);
}

.especial-lightbox-img {
    display: block;
    max-width: 94vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.especial-lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
}

.especial-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}