.elementor-132 .elementor-element.elementor-element-8cfffa2{--display:flex;}.elementor-132 .elementor-element.elementor-element-8cfffa2.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-132 .elementor-element.elementor-element-0f4ec7f.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-132 .elementor-element.elementor-element-8cfffa2{--width:504.25px;}.elementor-132 .elementor-element.elementor-element-0f4ec7f{width:var( --container-widget-width, 407.25px );max-width:407.25px;--container-widget-width:407.25px;--container-widget-flex-grow:0;}}/* Start custom CSS for shortcode, class: .elementor-element-0f4ec7f *//* =========================================
   COLNEXO — CSS PÁGINA DE NEGOCIO
   Versión Silicon Valley — Todo integrado
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=IBM+Plex+Sans:wght@400;500&display=swap');

/* =========================================
   1. RESET Y CONFIGURACIÓN GLOBAL
   ========================================= */
html { scroll-behavior: smooth; }

#nc-master-landing {
    background: transparent !important;
    color: white;
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: auto;
}

/* =========================================
   2. HEADER (BANNER Y LOGO)
   ========================================= */
.nc-header-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 40px;
    /* SIN overflow:hidden — permite que el logo circle salga completo */
    overflow: visible;
    /* Reveal inicial */
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
}

.nc-header-banner.nc-on {
    opacity: 1;
    transform: translateY(0);
}

/* Sin gradiente — banner limpio */
.nc-header-banner::after {
    display: none;
}

.nc-header-banner:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

/* ── Logo solapado ──
   El truco: overflow:visible en el banner + el círculo
   usa clip-path para recortar solo la imagen, no el contenedor.
   Así el logo sale COMPLETO sin que el banner lo tape.        ── */
.nc-logo-overlap {
    width: 160px;
    height: 160px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    left: 80px;
    border: none;
    outline: none;
    /* overflow visible: el logo no se corta con el borde del banner */
    overflow: visible;
    z-index: 20;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.nc-logo-overlap:hover {
    transform: scale(1.07) translateY(-4px);
}

/* La imagen sí se recorta en círculo, pero el contenedor no */
.nc-logo-overlap img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    /* Sombra en la imagen directamente */
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

/* =========================================
   3. HERO INFO (TÍTULOS Y BOTONES PRINCIPALES)
   ========================================= */
.nc-hero-section {
    padding: 100px 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    /* Reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.nc-hero-section.nc-on {
    opacity: 1;
    transform: translateY(0);
}

/* H1 con shimmer animado */
.nc-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -1.5px;
    background: linear-gradient(
        to right,
        #fff 0%, #fff 40%,
        #FF6B00 50%,
        #fff 60%, #fff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nc-shimmer 4s linear infinite;
}

@keyframes nc-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Badge verificado + rating (inyectados por JS) */
.nc-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 2px;
}

.nc-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,163,163,0.12);
    border: 1px solid rgba(0,163,163,0.4);
    color: #00a3a3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    animation: nc-fadein 0.5s 0.8s ease both;
}

.nc-verified i { font-size: 11px; }

.nc-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,205,0,0.1);
    border: 1px solid rgba(255,205,0,0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    animation: nc-fadein 0.5s 1s ease both;
}

