/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.site-logo {
    position: relative;
}

.site-logo img {
    display: block;
    max-width: 257px; /* Tamaño del logo ajustable */
    margin: 0 auto;
    animation: pulse-effect 2s infinite ease-in-out; /* Efecto de pulsación */
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.site-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; /* Tamaño del contorno más pequeño */
    height: 110%; /* Tamaño del contorno más pequeño */
    border-radius: 50%; /* Contorno redondeado */
    background: transparent;
    animation: glow-effect 2s infinite ease-in-out; /* Efecto de brillo pulsante */
    z-index: 0; /* Detrás del logo */
}

/* Animación de pulsación */
@keyframes pulse-effect {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Zoom más pequeño */
    }
}

/* Animación de brillo pulsante */
@keyframes glow-effect {
    0%, 100% {
        opacity: 0.4; /* Luminosidad más baja */
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8; /* Luminosidad más alta */
        transform: translate(-50%, -50%) scale(1.2); /* Contorno más pequeño */
    }
}

/* Estilo general para los textos del menú */
.wd-header-nav .nav-link-text {
    color: white; /* Color blanco */
    font-family: 'Poppins', sans-serif; /* Tipografía Poppins */
    font-weight: 700; /* Grosor del texto */
    font-size: 12px; /* Tamaño del texto */
    text-transform: uppercase; /* Texto en mayúsculas */
    text-align: center; /* Centrado del texto */
   
    transition: all 0.3s ease-in-out; /* Transición suave */
}

/* Fondo del menú */
.wd-header-nav {
    background-color: black; /* Fondo negro */
    padding: 10px 0; /* Espaciado vertical */
}

/* Asegurarse de que los enlaces sean visibles al pasar el ratón */
.wd-header-nav .menu-item .woodmart-nav-link:hover {
    color: white; /* Mantener el color blanco al pasar el ratón */
}

/* Responsividad: Ajuste en dispositivos móviles */
@media (max-width: 768px) {
    .wd-header-nav .nav-link-text {
        font-size: 12px; /* Reducir tamaño en pantallas pequeñas */
        padding: 8px 10px; /* Ajustar espaciado */
    }
    .wd-header-nav {
        padding: 5px 0; /* Reducir espaciado vertical */
    }
}

/* ESTILOS DE MENU BADGRAUND DE TITULOS*/

/* Fondo animado solo para el elemento específico "OFERTAS" en tablet y escritorio */
@media (min-width: 769px) { /* Aplica desde tablets y escritorios */
    #menu-item-28223 .woodmart-nav-link {
        background-color: red; /* Color inicial */
        color: white; /* Texto blanco */
        border-radius: 5px; /* Bordes ligeramente redondeados */
        animation: colorChangeSolidOfertas 40s infinite; /* Animación infinita y lenta */
        transition: all 0.9s ease-in-out; /* Transición para hover */
    }

    /* Efecto hover para resaltar */
    #menu-item-28223 .woodmart-nav-link:hover {
        transform: scale(1.05); /* Agranda ligeramente el botón al pasar el ratón */
    }
}

/* Animación para cambiar colores de forma sólida */
@keyframes colorChangeSolidOfertas {
    0% {
        background-color: red; /* Rojo */
    }
    10% {
        background-color: orange; /* Naranja */
    }
    20% {
        background-color: yellow; /* Amarillo */
    }
    30% {
        background-color: green; /* Verde */
    }
    40% {
        background-color: cyan; /* Cian */
    }
    50% {
        background-color: blue; /* Azul */
    }
    60% {
        background-color: purple; /* Morado */
    }
    70% {
        background-color: pink; /* Rosado */
    }
    80% {
        background-color: gray; /* Gris */
    }
    90% {
        background-color: black; /* Negro */
    }
    100% {
        background-color: red; /* Vuelve al rojo */
    }
}

/* Asegurarse de que no haya cambios en dispositivos móviles */
@media (max-width: 768px) {
    #menu-item-28223 .woodmart-nav-link {
        background: none; /* Sin fondo animado en móvil */
    }
}

/* Fondo animado solo para el elemento específico "COMPUTADORAS" en tablet y escritorio */
@media (min-width: 769px) { /* Aplica desde tablets y escritorios */
    #menu-item-28232 .woodmart-nav-link {
        background-color: red; /* Color inicial */
        color: white; /* Texto blanco */
        border-radius: 5px; /* Bordes ligeramente redondeados */
        animation: colorChangeSolidComputadoras 40s infinite; /* Animación infinita y lenta */
        transition: all 0.9s ease-in-out; /* Transición para hover */
    }

    /* Efecto hover para resaltar */
    #menu-item-28232 .woodmart-nav-link:hover {
        transform: scale(1.05); /* Agranda ligeramente el botón al pasar el ratón */
    }
}