.nc-rating-badge i  { color: #FFCD00; font-size: 12px; }
.nc-rating-badge span { color: #B0B8C4; font-size: 11px; font-weight: 400; }

@keyframes nc-fadein {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nc-category-label {
    color: #9ca3af;
    font-size: 18px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Contenedor de botones — alineación perfecta */
.nc-hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Botones WA, Llamada y Compartir — misma altura y baseline */
.btn-wa, .btn-call, .btn-share {
    padding: 0 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    color: white !important;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    box-sizing: border-box;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Ripple al clic */
.btn-wa::after, .btn-call::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.18);
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.3s;
}

.btn-wa:active::after,
.btn-call:active::after { opacity: 1; }

.btn-wa {
    background: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
    background: #1fb558;
}

.btn-call {
    background: #FF6B00;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.5);
    background: #e56000;
}

/* =========================================
   4. NAVEGACIÓN STICKY
   ========================================= */
.nc-nav-sticky {
    position: sticky;
    top: 72px; /* Debajo del header global de Colnexo */
    background: rgba(10, 15, 30, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    padding: 0 80px;
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(46,54,79,0.8);
    border-top: 1px solid rgba(255,255,255,0.04);
    z-index: 90;
    overflow-x: auto;
    scrollbar-width: none;
    /* Reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.nc-nav-sticky::-webkit-scrollbar { display: none; }

.nc-nav-sticky.nc-on {
    opacity: 1;
    transform: translateY(0);
}

.nc-nav-sticky a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    opacity: 0.6;
    padding: 13px 20px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, opacity 0.2s, border-color 0.2s !important;
}

.nc-nav-sticky a:hover,
.nc-nav-sticky a.nc-active {
    opacity: 1;
    color: #fff !important;
    border-bottom-color: #FF6B00;
}

/* =========================================
   5. SECCIONES DE CONTENIDO
   ========================================= */
.nc-sections { padding: 15px 80px; }

.nc-single-sec {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    /* Reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.nc-single-sec.nc-on {
    opacity: 1;
    transform: translateY(0);
}

.nc-single-sec:last-child { border-bottom: none; }

.nc-single-sec h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    text-align: left;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícono naranja en títulos (inyectado por JS) */
.nc-single-sec h3 .nc-sec-icon {
    color: #FF6B00;
    font-size: 20px;
    flex-shrink: 0;
}

.nc-main-desc {
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

/* =========================================
   6. MAPA Y HORARIOS
   ========================================= */
.nc-map-flex {
    display: flex;
    gap: 30px;
    height: 350px;
    /* Reveal */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.nc-map-flex.nc-on {
    opacity: 1;
    transform: translateY(0);
}

.nc-map-canvas {
    flex: 1.5;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.nc-data-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    gap: 24px;
    border: 1px solid rgba(46,54,79,0.8);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nc-data-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    border-color: rgba(255,107,0,0.22);
}

.nc-data-item {
    transition: transform 0.25s ease;
}

.nc-data-item:hover { transform: translateX(4px); }

.nc-data-item strong {
    color: #FF6B00;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nc-data-item p {
    font-size: 16px;
    margin-top: 4px;
    color: white;
    margin-bottom: 0;
    line-height: 1.5;
}

.nc-data-item p a {
    color: #00a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.nc-data-item p a:hover { color: #fff; }

/* Estado abierto/cerrado (inyectado por JS) */
.nc-status-open {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.3);
    color: #00FF88;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-top: 6px;
}

.nc-status-closed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.3);
    color: #FF6B00;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-top: 6px;
}

.nc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: nc-blink 1.5s ease infinite;
}

@keyframes nc-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}

/* =========================================
   7. GALERÍA DE FOTOS
   ========================================= */
.nc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nc-gal-box {
    aspect-ratio: 16/10;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 20px;
    cursor: pointer;
    background-color: #050a18;
    position: relative;
    overflow: hidden;
    /* Reveal escalonado (controlado por JS) */
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s ease,
                box-shadow 0.3s ease !important;
}

.nc-gal-box.nc-on {
    opacity: 1;
    transform: scale(1);
}

/* Overlay naranja + ícono lupa al hover */
.nc-gal-box::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(255,107,0,0);
    transition: background 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 2;
    border-radius: 20px;
}

.nc-gal-box:hover {
    transform: translateY(-6px) scale(1.025) !important;
    box-shadow: 0 14px 36px rgba(255, 107, 0, 0.25) !important;
    z-index: 2;
}

.nc-gal-box:hover::before {
    background: rgba(255,107,0,0.36);
    opacity: 1;
}

/* =========================================
   8. REDES SOCIALES
   ========================================= */
.nc-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
}

.nc-social-icons a,
#nc-master-landing a.elementor-social-icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(46,54,79,0.8) !important;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
                background 0.25s ease, border-color 0.25s ease !important;
}

.nc-social-icons a svg,
.nc-social-icons a i,
#nc-master-landing a.elementor-social-icon svg,
#nc-master-landing a.elementor-social-icon i {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    color: currentColor !important;
    display: block !important;
    font-size: 20px !important;
}

/* Instagram */
#nc-master-landing a[href*="instagram.com"],
#nc-master-landing a[href*="instagr.am"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: transparent !important;
}
#nc-master-landing a[href*="instagram.com"]:hover {
    box-shadow: 0 6px 18px rgba(220,39,67,0.4) !important;
    transform: translateY(-4px) !important;
}

/* Facebook */
#nc-master-landing a[href*="facebook.com"],
#nc-master-landing a[href*="fb.com"] {
    background: #1877F2 !important;
    border-color: transparent !important;
}
#nc-master-landing a[href*="facebook.com"]:hover {
    box-shadow: 0 6px 18px rgba(24,119,242,0.4) !important;
    transform: translateY(-4px) !important;
}

/* TikTok */
#nc-master-landing a[href*="tiktok.com"] {
    background: #000000 !important;
    border: 1px solid #25F4EE !important;
}
#nc-master-landing a[href*="tiktok.com"]:hover {
    box-shadow: -3px 3px 0px #ff0050 !important;
    transform: translateY(-4px) !important;
}