/* Animación para cambiar colores de forma sólida */
@keyframes colorChangeSolidComputadoras {
    0% {
        background-color: red; /* Rojo */
    }
    10% {
        background-color: orange; /* Naranja */
    }
    20% {
        background-color: yellow; /* Amarillo */
    }
    30% {
        background-color: green; /* Verde */
    }
    40% {
        background-color: cyan; /* Cian */
    }
    50% {
        background-color: blue; /* Azul */
    }
    60% {
        background-color: purple; /* Morado */
    }
    70% {
        background-color: pink; /* Rosado */
    }
    80% {
        background-color: gray; /* Gris */
    }
    90% {
        background-color: black; /* Negro */
    }
    100% {
        background-color: red; /* Vuelve al rojo */
    }
}

/* Asegurarse de que no haya cambios en dispositivos móviles */
@media (max-width: 768px) {
    #menu-item-28232 .woodmart-nav-link {
        background: none; /* Sin fondo animado en móvil */
    }
}

/* Fondo animado solo para el elemento específico "REMATES" en tablet y escritorio */
@media (min-width: 769px) { /* Aplica desde tablets y escritorios */
    #menu-item-28224 .woodmart-nav-link {
        background-color: red; /* Color inicial */
        color: white; /* Texto blanco */
        border-radius: 5px; /* Bordes ligeramente redondeados */
        animation: colorChangeSolidRemates 40s infinite; /* Animación infinita y lenta */
        transition: all 0.9s ease-in-out; /* Transición para hover */
    }

    /* Efecto hover para resaltar */
    #menu-item-28224 .woodmart-nav-link:hover {
        transform: scale(1.05); /* Agranda ligeramente el botón al pasar el ratón */
    }
}

/* Animación para cambiar colores de forma sólida */
@keyframes colorChangeSolidRemates {
    0% {
        background-color: red; /* Rojo */
    }
    10% {
        background-color: orange; /* Naranja */
    }
    20% {
        background-color: yellow; /* Amarillo */
    }
    30% {
        background-color: green; /* Verde */
    }
    40% {
        background-color: cyan; /* Cian */
    }
    50% {
        background-color: blue; /* Azul */
    }
    60% {
        background-color: purple; /* Morado */
    }
    70% {
        background-color: pink; /* Rosado */
    }
    80% {
        background-color: gray; /* Gris */
    }
    90% {
        background-color: black; /* Negro */
    }
    100% {
        background-color: red; /* Vuelve al rojo */
    }
}

/* Asegurarse de que no haya cambios en dispositivos móviles */
@media (max-width: 768px) {
    #menu-item-28224 .woodmart-nav-link {
        background: none; /* Sin fondo animado en móvil */
    }
}

/* menu header superior*/
/* Estilo general del texto */
.floating-text {
    font-family: 'Poppins', sans-serif; /* Tipografía elegante */
    font-size: 18px; /* Tamaño del texto */
    font-weight: 600; /* Peso del texto */
    color: #333; /* Color del texto */
    text-align: center; /* Centrado */
    padding: 10px 20px; /* Espaciado interno */
    background: rgba(255, 255, 255, 0.8); /* Fondo blanco translúcido */
    border: 1px solid #ddd; /* Borde suave */
    border-radius: 8px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para resaltar */
    display: inline-block; /* Para alineación personalizada */
    animation: floatingEffect 3s ease-in-out infinite; /* Animación flotante infinita */
}

/* Animación para el efecto flotante */
@keyframes floatingEffect {
    0% {
        transform: translateY(0); /* Posición inicial */
    }
    50% {
        transform: translateY(-10px); /* Subir */
    }
    100% {
        transform: translateY(0); /* Volver a la posición inicial */
    }
}