/* WhatsApp */
#nc-master-landing a[href*="wa.me"]:hover,
#nc-master-landing a[href*="whatsapp"]:hover {
    background: #25D366 !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(37,211,102,0.4) !important;
    transform: translateY(-4px) !important;
}

/* Web / Otros */
.nc-social-icons a:not([href*="instagram"]):not([href*="facebook"]):not([href*="fb"]):not([href*="tiktok"]):not([href*="wa.me"]),
#nc-master-landing a.elementor-social-icon:not([href*="instagram"]):not([href*="facebook"]):not([href*="fb"]):not([href*="tiktok"]):not([href*="wa.me"]) {
    background: #0ea5e9 !important;
    border-color: transparent !important;
}
.nc-social-icons a:not([href*="instagram"]):not([href*="facebook"]):not([href*="fb"]):not([href*="tiktok"]):not([href*="wa.me"]):hover,
#nc-master-landing a.elementor-social-icon:not([href*="instagram"]):not([href*="facebook"]):not([href*="fb"]):not([href*="tiktok"]):not([href*="wa.me"]):hover {
    box-shadow: 0 6px 18px rgba(14,165,233,0.4) !important;
    transform: translateY(-4px) !important;
}

/* =========================================
   9. BOTÓN FLOTANTE WHATSAPP
   ========================================= */
.nc-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 9990;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease;
    animation: nc-wa-pop 0.5s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

.nc-wa-float:hover {
    transform: scale(1.13);
    box-shadow: 0 10px 32px rgba(37,211,102,0.65);
}

/* Pulso exterior */
.nc-wa-float::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.45);
    animation: nc-wa-pulse 2.2s ease infinite;
}

@keyframes nc-wa-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    70%  { transform: scale(1.38); opacity: 0; }
    100% { transform: scale(1.38); opacity: 0; }
}

@keyframes nc-wa-pop {
    from { opacity: 0; transform: scale(0.4) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Tooltip */
.nc-wa-float .nc-wa-tip {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,15,30,0.92);
    border: 1px solid rgba(46,54,79,0.8);
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 9px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(10px);
}

.nc-wa-float:hover .nc-wa-tip { opacity: 1; }

/* =========================================
   10. RESPONSIVO
   ========================================= */
@media (max-width: 900px) {
    .nc-hero-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
    }

    .nc-hero-btns { margin-top: 20px; margin-left: 0; }

    .btn-wa, .btn-call {
        margin-left: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .nc-nav-sticky {
        top: 64px;
        padding: 0 16px;
        gap: 0;
    }

    .nc-nav-sticky a {
        padding: 12px 14px;
        font-size: 13px;
    }

    /* 💥 COMPORTAMIENTO INTEGRAL DEL MAPA EN MÓVILES (CORREGIDO) */
    /* 1. Obligar a los horarios a bajarse para liberar el ancho total del mapa */
    .nc-map-flex,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-flex {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        width: 100% !important;
    }

    /* 2. Forzar la tarjeta contenedora del mapa a usar el ancho completo y una buena altura */
    div.nc-map-canvas, 
    #map-canvas, 
    .nc-map-canvas,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-canvas { 
        width: 100% !important;
        max-width: 100% !important;
        height: 380px !important; 
        min-height: 380px !important;
        display: block !important;
        box-sizing: border-box !important;
        border-radius: 12px !important; 
        overflow: hidden !important;
    }

    /* 3. Forzar al mapa interno de Google a expandirse a todo el ancho y alto disponible */
    .nc-map-canvas iframe,
    .nc-map-canvas div,
    .nc-map-canvas .gm-style,
    .nc-map-canvas .gm-style iframe,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-canvas iframe,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-canvas div,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-canvas .gm-style,
    .elementor-132 .elementor-element.elementor-element-0f4ec7f .nc-map-canvas .gm-style iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 380px !important;
        display: block !important;
    }

    .nc-sections { padding: 20px 30px; }

    .nc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .nc-wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .nc-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nc-hero-text h1 {
        font-size: 34px !important;
        letter-spacing: -0.5px !important;
    }

    .nc-single-sec h3 { font-size: 24px; }
}

/* =========================================
   BOTÓN COMPARTIR — misma línea que WA y Llamar
   ========================================= */
.btn-share {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff !important;
    text-decoration: none !important;
    backdrop-filter: blur(8px);
}

.btn-share:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
}

/* Fix: quitar margin-left heredado que desalinea */
.nc-hero-btns .btn-wa,
.nc-hero-btns .btn-call,
.nc-hero-btns .btn-share {
    margin-left: 0 !important;
}

/* Responsive: botones en columna en móvil */
@media (max-width: 600px) {
    .nc-hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn-wa, .btn-call, .btn-share {
        width: 100%;
        height: 48px;
    }
}/* End custom CSS */