/* === Lumifat: Add to cart + WhatsApp en misma linea (single product) === */
form.cart {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
form.cart .quantity {
    flex: 0 0 auto;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}
form.cart .single_add_to_cart_button {
    flex: 1 1 240px;
    margin: 0 !important;
}
form.cart > div:not(.quantity) {
    flex: 0 1 auto;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: stretch;
}
form.cart .wayra-coc-button.wayra-coc-product {
    margin: 0 !important;
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 480px) {
    form.cart .single_add_to_cart_button,
    form.cart > div:not(.quantity),
    form.cart .wayra-coc-button.wayra-coc-product {
        flex: 1 1 100%;
    }
}
/* === end Lumifat patch === */

/* === Hide Woodmart cookie popup (cliente lo prefiere oculto) === */
.wd-cookies-popup, .wd-cookies-popup-overlay, #wd-cookies-popup { display: none !important; }

/* === Lumifat: Modern About page styling === */
/* Hero section: gradient overlay con mejor texto */
.page-id-4400 .elementor-top-section:first-of-type {
    position: relative;
}
.page-id-4400 .elementor-top-section:first-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}
.page-id-4400 .elementor-top-section:first-of-type h1.elementor-heading-title {
    font-size: clamp(40px, 6vw, 72px) !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Modern icon-box (Misión / Visión / Valores) */
.page-id-4400 .elementor-widget-icon-box .elementor-icon-box-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-id-4400 .elementor-widget-icon-box .elementor-icon-box-icon .elementor-icon {
    background: #D21E0F !important;
    border-radius: 50% !important;
    width: 84px !important;
    height: 84px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(210,30,15,0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.page-id-4400 .elementor-widget-icon-box .elementor-icon-box-icon .elementor-icon i,
.page-id-4400 .elementor-widget-icon-box .elementor-icon-box-icon .elementor-icon svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    font-size: 32px !important;
    width: 32px;
    height: 32px;
}
.page-id-4400 .elementor-widget-icon-box:hover .elementor-icon-box-icon .elementor-icon {
    transform: rotate(-8deg) scale(1.06);
    box-shadow: 0 15px 35px rgba(210,30,15,0.45);
}
.page-id-4400 .elementor-widget-icon-box .elementor-icon-box-title {
    margin-top: 18px;
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px;
}

/* Misión + Visión card containers (Section 3): bigger shadow + hover lift */
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(3) > .elementor-container > .elementor-column {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(3) > .elementor-container > .elementor-column:hover {
    transform: translateY(-8px);
}

/* Valores 4-col cards: subtle hover */
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(4) .elementor-column .elementor-widget-icon-box:hover {
    transform: translateY(-4px);
}

/* ¿Qué ofrecemos? cards: modern with image overlay + button slide */
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-inner-section .elementor-column {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-inner-section .elementor-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18) !important;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-widget-image img {
    transition: transform 0.6s ease;
    will-change: transform;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-column:hover .elementor-widget-image img {
    transform: scale(1.06);
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-widget-button .elementor-button {
    background: #D21E0F !important;
    border: none !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px;
    border-radius: 30px !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(210,30,15,0.25);
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-widget-button .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(210,30,15,0.4);
}

/* All h2 of sections: modern weight + accent underline */
.page-id-4400 .elementor-widget-heading h2.elementor-heading-title {
    font-weight: 800 !important;
    letter-spacing: -0.8px;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}
.page-id-4400 .elementor-widget-heading[data-element_type="widget"]:has(h2)::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 0 auto 10px;
    background: #D21E0F;
    border-radius: 2px;
}
.page-id-4400 .elementor-widget-heading + .elementor-widget-heading h4 {
    font-weight: 400 !important;
    color: #888 !important;
    font-size: 16px !important;
}

/* Intro image: rounded shadow with hover */
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.22);
}

/* WhatsApp CTA: glow + premium button */
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-column[data-element_type="column"]:nth-of-type(2) {
    box-shadow: 0 25px 60px rgba(37,211,102,0.4) !important;
    background: #25D366 !important;
    position: relative;
    overflow: hidden;
}
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-column[data-element_type="column"]:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    pointer-events: none;
}
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-widget-icon i.fab.fa-whatsapp,
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-widget-icon svg {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 22px;
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-widget-button .elementor-button {
    background: #FFFFFF !important;
    color: #128C7E !important;
    border-radius: 30px !important;
    padding: 14px 36px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.page-id-4400 .elementor-section.elementor-top-section:last-of-type .elementor-widget-button .elementor-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* Icon list (datos contacto): modern style */
.page-id-4400 .elementor-widget-icon-list .elementor-icon-list-item {
    padding: 8px 0;
    transition: transform 0.2s ease;
}
.page-id-4400 .elementor-widget-icon-list .elementor-icon-list-item:hover {
    transform: translateX(6px);
}
.page-id-4400 .elementor-widget-icon-list .elementor-icon-list-icon {
    background: rgba(210,30,15,0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Section 5 dark bg: title in white */
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(5) .elementor-widget-heading h2 {
    color: inherit !important;
}

/* === end Lumifat modern === */

/* === Lumifat: Accent underline en headings principales (fallback sin :has) === */
.page-id-4400 .elementor-widget-heading h2.elementor-heading-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 14px auto 0;
    background: #D21E0F;
    border-radius: 2px;
}
.page-id-4400 .elementor-widget-heading[data-id] h2.elementor-heading-title {
    text-align: center !important;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading h2.elementor-heading-title {
    text-align: left !important;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(2) .elementor-widget-heading h2.elementor-heading-title::after {
    margin-left: 0;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(6) .elementor-widget-heading h2.elementor-heading-title {
    text-align: left !important;
}
.page-id-4400 .elementor-section.elementor-top-section:nth-of-type(6) .elementor-widget-heading h2.elementor-heading-title::after {
    margin-left: 0;
}
/* === end accent === */

/* === Lumifat: Header bottom nav bar — show gold bg, hide black === */
.whb-header .wd-header-nav.wd-header-main-nav {
    background-color: transparent !important;
}

/* === Lumifat: Barra menu top - dorado mas claro === */
.whb-header .whb-row.whb-header-bottom {
    background-color: #D4AF37 !important;
}

/* === Lumifat: Clientes marquee carousel (auto-scroll, pause on hover) === */
.lumi-clients-wrapper {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.lumi-clients-title {
    font-size: 36px;
    font-weight: 800;
    color: #2C2C2C;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.lumi-clients-title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #D21E0F;
    border-radius: 2px;
}
.lumi-clients-sub {
    font-size: 16px;
    color: #696969;
    margin: 0 0 40px;
    font-weight: 400;
}
.lumi-clients-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.lumi-clients-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: lumi-scroll 40s linear infinite;
}
.lumi-clients-marquee:hover .lumi-clients-track {
    animation-play-state: paused;
}
.lumi-client-card {
    flex: 0 0 auto;
    width: 200px;
    background: #FFFFFF;
    padding: 28px 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 16px rgba(44, 44, 44, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
.lumi-client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(44, 44, 44, 0.12);
    border-color: #D4AF37;
}
.lumi-client-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background-color: #2C2C2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.lumi-client-icon i {
    color: #D4AF37;
    font-size: 28px;
    transition: color 0.3s ease;
}
.lumi-client-card:hover .lumi-client-icon {
    background-color: #D21E0F;
}
.lumi-client-card:hover .lumi-client-icon i {
    color: #FFFFFF;
}
.lumi-client-name {
    font-size: 13px;
    font-weight: 700;
    color: #2C2C2C;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
@keyframes lumi-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 12px)); }
}

/* Mobile: smaller cards */
@media (max-width: 768px) {
    .lumi-client-card-mob { width: 150px; padding: 20px 14px; }
    .lumi-client-icon { width: 50px; height: 50px; margin-bottom: 12px; }
    .lumi-client-icon i { font-size: 22px; }
    .lumi-client-name { font-size: 11px; }
    .lumi-clients-title { font-size: 28px; }
}
/* === end clientes marquee === */

/* === Lumifat: Marquee — show 6 cards at once on desktop === */
.lumi-clients-wrapper { max-width: 100% !important; padding: 0 !important; }
.lumi-clients-marquee { padding: 30px 40px !important; }
.lumi-clients-track { gap: 18px !important; }
.lumi-client-card { width: 180px !important; padding: 24px 16px !important; }
.lumi-client-icon { width: 56px !important; height: 56px !important; margin-bottom: 14px !important; }
.lumi-client-icon i { font-size: 24px !important; }
@media (max-width: 768px) {
    .lumi-client-card { width: 150px !important; padding: 18px 12px !important; }
    .lumi-clients-marquee { padding: 20px !important; }
}

/* === Lumifat: Marquee — exactly 6 cards visible from 1024px viewport === */
.lumi-clients-marquee { padding: 30px 20px !important; }
.lumi-clients-track { gap: 14px !important; }
.lumi-client-card { width: 156px !important; padding: 20px 12px !important; }
.lumi-client-icon { width: 52px !important; height: 52px !important; margin-bottom: 12px !important; }
.lumi-client-icon i { font-size: 22px !important; }
.lumi-client-name { font-size: 12px !important; letter-spacing: 1px !important; }
@media (min-width: 1440px) {
    .lumi-client-card { width: 200px !important; padding: 28px 16px !important; }
    .lumi-client-icon { width: 64px !important; height: 64px !important; }
    .lumi-client-icon i { font-size: 28px !important; }
    .lumi-clients-track { gap: 24px !important; }
}
@media (max-width: 768px) {
    .lumi-client-card { width: 140px !important; padding: 16px 10px !important; }
    .lumi-clients-marquee { padding: 20px 10px !important; }
}

/* === Lumifat: Paginas de servicio sin espacio entre header y hero === */
.page-id-29567 .main-page-wrapper,
.page-id-29568 .main-page-wrapper,
.page-id-29569 .main-page-wrapper,
.page-id-29570 .main-page-wrapper,
.page-id-29571 .main-page-wrapper,
.page-id-29572 .main-page-wrapper,
.page-id-29573 .main-page-wrapper,
.page-id-29574 .main-page-wrapper,
.page-id-29575 .main-page-wrapper,
.page-id-29576 .main-page-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Pull main-page-wrapper UP -40px to close the gap on service pages */
.page-id-29567 .main-page-wrapper,
.page-id-29568 .main-page-wrapper,
.page-id-29569 .main-page-wrapper,
.page-id-29570 .main-page-wrapper,
.page-id-29571 .main-page-wrapper,
.page-id-29572 .main-page-wrapper,
.page-id-29573 .main-page-wrapper,
.page-id-29574 .main-page-wrapper,
.page-id-29575 .main-page-wrapper,
.page-id-29576 .main-page-wrapper {
    margin-top: -40px !important;
}

/* Sobre Nosotros (4400) sin gap entre header y hero */
.page-id-4400 .main-page-wrapper {
    margin-top: -40px !important;
    padding-top: 0 !important;
}

/* Pagina /servicios/ (29641) sin gap header */
.page-id-29641 .main-page-wrapper {
    margin-top: -40px !important;
    padding-top: 0 !important;
}

/* Libro de Reclamaciones (29467) sin gap header */
.page-id-29467 .main-page-wrapper {
    margin-top: -40px !important;
    padding-top: 0 !important;
}


/* Ocultar el switcher de moneda flotante (WOOCS auto-switcher) */
.woocs_auto_switcher,
.woocs_auto_switcher.left,
.woocs_auto_switcher.right {
    display: none !important;
}

/* YAPE / Pagos Móviles Perú gateway: responsive en móvil */
#wc-pago_moviles_peru-cc-form {
    overflow: hidden;
    box-sizing: border-box;
}
#wc-pago_moviles_peru-cc-form .qrcode-image {
    display: block !important;
    float: none !important;
    margin: 0 auto 20px auto !important;
    max-width: 100% !important;
    height: auto !important;
}
#wc-pago_moviles_peru-cc-form .text-bold {
    display: block;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    line-height: 1.45;
}
#wc-pago_moviles_peru-cc-form label {
    display: block;
    text-align: center;
    margin-top: 15px;
}
#wc-pago_moviles_peru-cc-form input[type=file] {
    display: block;
    margin: 8px auto 0;
    max-width: 100%;
}
@media (max-width: 480px) {
    #wc-pago_moviles_peru-cc-form .qrcode-image {
        width: 8rem !important;
        height: 8rem !important;
    }
}

/* Página /envios/ (29466): cerrar gap header + texto hero más visible */
.page-id-29466 .main-page-wrapper {
    margin-top: -40px !important;
    padding-top: 0 !important;
}
.page-id-29466 .elementor-element h3.elementor-heading-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 16px rgba(212,175,55,0.4);
    font-weight: 700 !important;
}
.page-id-29466 .elementor-element h1.elementor-heading-title {
    text-shadow: 0 3px 14px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.9);
}

/* Provincia* shipping description style */
.shipping ul#shipping_method li label .lumi-provincia-desc,
.lumi-provincia-desc {
    display: block;
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
    line-height: 1.4;
}

/* Provincia* shipping row layout (title + GRATIS + descripción) */
ul#shipping_method li label .lumi-provincia-wrap {
    display: block;
    width: 100%;
}
.lumi-provincia-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.lumi-provincia-title { font-weight: 600; color: #2C2C2C; }
.lumi-provincia-gratis {
    color: #D21E0F;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}
.lumi-provincia-desc {
    display: block;
    color: #696969;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.45;
}
