/* /Layout/Footer.razor.rz.scp.css */
/* 🌙 FOOTER GENERAL (Versión Paleta Corporativa Oscura) */
.footer-pean[b-6f9f0a0g98] {
    background-color: var(--color-fondo-primario); /* Gris carbón medio */
    background-color: #12161B;
    color: var(--color-texto);
    padding: 3rem 0 0;
    text-align: center;
    font-family: var(--fuente-subtitulos);
    /*border-top: 4px solid var(--color-acento);*/ /* Dorado suave */
    /*box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.3);*/
}

/* 📦 CONTENEDOR PRINCIPAL */
.footer-container[b-6f9f0a0g98] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* 🌐 ÍCONOS SOCIALES */
.footer-social[b-6f9f0a0g98] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 900px;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);

}

    .footer-social a[b-6f9f0a0g98] {
        color: var(--color-texto-suave);
        font-size: 2rem;
        transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    }

        .footer-social a:hover[b-6f9f0a0g98] {
            transform: scale(1.2);
            color: var(--color-acento); /* Dorado o Arena metálica */
            text-shadow: 0 0 12px rgba(196, 161, 90, 0.4);
        }

/* 🎨 Colores personalizados por red (ligeramente atenuados para elegancia) */
.icon-ws i[b-6f9f0a0g98] {
    color: #21c25a;
    transition: all 0.3s ease;
}

    .icon-ws i:hover[b-6f9f0a0g98] {
        color: #25D366;
    }

.icon-fb i[b-6f9f0a0g98] {
    color: #5c88a1;
    transition: all 0.3s ease;
}

    .icon-fb i:hover[b-6f9f0a0g98] {
        color: #8fbfda;
    }

.icon-ig i[b-6f9f0a0g98] {
    color: #b45a76;
    transition: all 0.3s ease;
}

    .icon-ig i:hover[b-6f9f0a0g98] {
        color: #E1306C;
    }

/* 📜 CRÉDITOS (Franja inferior) */
.footer-creditos[b-6f9f0a0g98] {
    background-color: rgba(18, 22, 27, 0.5); /* Fondo oscuro con transparencia controlada */
    color: var(--color-texto-suave);
    padding: 1.5rem 1rem;
    width: 100%;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.6;
    /*border-top: 1px solid rgba(255, 255, 255, 0.05);*/
}

    .footer-creditos strong[b-6f9f0a0g98] {
        color: var(--color-acento); /* Dorado elegante */
        font-weight: 700;
    }

    /* 💡 Efecto sutil de transición al pasar el mouse */
    .footer-creditos:hover[b-6f9f0a0g98] {
        background-color: rgba(18, 22, 27, 1);
        transition: background-color 0.5s ease;
    }

/* 📱 RESPONSIVO */
@media (max-width: 768px) {
    .footer-pean[b-6f9f0a0g98] {
        padding: 2.5rem 3rem 0;
    }

    .footer-social[b-6f9f0a0g98] {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1rem 0;
    }

        .footer-social a[b-6f9f0a0g98] {
            font-size: 1.7rem;
        }

    .footer-creditos[b-6f9f0a0g98] {
        font-size: 0.85rem;
        padding: 0.8rem;
    }

        .footer-creditos .marca-fs[b-6f9f0a0g98] {
            font-size: 0.9rem;
        }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-fm8iacagms] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fm8iacagms] {
    flex: 1;
}

/* /Layout/NavMenu.razor.rz.scp.css */
/* =========================================================
   🔝 NAVBAR PRINCIPAL
   ========================================================= */
.navbar-pean[b-jf86x7wczo] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    background-color: var(--color-fondo-primario);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
    animation: fadeSlideDown-b-jf86x7wczo 0.8s ease-out forwards;
    z-index: 100;
}

    /* 🩶 Hover o scroll: más claro y con sombra */
    .navbar-pean:hover[b-jf86x7wczo],
    .navbar-scrolled[b-jf86x7wczo] {
        background-color: var(--color-fondo-secundario);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    }

/* 🌊 Animación inicial de aparición */
@keyframes fadeSlideDown-b-jf86x7wczo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   📦 CONTENEDOR
   ========================================================= */
.nav-container[b-jf86x7wczo] {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
}

/* =========================================================
   🏗️ LOGOS
   ========================================================= */
.logo-group[b-jf86x7wczo] {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo-img[b-jf86x7wczo] {
    height: 45px;
    width: auto;
    display: block;
    opacity: 0.95;
    filter: grayscale(0.3) brightness(1.2);
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

    /* 🔹 Hover: leve crecimiento y brillo */
    .logo-img:hover[b-jf86x7wczo] {
        transform: scale(1.08);
        /*filter: grayscale(0) brightness(1.4);*/
        opacity: 1;
    }

/* 📉 Scroll: ligera atenuación */
.navbar-scrolled .logo-img[b-jf86x7wczo] {
    /*    filter: grayscale(1) brightness(0.85);*/
    /*opacity: 0.8;*/
    transform: scale(1.08);
}

/* =========================================================
   🔗 LINKS DE NAVEGACIÓN
   ========================================================= */
.nav-links-pean[b-jf86x7wczo] {
    display: flex;
    align-items: center;
    gap: 2rem;


}

.link-pean[b-jf86x7wczo] {
    position: relative;
    display: flex; /* Alinear y centrar contenido */
    align-items: center;
    justify-content: center;
    font-family: var(--fuente-subtitulos);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--color-texto-suave);
    padding: 0.8rem .5rem; /* 🔹 Aumenta área clicable */
    min-height: 48px; /* 🔹 Hace consistente el área de hover */
    border-radius: 6px; /* 🔹 Suaviza bordes visuales */

    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
    background-color: transparent; /* 🔹 Evita que tape los efectos */
    cursor: pointer;
}

    /* 🟥 Hover degradado dinámico (se mantiene intacto) */
    .link-pean:hover[b-jf86x7wczo] {
        transform: scale(1.08);
        background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 25%, #ff6666 50%, #d44d4d 75%, #b23b3b 100% );
        background-size: 200% 100%;
        animation: redFlowText-b-jf86x7wczo 6s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    /* 🔴 Activo (sin scroll) */
    .link-pean.active[b-jf86x7wczo] {
        background: linear-gradient(90deg, #d44d4d, #b23b3b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        transform: scale(1.05);
        font-weight: 600;
    }


/* 🔄 Animación del degradado rojo */
@keyframes redFlowText-b-jf86x7wczo {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =========================================================
   🔵 NAVBAR SCROLLEADA
   ========================================================= */
.navbar-pean:hover .link-pean[b-jf86x7wczo],
.navbar-scrolled .link-pean[b-jf86x7wczo] {
    color: var(--color-texto);
    -webkit-text-fill-color: var(--color-texto);
}

    .navbar-pean:hover .link-pean:hover[b-jf86x7wczo],
    .navbar-scrolled .link-pean:hover[b-jf86x7wczo] {
        background: linear-gradient(90deg, #b23b3b 0%, #d44d4d 25%, #ff6666 50%, #d44d4d 75%, #b23b3b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* 🔵 Activo en scroll: degradado azul */
    .navbar-scrolled .link-pean.active[b-jf86x7wczo] {
        background: linear-gradient( 90deg, #2B6C8F 0%, #3D92C4 40%, #63B8E7 80%, #3D92C4 100% );
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: scale(1.05);
        font-weight: 600;
        animation: blueFlowText-b-jf86x7wczo 8s linear infinite;
    }

@keyframes blueFlowText-b-jf86x7wczo {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =========================================================
   🌐 REDES SOCIALES
   ========================================================= */
.nav-social-horizontal[b-jf86x7wczo] {
    display: flex;
    gap: 1.2rem;
    margin-left: 1.5rem;
    overflow: hidden; /* 🔸 Para cortar el icono al hover */
}

.link-pean.icon-ws i[b-jf86x7wczo],
.link-pean.icon-fb i[b-jf86x7wczo],
.link-pean.icon-ig i[b-jf86x7wczo] {
    color: var(--color-texto-suave);
    font-size: 1.2rem;
    padding-left: 10px;
    transition: transform 0.25s ease, color 0.25s ease, margin-top 0.25s ease;
}

/* 🟩 Hover con corte superior */
.link-pean.icon-ws:hover i[b-jf86x7wczo],
.link-pean.icon-fb:hover i[b-jf86x7wczo],
.link-pean.icon-ig:hover i[b-jf86x7wczo] {
    transform: scale(1.2);
    margin-top: -4px; /* simula corte superior */
    overflow: hidden;
}

/* 🎨 Colores de marca */
.link-pean.icon-ws:hover i[b-jf86x7wczo] {
    color: #25D366;
}

.link-pean.icon-fb:hover i[b-jf86x7wczo] {
    color: #1877F2;
}

.link-pean.icon-ig:hover i[b-jf86x7wczo] {
    color: #E1306C;
}

/* =========================================================
   📱 MENÚ MÓVIL
   ========================================================= */
.nav-toggle[b-jf86x7wczo] {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primario);
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 101;
    cursor: pointer;
}

/* Título móvil */
.menu-title-mobile[b-jf86x7wczo] {
    display: none;
    position: absolute;
    left: 50%;
    top: 1.8rem;
    transform: translateX(-50%);
    z-index: 102;
}

.menu-title-link[b-jf86x7wczo] {
    color: var(--color-texto-suave);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--fuente-subtitulos);
    text-decoration: none;
}

    .menu-title-link:hover[b-jf86x7wczo] {
        color: var(--color-primario);
    }



/* =========================================================
   🧩 EFECTOS EXTRA
   ========================================================= */
.nav-hidden[b-jf86x7wczo] {
    top: -100px;
}

@media (max-width: 900px) {
    /* === BOTÓN TOGGLE === */
    .nav-toggle[b-jf86x7wczo] {
        display: block;
    }

    /* === TÍTULO MÓVIL === */
    .menu-title-mobile[b-jf86x7wczo] {
        display: block;
    }

    /* === MENÚ PRINCIPAL MÓVIL === */
    .nav-links-pean[b-jf86x7wczo] {
        position: absolute;
        top: 90px;
        right: 0; /* 🔹 Se pega al lado derecho */
        width: 100%;
        flex-direction: column;
        align-items: center; /* 🔹 Todo alineado a la derecha */
        padding: 1.2rem 1.8rem;
        background-color: var(--color-fondo-secundario);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        display: none;
        gap: 0.8rem;
    }

        /* === MENÚ ACTIVO === */
        .nav-links-pean.activo[b-jf86x7wczo] {
            display: flex;
        }

        /* === ENLACES MÓVILES === */
        .nav-links-pean a[b-jf86x7wczo] {
            width: auto; /* 🔹 Solo ocupa lo necesario */
            padding: 0.8rem 0;
            font-size: 1.05rem;
            color: var(--color-texto);
            text-align:  center; /* 🔹 Texto también alineado a la derecha */
        }

    /* === REDES SOCIALES === */
    .nav-social-horizontal[b-jf86x7wczo] {
        display: flex;
        justify-content:  center; /* 🔹 Alineadas al lado derecho */
        align-items: center;
        width: 100%;
        margin-top: 0.8rem;
        padding-top: 0.5rem;
        /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
        gap: 6rem;
    }

        .nav-social-horizontal a i[b-jf86x7wczo] {
            font-size: 1.5rem;
        }

    /* === OCULTAR ELEMENTOS EN MÓVIL === */
    .ocultar-pean-movil[b-jf86x7wczo] {
        display: none !important;
    }
}

/* /Layout/Seccion1.razor.rz.scp.css */
/* =========================================================
   🏗️ HERO PRINCIPAL - PEAN
   ========================================================= */

/* === Contenedor general del Hero === */
.pean-hero[b-leo88pp9ra] {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 930px;
    min-height: 700px;
    padding-bottom: 75px;
    background-color: var(--color-fondo-primario);
    color: var(--color-blanco);
}

/* === Fondo de video === */
.pean-video-bg[b-leo88pp9ra] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* === Capa superpuesta (overlay) === */
.pean-overlay[b-leo88pp9ra] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 22, 27, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* === Borde animado inferior (flujo rojo dinámico) === */
.pean-hero[b-leo88pp9ra]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 25%, #ff6666 50%, #d44d4d 75%, #b23b3b 100% );
    background-size: 200% 100%;
    animation: redFlowBorder-b-leo88pp9ra 4s linear infinite;
    opacity: 1;
    z-index: 5;
}

@keyframes redFlowBorder-b-leo88pp9ra {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =========================================================
   🖼️ LOGO
   ========================================================= */
.pean-logo-img[b-leo88pp9ra] {
    height: 240px;
    margin: 90px 0;
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .pean-logo-img:hover[b-leo88pp9ra] {
        transform: scale(1.04);
        opacity: 1;
    }

/* =========================================================
   🧱 CONTENIDO DEL HERO
   ========================================================= */
.pean-hero-content[b-leo88pp9ra] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 8rem;
}

/* === Título principal === */
.pean-hero-title-final[b-leo88pp9ra] {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--fuente-titulos);
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-align: center;
}

/* === Texto animado “CONSTRUCCIÓN” === */
.text-construccion[b-leo88pp9ra] {
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: redFlowConst-b-leo88pp9ra 6s linear infinite;
}

@keyframes redFlowConst-b-leo88pp9ra {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* === Párrafo principal === */
.pean-hero-content p[b-leo88pp9ra] {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--color-texto-suave);
    font-family: var(--fuente-subtitulos);
}

/* === Palabras resaltadas === */
.resaltado-blanco[b-leo88pp9ra] {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

    .resaltado-blanco:hover[b-leo88pp9ra] {
        color: #e6f7ff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

/* =========================================================
   🔘 BOTONES
   ========================================================= */
.pean-hero-buttons[b-leo88pp9ra] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Base general */
.pean-btn[b-leo88pp9ra] {
    width: 200px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 🔴 Primario - Rojo industrial */
.pean-btn-primary[b-leo88pp9ra] {
    color: var(--color-blanco);
    background: linear-gradient(135deg, #822e2e 0%, #9b3f3f 40%, #b14a4a 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 0 6px rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
}

    .pean-btn-primary:hover[b-leo88pp9ra] {
        background: linear-gradient(135deg, #9b3f3f 0%, #b14a4a 50%, #c85a5a 100%);
        box-shadow: 0 0 14px rgba(180, 90, 90, 0.45), inset 0 0 10px rgba(255, 170, 170, 0.2);
        transform: translateY(-2px);
        text-shadow: 0 0 8px rgba(255, 220, 220, 0.3);
        filter: brightness(1.12) saturate(1.05);
    }

    .pean-btn-primary[b-leo88pp9ra]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid rgba(255, 255, 255, 0.25);
        transition: left 0.45s ease;
    }

    .pean-btn-primary:hover[b-leo88pp9ra]::before {
        left: 100%;
    }

/* 🔵 Secundario - Azul acero */
.pean-btn-secondary[b-leo88pp9ra] {
    color: white;
    background-color: transparent;
    border: 2px solid var(--color-enlace);
    transition: all 0.35s ease;
}

    .pean-btn-secondary:hover[b-leo88pp9ra] {
        color: var(--color-blanco);
        border-color: var(--color-enlace-hover);
        background: linear-gradient( 120deg, rgba(92, 136, 161, 0.25) 0%, rgba(143, 191, 218, 0.35) 100% );
        box-shadow: 0 0 14px rgba(143, 191, 218, 0.45), inset 0 0 8px rgba(92, 136, 161, 0.25);
        transform: translateY(-2px);
    }

    .pean-btn-secondary[b-leo88pp9ra]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--color-enlace-hover);
        transition: left 0.5s ease;
    }

    .pean-btn-secondary:hover[b-leo88pp9ra]::before {
        left: 100%;
    }

/* =========================================================
   🌐 REDES SOCIALES
   ========================================================= */
.pean-hero-social[b-leo88pp9ra] {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.pean-icon[b-leo88pp9ra] {
    font-size: 1.8rem;
    color: var(--color-texto);
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.pean-icon-ws:hover[b-leo88pp9ra] {
    color: #25d366;
    transform: scale(1.15);
}

.pean-icon-fb:hover[b-leo88pp9ra] {
    color: #1877f2;
    transform: scale(1.15);
}

.pean-icon-ig:hover[b-leo88pp9ra] {
    color: #e1306c;
    transform: scale(1.15);
}

/* =========================================================
   📱 RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .pean-hero[b-leo88pp9ra] {
        height: auto;
        padding: 4rem 1rem 2rem;
    }

    .pean-logo-img[b-leo88pp9ra] {
        height: 150px;
        margin: 40px 0;
    }

    .pean-hero-content[b-leo88pp9ra] {
        padding-top: 4rem;
    }

    .pean-hero-title-final[b-leo88pp9ra] {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .pean-hero-content p[b-leo88pp9ra] {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.6;
        font-size: 1.2rem;
   
        padding: 0 0.5rem;
    }

    .pean-hero-buttons[b-leo88pp9ra] {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .pean-btn[b-leo88pp9ra] {
        width: 90%;
        max-width: 320px;
    }

    .pean-hero-social[b-leo88pp9ra] {
        gap: 1.5rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */


body[b-24kf7nn9eq] {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--color-fondo);
    color: var(--color-texto);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container[b-24kf7nn9eq] {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--espaciado);
}


.seccion[b-24kf7nn9eq] {
    padding: 4rem 0;
}


.seccion-paleta[b-24kf7nn9eq] {
    padding: 3rem 1rem;
    background-color: #fff;
    border-top: 2px dashed var(--color-suave, #ccc);
    margin-top: 2rem;
}

.color-grid[b-24kf7nn9eq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.color-item[b-24kf7nn9eq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    text-align: center;
    color: #333;
}

.color-circle[b-24kf7nn9eq] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color);
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
}







.bg-light[b-24kf7nn9eq] {
    background-color: #fff;
}

h1[b-24kf7nn9eq], h2[b-24kf7nn9eq], h3[b-24kf7nn9eq], h4[b-24kf7nn9eq] {
    color: var(--color-primario);
    margin-bottom: 1rem;
    font-weight: 600;
}

.texto-lg[b-24kf7nn9eq] {
    font-size: 1.2rem;
    color: var(--color-suave);
}

.text-center[b-24kf7nn9eq] {
    text-align: center;
}

 Botones 
.btn[b-24kf7nn9eq] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline[b-24kf7nn9eq] {
    border: 2px solid var(--color-primario);
    color: var(--color-primario);
    background: transparent;
}

    .btn-outline:hover[b-24kf7nn9eq] {
        background: var(--color-primario);
        color: white;
    }

.btn-outline-dark[b-24kf7nn9eq] {
    border: 2px solid var(--color-texto);
    color: var(--color-texto);
}

    .btn-outline-dark:hover[b-24kf7nn9eq] {
        background: var(--color-texto);
        color: white;
    }

 Hero 
.hero[b-24kf7nn9eq] {
    background: linear-gradient(to right, #1D3557, #457B9D);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

    .hero h1[b-24kf7nn9eq] {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p[b-24kf7nn9eq] {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

 Grids 
.grid-3[b-24kf7nn9eq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-2[b-24kf7nn9eq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

 Placeholders de imagen 
.img-sim[b-24kf7nn9eq] {
    background-color: #DDD;
    border-radius: 4px;
    height: 150px;
    margin-bottom: 1rem;
}

.altura-alta[b-24kf7nn9eq] {
    height: 200px;
}

 Cartas 
.card-placeholder[b-24kf7nn9eq] {
    background-color: white;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

    .card-placeholder:hover[b-24kf7nn9eq] {
        transform: translateY(-4px);
    }

 Testimonios 
.testimonios p[b-24kf7nn9eq] {
    font-style: italic;
    border-left: 4px solid var(--color-primario);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-suave);
}














/* Base general */
.demo-industrial-dark[b-24kf7nn9eq] {
    font-family: 'Lato', sans-serif;
    background-color: #1E2328;
    color: #E5E5E5;
    padding: 0;
    margin: 0;
}

/* HEADER */
.demo-header[b-24kf7nn9eq] {
    background: #2B3138;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid #3F464E;
}

    .demo-header .logo[b-24kf7nn9eq] {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1.3rem;
        color: #E5E5E5;
    }

        .demo-header .logo span[b-24kf7nn9eq] {
            color: #C4A15A; /* Dorado suave */
            margin-left: 0.3rem;
        }

.demo-nav a[b-24kf7nn9eq] {
    color: #B0B6BB;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

    .demo-nav a:hover[b-24kf7nn9eq] {
        color: #6FA3C8; /* Azul acero */
    }

.btn-cta[b-24kf7nn9eq] {
    background: #C55A11;
    color: #FFF;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-cta:hover[b-24kf7nn9eq] {
        background: #DE7A2E;
    }

/* HERO */
.hero[b-24kf7nn9eq] {
    background: linear-gradient(120deg, #1E2328 0%, #2B3138 100%);
    padding: 6rem 2rem;
    text-align: center;
}

    .hero h1[b-24kf7nn9eq] {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        color: #E5E5E5;
        margin-bottom: 1rem;
    }

    .hero p[b-24kf7nn9eq] {
        color: #B0B6BB;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

.botones[b-24kf7nn9eq] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primario[b-24kf7nn9eq] {
    background: #C55A11;
    border: none;
    color: #FFF;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-primario:hover[b-24kf7nn9eq] {
        background: #DE7A2E;
    }

.btn-secundario[b-24kf7nn9eq] {
    background: transparent;
    border: 2px solid #6FA3C8;
    color: #6FA3C8;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-secundario:hover[b-24kf7nn9eq] {
        background: #6FA3C8;
        color: #1E2328;
    }

/* TARJETAS */
.tarjetas[b-24kf7nn9eq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 4rem 2rem;
}

.card[b-24kf7nn9eq] {
    background: #2B3138;
    border: 1px solid #3F464E;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card:hover[b-24kf7nn9eq] {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .card h3[b-24kf7nn9eq] {
        color: #C4A15A;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 0.5rem;
    }

    .card p[b-24kf7nn9eq] {
        color: #A6ACB2;
        font-size: 0.95rem;
        line-height: 1.5;
    }









.seccion-paleta.oscura[b-24kf7nn9eq] {
    padding: 4rem 0;
    background: #1E2328;
    color: #E5E5E5;
    font-family: 'Lato', sans-serif;
}

    .seccion-paleta.oscura h2[b-24kf7nn9eq] {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 2.5rem;
        color: #C4A15A; /* Dorado Acento */
    }

.color-grid[b-24kf7nn9eq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
    justify-items: center;
}

.color-item[b-24kf7nn9eq] {
    text-align: center;
}

.color-circle[b-24kf7nn9eq] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    background: var(--color);
    border: 2px solid #3F464E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .color-circle:hover[b-24kf7nn9eq] {
        transform: scale(1.1);
        box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    }

.color-item span[b-24kf7nn9eq] {
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #E5E5E5;
}

.color-item small[b-24kf7nn9eq] {
    color: #B0B6BB;
    font-size: 0.75rem;
}
/* /Pages/Nosotros.razor.rz.scp.css */
/* === 🏗️ SECCIÓN NOSOTROS (Fondo Oscuro) === */
.nosotros-section[b-3v01qfo96i] {
    position: relative;
    background-color: var(--color-fondo-primario);
    color: var(--color-texto);
    padding: 8rem 2rem;
    overflow: hidden;
    border-bottom: .5rem solid #12161B; /* más razonable */
}

.overlay-fondo-servicios[b-3v01qfo96i] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://fsalmacenamiento.blob.core.windows.net/fsestudiocontenedor/SOLUCIONES%20WEB/PEAN/IMAGENES%20Y%20FONDOS/fondo.webp') center/cover no-repeat fixed;
    z-index: 0;
    filter: brightness(10%) contrast(1.0);
    opacity: 0.60;
}

/* 🎨 Capa de color configurable */
.overlay-servicios-color[b-3v01qfo96i] {
    position: absolute;
    inset: 0;
    background: rgba(35, 40, 45, 0.4); /* Capa oscura neutra */
    backdrop-filter: blur(2px);
    z-index: 1;
    transition: background 0.6s ease;


}










/* === CONTENEDOR PRINCIPAL === */
.nosotros-contenido[b-3v01qfo96i] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === 🧱 TEXTO === */
.nosotros-texto[b-3v01qfo96i] {
    flex: 1 1 500px;
    font-family: var(--fuente-subtitulos);
}

    .nosotros-texto h2[b-3v01qfo96i] {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        font-family: var(--fuente-titulos);
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        background-size: 250% 100%;
        animation: titleFlowAzul-b-3v01qfo96i 10s linear infinite;
    }

@keyframes titleFlowAzul-b-3v01qfo96i {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.nosotros-texto p[b-3v01qfo96i] {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-texto-suave);
    font-weight: 300;
}

/* === 🎨 ACENTOS === */
.resaltado-naranja[b-3v01qfo96i] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--fuente-titulos);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient( 90deg, #2B6C8F 0%, #3D92C4 35%, #63B8E7 65%, #3D92C4 85%, #2B6C8F 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-enlace);
    background-size: 200% 100%;
    animation: blueFlow-b-3v01qfo96i 8s linear infinite;

}

@keyframes blueFlow-b-3v01qfo96i {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.resaltado-blanco[b-3v01qfo96i] {
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* === 🖼️ IMAGEN === */
.nosotros-imagen[b-3v01qfo96i] {
    flex: 1 1 400px;
    text-align: center;
}

    .nosotros-imagen img[b-3v01qfo96i] {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4)) brightness(95%);
        transition: transform 0.5s ease, filter 0.5s ease;
    }

        .nosotros-imagen img:hover[b-3v01qfo96i] {
            transform: scale(1.05);
            filter: drop-shadow(0 10px 20px rgba(61, 146, 196, 0.5)) brightness(100%);
        }

/* === 🔘 BOTONES === */
.hero-buttons[b-3v01qfo96i] {
    display: flex;
    justify-content: center;
    margin-top:9rem;
}

/* === 🔘 BOTÓN AZUL PEAN === */
.pean-btn-primary1[b-3v01qfo96i] {
    display: inline-block;
    color: white;
    background-color: transparent;
    border: 2px solid var(--color-enlace);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    font-family: var(--fuente-subtitulos);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    width: 180px;
    text-transform: uppercase;
}

    /* ✨ Hover */
    .pean-btn-primary1:hover[b-3v01qfo96i] {
        background: linear-gradient(135deg, #3D92C4 0%, #63B8E7 50%, #8ED0FF 100%);
        box-shadow: 0 0 14px rgba(100, 180, 230, 0.45), inset 0 0 10px rgba(100, 180, 230, 0.25);
        transform: translateY(-2px);
        text-shadow: 0 0 8px rgba(200, 240, 255, 0.3);
        filter: brightness(1.1) saturate(1.05);
    }

    /* 🔹 Línea animada superior */
    .pean-btn-primary1[b-3v01qfo96i]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid rgba(255, 255, 255, 0.25);
        transition: left 0.45s ease;
    }

    .pean-btn-primary1:hover[b-3v01qfo96i]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--color-enlace-hover);
        transition: left 0.5s ease;
    }




    .pean-btn-primary1:hover[b-3v01qfo96i] {
        color: var(--color-blanco);
        border-color: var(--color-enlace-hover);
        background: linear-gradient(120deg, rgba(92, 136, 161, 0.25) 0%, rgba(143, 191, 218, 0.35) 100%);
        box-shadow: 0 0 14px rgba(143, 191, 218, 0.45), inset 0 0 8px rgba(92, 136, 161, 0.25);
        transform: translateY(-2px);
    }













/* === 📱 RESPONSIVE === */
@media (max-width: 1024px) {
    .nosotros-section[b-3v01qfo96i] {
        padding: 6rem 1.5rem;
    }

    .nosotros-contenido[b-3v01qfo96i] {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 2rem;
    }

    .nosotros-texto h2[b-3v01qfo96i] {
        font-size: 1.8rem;


    }

    .nosotros-texto p[b-3v01qfo96i] {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons[b-3v01qfo96i] {
        justify-content: center;
        margin-top: 3rem;
    }

    .pean-btn-primary1[b-3v01qfo96i] {
        width: auto;
        font-size: 0.95rem;
        padding: 0.7rem 1.3rem;
    }

    .resaltado-naranja[b-3v01qfo96i] {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-family: var(--fuente-titulos);
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient( 90deg, #2B6C8F 0%, #3D92C4 35%, #63B8E7 65%, #3D92C4 85%, #2B6C8F 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: var(--color-enlace);
        background-size: 200% 100%;
        animation: blueFlow-b-3v01qfo96i 8s linear infinite;
    }
}
/* /Pages/ProyectoModal.razor.rz.scp.css */
/* 🌑 Fondo general */
.modal-overlay[b-kb5kxgt0gg] {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.94);
    background-color: rgba(18, 22, 27, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: .5rem;
    animation: fadeIn-b-kb5kxgt0gg 0.35s ease-in-out;
}

/* 🪟 Contenedor modal */
.modal-proyecto[b-kb5kxgt0gg] {
    background: #12161B;
    border-radius: 16px;
    width: 95%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    animation: slideUp-b-kb5kxgt0gg 0.4s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 2rem;
}

/* ❌ Botón cerrar */
.modal-cerrar[b-kb5kxgt0gg] {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: rgba(25, 35, 55, 0.7);
    border: none;
    font-size: 1.8rem;
    color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

    .modal-cerrar:hover[b-kb5kxgt0gg] {
        background: #ff4d4d;
        color: #ffffff;
        transform: scale(1.15);
        box-shadow: 0 0 12px rgba(255, 77, 77, 0.4);
    }

/* 🧱 Encabezado con textura y capa oscura */
.modal-header[b-kb5kxgt0gg] {
    position: relative;
    background: linear-gradient(rgba(10, 20, 35, 0.9), rgba(10, 20, 35, 0.85)), url('/images/bg-textura-pean.webp') center/cover no-repeat;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

/* 📁 Categoría */
.modal-categoria[b-kb5kxgt0gg] {
    font-family: var(--fuente-subtitulos);
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
}

/* 🏗️ Título */
.modal-titulo[b-kb5kxgt0gg] {
    font-family: var(--fuente-titulos);
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
}

.modal-header[b-kb5kxgt0gg]::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
    margin: 1.4rem auto 0;
    border-radius: 3px;
    animation: redFlowBorder-b-kb5kxgt0gg 5s linear infinite;
}

/* 🧾 Descripción */
.modal-descripcion[b-kb5kxgt0gg] {
    text-align: justify;
    color: #bfc4cd;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 2rem auto;
    max-width: 850px;
    padding: 0 2rem;
    font-family: var(--fuente-texto);
}

/* 🖼️ Galería */
.galeria-imagenes[b-kb5kxgt0gg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    padding: 0 2rem 2rem;
}

.galeria-item[b-kb5kxgt0gg] {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .galeria-item img[b-kb5kxgt0gg] {
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: transform 0.35s ease, filter 0.3s ease;
        border-radius: 14px;
    }

    .galeria-item:hover img[b-kb5kxgt0gg] {
        transform: scale(1.06);
        filter: brightness(1.05);
    }

/* Texto sobre imagen */
.overlay-texto[b-kb5kxgt0gg] {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(18, 22, 27, 0.75);

    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.galeria-item:hover .overlay-texto[b-kb5kxgt0gg] {
    opacity: 1;
}

/* 🔍 Imagen expandida */
.popup-imagen[b-kb5kxgt0gg] {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn-b-kb5kxgt0gg 0.3s ease-in-out;
    padding: 1.5rem;
}

.popup-imagen-grande[b-kb5kxgt0gg] {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    animation: zoomIn-b-kb5kxgt0gg 0.4s ease;
    object-fit: contain;
    border: 3px solid rgba(255, 102, 102, 0.5);
}









/* ⬅➡ Flechas de navegación en la imagen ampliada */
.flecha[b-kb5kxgt0gg] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    border: none;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    z-index: 2100;
}

.flecha-izquierda[b-kb5kxgt0gg] {
    left: 1.5rem;
}

.flecha-derecha[b-kb5kxgt0gg] {
    right: 1.5rem;
}

.flecha:hover:not(:disabled)[b-kb5kxgt0gg] {
    transform: translateY(-50%) scale(1.05);
    background: rgba(0, 0, 0, 0.75);
}

.flecha:disabled[b-kb5kxgt0gg] {
    opacity: 0.3;
    cursor: default;
}



/* ❌ Botón cerrar en imagen ampliada */
.popup-cerrar[b-kb5kxgt0gg] {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: rgba(25, 35, 55, 0.8);
    border: none;
    font-size: 1.8rem;
    color: #f5f5f5;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2100;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

    .popup-cerrar:hover[b-kb5kxgt0gg] {
        background: #ff4d4d;
        color: #ffffff;
        transform: scale(1.08);
        box-shadow: 0 0 12px rgba(255, 77, 77, 0.45);
    }


/* ✨ Animaciones */
@keyframes fadeIn-b-kb5kxgt0gg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-kb5kxgt0gg {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn-b-kb5kxgt0gg {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes redFlowBorder-b-kb5kxgt0gg {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 📱 Responsive - mejorado para pantallas pequeñas */
@media (max-width: 768px) {
    .modal-proyecto[b-kb5kxgt0gg] {
        width: 96%;
        max-height: 85vh;
        padding-bottom: 1.5rem;
    }

    .modal-header[b-kb5kxgt0gg] {
        padding: 2rem 1.2rem 1.2rem;
    }

    .modal-categoria[b-kb5kxgt0gg] {
        font-size: 0.85rem;
    }

    .modal-titulo[b-kb5kxgt0gg] {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }

    .modal-cerrar[b-kb5kxgt0gg] {
        top: 0.6rem;
        right: 0.6rem;
        font-size: 1.4rem;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.12);
    }

    .modal-descripcion[b-kb5kxgt0gg] {
        font-size: 0.9rem;
        padding: 0 1.2rem;
        margin: 1.2rem auto;
    }

    .galeria-imagenes[b-kb5kxgt0gg] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem 1.5rem;
    }

    .overlay-texto[b-kb5kxgt0gg] {
        font-size: 0.75rem;
        padding: 0.4rem;
    }

    .popup-imagen-grande[b-kb5kxgt0gg] {
        max-height: 70vh;
        border-radius: 12px;
        border: 2px solid rgba(255, 102, 102, 0.45);
    }
}
/* /Pages/Proyectos.razor.rz.scp.css */
/* 🌆 Sección encabezado superior */
.encabezado-proyectos[b-c3mj2toinq] {
    position: relative;
    background: linear-gradient( rgba(10, 20, 35, 0.9), rgba(10, 20, 35, 0.9) ), url('https://fsalmacenamiento.blob.core.windows.net/fsestudiocontenedor/SOLUCIONES%20WEB/PEAN/IMAGENES%20Y%20FONDOS/IMA.01.webp') center bottom/cover no-repeat;
/*    background-attachment: fixed;*/
    color: var(--color-blanco);
    text-align: center;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*    border-bottom: 3px solid var(--color-acento);*/
    overflow: hidden;
    transition: background-size 0.5s ease, background-position 0.5s ease;
}

.contenido-encabezado[b-c3mj2toinq] {
    max-width: 800px;
    padding: 0 1.5rem;
}

.titulo-encabezado[b-c3mj2toinq] {
    font-family: var(--fuente-titulos);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    margin-bottom: 2rem;
    font-family: var(--fuente-titulos);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: redFlowConst-b-c3mj2toinq 6s linear infinite;
}
@keyframes redFlowConst-b-c3mj2toinq {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}







.subtitulo-encabezado[b-c3mj2toinq] {
    font-family: var(--fuente-subtitulos);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--color-texto-suave);
}

.resaltado-blanco[b-c3mj2toinq] {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
























/* 📦 Galería de proyectos */
.galeria-proyectos-grid[b-c3mj2toinq] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 45vh;
    margin: 0;
    padding: 0.6rem;
    gap: 0.6rem;
    background-color: #12161B;
    align-items: stretch;
}

/* === Tarjeta general === */
.proyecto-card[b-c3mj2toinq] {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; /* 👈 evita que se repita */
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: var(--color-blanco);
    will-change: transform;
}

    .proyecto-card[b-c3mj2toinq]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: inherit; /* toma tu background-image inline */
        background-size: cover; /* 👈 siempre cover */
        background-position: center;
        background-repeat: no-repeat; /* 👈 evita duplicado / mosaico */
        transition: transform 0.5s ease;
        z-index: 0;
    }

    .proyecto-card:hover[b-c3mj2toinq] {
        transform: scale(1.0);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

        .proyecto-card:hover[b-c3mj2toinq]::before {
            transform: scale(1.08); /* 👈 solo zoom por transform, no por background-size */
        }

/* === Capa oscura actualizada === */
.overlay-contenido[b-c3mj2toinq] {
    background: rgba(10, 20, 35, 0.55);
    color: var(--color-blanco);
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: background 0.4s ease, transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.proyecto-card:hover .overlay-contenido[b-c3mj2toinq] {
    background: rgba(10, 20, 35, 0.75);
    transform: translateY(-5px);
    opacity: 1;
}

.info-proyecto[b-c3mj2toinq] {
    width: 100%;
    font-family: var(--fuente-subtitulos);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 2;
}

.proyecto-card:hover .info-proyecto[b-c3mj2toinq] {
    transform: translateY(-10px);
    opacity: 1;
}

/* === Texto === */
.info-proyecto h5[b-c3mj2toinq] {
    font-size: 1.2rem;
    color: var(--color-acento);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.info-proyecto h3[b-c3mj2toinq] {
    font-size: 1.8rem;
    font-family: var(--fuente-titulos);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-blanco);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.info-proyecto hr[b-c3mj2toinq] {
    width: 60px;
    border: 1px solid var(--color-acento);
    margin: 0.8rem 0;
}

.info-proyecto p[b-c3mj2toinq] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-secundario);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* === Botón actualizado === */
.btn-proyecto[b-c3mj2toinq] {
    display: inline-block;
    color: white;
    background: transparent;
    border: 2px solid var(--color-enlace);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    font-family: var(--fuente-subtitulos);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    width: 190px;
    align-self: start;
    opacity: 0.9;
}

    .btn-proyecto:hover[b-c3mj2toinq]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--color-enlace-hover);
        transition: left 0.5s ease;
    }

    .btn-proyecto:hover[b-c3mj2toinq] {
        color: var(--color-blanco);
        border-color: var(--color-enlace-hover);
        background: linear-gradient(120deg, rgba(92, 136, 161, 0.25) 0%, rgba(143, 191, 218, 0.35) 100%);
        box-shadow: 0 0 14px rgba(143, 191, 218, 0.45), inset 0 0 8px rgba(92, 136, 161, 0.25);
        transform: translateY(-2px);
    }


/* === 📱 Responsivo optimizado === */

/* 💻 Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .encabezado-proyectos[b-c3mj2toinq] {
        height: 700px;
        background-position: center top;
    }

    .titulo-encabezado[b-c3mj2toinq] {
        font-size: 2.7rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .subtitulo-encabezado[b-c3mj2toinq] {
        font-size: 1.5rem;
    }

    .galeria-proyectos-grid[b-c3mj2toinq] {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 36vh; /* 🔹 más equilibrado */
        padding: 0.4rem;
        gap: 0.4rem;
    }

    .proyecto-card[b-c3mj2toinq] {
        min-height: 280px;
        height: auto;
    }

    .overlay-contenido[b-c3mj2toinq] {
        padding: 1.5rem;
    }

    .info-proyecto h3[b-c3mj2toinq] {
        font-size: 1.4rem;
    }

    .info-proyecto p[b-c3mj2toinq] {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-proyecto[b-c3mj2toinq] {
        font-size: 0.8rem;
        padding: 0.5rem 1.3rem;
        width: 160px;
    }
}

/* 📱 Pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .encabezado-proyectos[b-c3mj2toinq] {
        height: 600px;
        padding: 4rem 1rem 2rem;
        background-position: center;
        background-size: cover;
    }

    .titulo-encabezado[b-c3mj2toinq] {
        font-size: 2rem;
        line-height: 1.2;
    }

    .subtitulo-encabezado[b-c3mj2toinq] {
        font-size: 1.3rem;
    }

    .galeria-proyectos-grid[b-c3mj2toinq] {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 0.5rem;
        padding: 0.3rem;
    }

    .proyecto-card[b-c3mj2toinq] {
        min-height: 220px;
        height: auto;
    }

    .overlay-contenido[b-c3mj2toinq] {
        padding: 1rem;
    }

    .info-proyecto h5[b-c3mj2toinq] {
        font-size: 0.7rem;
    }

    .info-proyecto h3[b-c3mj2toinq] {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .info-proyecto p[b-c3mj2toinq] {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .btn-proyecto[b-c3mj2toinq] {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        width: 140px;
    }
}

/* 📱 Extra pequeños (teléfonos < 480px) */
@media (max-width: 480px) {
    .encabezado-proyectos[b-c3mj2toinq] {
        height: 500px;
        padding: 5rem 0rem ;
        background-position: center center;
    }

    .titulo-encabezado[b-c3mj2toinq] {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .subtitulo-encabezado[b-c3mj2toinq] {
        font-size: 1.2rem;
    }

    .galeria-proyectos-grid[b-c3mj2toinq] {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 0.4rem;
        padding: 0.3rem 0.4rem;
    }

    .proyecto-card[b-c3mj2toinq] {
        min-height: 200px;
        height: auto;
    }

    .overlay-contenido[b-c3mj2toinq] {
        padding: 0.8rem;
    }

    .info-proyecto h5[b-c3mj2toinq] {
        font-size: 0.65rem;
    }

    .info-proyecto h3[b-c3mj2toinq] {
        font-size: 0.9rem;
    }

    .info-proyecto p[b-c3mj2toinq] {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .btn-proyecto[b-c3mj2toinq] {
        font-size: 0.65rem;
        padding: 0.45rem 0.9rem;
        width: 130px;
    }
}
/* /Pages/ProyectosH.razor.rz.scp.css */
/* === Galería === */
.galeria-proyectos-grid[b-qjk2h6gpjp] {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 120px; /* columna vertical extra */
    grid-auto-rows: 45vh; /* solo en escritorio */
    gap: 0.5rem;
    padding: 8px 0;
    margin: 0;
    background-color: #12161B;
    align-items: stretch;
}

/* === Tarjeta general === */
.proyecto-card[b-qjk2h6gpjp] {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: var(--color-blanco);
    will-change: transform;
}

    .proyecto-card:hover[b-qjk2h6gpjp] {
        transform: scale(1.0);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }




/* === Capa oscura === */
.overlay-contenido[b-qjk2h6gpjp] {
    background: rgba(10, 20, 35, 0.55);
    color: var(--color-blanco);
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: background 0.4s ease, transform 0.4s ease;
}

.proyecto-card:hover .overlay-contenido[b-qjk2h6gpjp] {
    background: rgba(10, 20, 35, 0.7);
    transform: translateY(-5px);
}

/* === Contenido texto === */
.info-proyecto[b-qjk2h6gpjp] {
    width: 100%;
    font-family: var(--fuente-subtitulos);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.proyecto-card:hover .info-proyecto[b-qjk2h6gpjp] {
    transform: translateY(-10px);
}

.info-proyecto h5[b-qjk2h6gpjp] {
    font-size: 0.85rem;
    color: var(--color-acento);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.info-proyecto h3[b-qjk2h6gpjp] {
    font-size: 2rem;
    font-family: var(--fuente-titulos);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.info-proyecto hr[b-qjk2h6gpjp] {
    width: 30px;
    border: 1px solid var(--color-blanco);
    margin-bottom: 0.5rem;
}

.info-proyecto p[b-qjk2h6gpjp] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-secundario);
    margin-bottom: 1.2rem;
}

/* === Botón === */
.btn-proyecto[b-qjk2h6gpjp] {
    display: inline-block;
    color: white;
    background-color: transparent;
    border: 2px solid var(--color-enlace);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    font-family: var(--fuente-subtitulos);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    width: 180px;
}

    .btn-proyecto:hover[b-qjk2h6gpjp]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--color-enlace-hover);
        transition: left 0.5s ease;
    }

    .btn-proyecto:hover[b-qjk2h6gpjp] {
        color: var(--color-blanco);
        border-color: var(--color-enlace-hover);
        background: linear-gradient(120deg, rgba(92, 136, 161, 0.25) 0%, rgba(143, 191, 218, 0.35) 100%);
        box-shadow: 0 0 14px rgba(143, 191, 218, 0.45), inset 0 0 8px rgba(92, 136, 161, 0.25);
        transform: translateY(-2px);
    }

/* === Tarjeta final vertical === */
.proyecto-card-final[b-qjk2h6gpjp] {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
    grid-row: span 1;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .proyecto-card-final:hover[b-qjk2h6gpjp] {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    }

/* Capa final */
.overlay-final[b-qjk2h6gpjp] {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease;
}

.proyecto-card-final:hover .overlay-final[b-qjk2h6gpjp] {
    background: rgba(15, 20, 30, 0.75);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Texto vertical */
.texto-vertical[b-qjk2h6gpjp] {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--fuente-titulos);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-blanco);
    letter-spacing: 0.25em;
    transition: color 0.4s ease;
}

.proyecto-card-final:hover .texto-vertical[b-qjk2h6gpjp] {
    color: var(--color-acento);
}

/* === RESPONSIVE === */

/* Tablets */
@media (max-width: 1024px) {
    .galeria-proyectos-grid[b-qjk2h6gpjp] {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto; /* 👈 deja que el contenido defina la altura */
        gap: 1rem;
        padding: 0.5rem;
    }

    .proyecto-card[b-qjk2h6gpjp] {
        min-height: 260px;
        height: auto;
    }

    .proyecto-card-final[b-qjk2h6gpjp] {
        grid-column: span 2;
        height: 100px; /* 👈 más compacto */
    }

    .texto-vertical[b-qjk2h6gpjp] {
        writing-mode: horizontal-tb;
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .galeria-proyectos-grid[b-qjk2h6gpjp] {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 0.4rem;
        padding: 0.4rem;
    }

    .proyecto-card[b-qjk2h6gpjp] {
        min-height: 220px;
        height: auto;
    }

    .proyecto-card-final[b-qjk2h6gpjp] {
        grid-column: span 2;
        height: 90px; /* 👈 más equilibrado */
    }

    .texto-vertical[b-qjk2h6gpjp] {
        writing-mode: horizontal-tb;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }
}

/* Muy pequeños */
@media (max-width: 480px) {
    .galeria-proyectos-grid[b-qjk2h6gpjp] {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0.3rem;
        padding-bottom: 0.8rem;
    }

    .proyecto-card[b-qjk2h6gpjp] {
        min-height: 200px;
        height: auto;
    }

    .proyecto-card-final[b-qjk2h6gpjp] {
        grid-column: span 1;
        height: 75px; /* 👈 altura mínima controlada */
    }

    .texto-vertical[b-qjk2h6gpjp] {
        writing-mode: horizontal-tb;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }
    .info-proyecto h3[b-qjk2h6gpjp] {
        font-size: 1.5rem;
   
    }

}
/* /Pages/Servicios.razor.rz.scp.css */
/* === SECCIÓN SERVICIOS === */
.servicios-section[b-1vvuoh5uwp] {
    position: relative;
    background-color: var(--color-fondo-primario); /* Gris carbón medio */

    color: var(--color-texto);
    padding: 8rem 1rem;
    overflow: hidden;
}

/* 🌆 Fondo fijo */
.overlay-fondo-servicios[b-1vvuoh5uwp] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://fsalmacenamiento.blob.core.windows.net/fsestudiocontenedor/SOLUCIONES%20WEB/PEAN/SERVICIOS/servicio-gerencia.webp') center/cover no-repeat fixed;
    z-index: 0;
    filter: brightness(20%) contrast(1.0);
    opacity: 0.60;
}

/* 🎨 Capa de color configurable */
.overlay-servicios-color[b-1vvuoh5uwp] {
    position: absolute;
    inset: 0;
    background: rgba(35, 40, 45, 0.5); /* Capa oscura neutra */
    backdrop-filter: blur(3px);
    z-index: 1;
    transition: background 0.6s ease;


}

/* === CONTENIDO === */
.servicios-contenido[b-1vvuoh5uwp] {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;

}

/* === TITULOS === */
.servicios-texto h2[b-1vvuoh5uwp] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--fuente-titulos);
    text-transform: uppercase;
    letter-spacing: 1px;
    /*background: linear-gradient(90deg, #f5f5f5, #6ba4b8, #f5f5f5);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    /* background-size: 250% 100%;*/
    /*  animation: gradientFlow 9s linear infinite;*/
    color: #E5E5E5;
}


.resaltado-azul[b-1vvuoh5uwp] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--fuente-titulos);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient( 90deg, #2B6C8F 0%, /* Azul acero oscuro */
    #3D92C4 35%, /* Azul medio brillante (principal) */
    #63B8E7 65%, /* Azul claro metálico */
    #3D92C4 85%, /* Retorno al tono principal */
    #2B6C8F 100% /* Cierra el loop suavemente */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-enlace);
    background-size: 200% 100%;
    animation: blueFlow-b-1vvuoh5uwp 8s linear infinite;
}

/* ✨ Animación sutil de desplazamiento del degradado */
@keyframes blueFlow-b-1vvuoh5uwp {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


.servicios-texto p[b-1vvuoh5uwp] {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: var(--color-texto-suave);
    font-family: var(--fuente-subtitulos);
    max-width: 850px;
    margin-inline: auto;
    font-weight:300;
}

.resaltado-naranja[b-1vvuoh5uwp] {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* === CARRUSEL HORIZONTAL === */
.servicios-linea[b-1vvuoh5uwp] {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-acento) transparent;
}

    .servicios-linea[b-1vvuoh5uwp]::-webkit-scrollbar {
        height: 8px;
    }

    .servicios-linea[b-1vvuoh5uwp]::-webkit-scrollbar-thumb {
        background-color: var(--color-acento);
        border-radius: 8px;
    }

/* === TARJETAS === */
.servicio-item[b-1vvuoh5uwp] {
    flex: 0 0 260px;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.4s ease;
    position: relative;
    background: #1E2328; /* Translúcido oscuro */
    background-color: #12161B;
    border-radius: 14px;
    padding: 2rem 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

    .servicio-item:hover[b-1vvuoh5uwp] {
        transform: translateY(8px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
    }










.servicio-imagen[b-1vvuoh5uwp] {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #2B6C8F 0%, /* Azul acero oscuro */
    #3D92C4 35%, /* Azul medio brillante */
    #63B8E7 65%, /* Azul metálico claro */
    #3D92C4 85%, /* Regreso al azul medio */
    #2B6C8F 100% /* Azul acero oscuro */
    );
    padding: 1px; /* grosor del borde */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 16px rgba(61, 146, 196, 0.15);
    animation: bordeAzulPulse-b-1vvuoh5uwp 6s ease-in-out infinite;
}

    /* 📸 Imagen interior con fondo sólido */
    .servicio-imagen img[b-1vvuoh5uwp] {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        background-color: var(--color-fondo-primario);
        filter: brightness(90%) contrast(1.05);
        transition: transform 0.3s ease, filter 0.3s ease;
        padding: 3px; /* separación interna para no cubrir el borde */
    }

/* ✨ Hover con resplandor azul */
.servicio-item:hover .servicio-imagen[b-1vvuoh5uwp] {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(61, 146, 196, 0.35);
}

    .servicio-item:hover .servicio-imagen img[b-1vvuoh5uwp] {
        filter: brightness(1) contrast(1.1);
    }


@keyframes bordeAzulPulse-b-1vvuoh5uwp {
    0% {
        box-shadow: 0 0 10px rgba(61, 146, 196, 0.2);
    }

    50% {
        box-shadow: 0 0 16px rgba(61, 146, 196, 0.45);
    }

    100% {
        box-shadow: 0 0 10px rgba(61, 146, 196, 0.2);
    }
}




/* === TEXTO === */
.servicio-item h3[b-1vvuoh5uwp] {
    font-family: var(--fuente-titulos);
    color: var(--color-texto);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.servicio-item p[b-1vvuoh5uwp] {
    font-family: var(--fuente-texto);
    font-size: 1rem;
    color: var(--color-texto-suave);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto 1.2rem;
}

/* === BOTÓN === */
.btn-solicitar[b-1vvuoh5uwp] {
    display: inline-block;
    font-family: var(--fuente-subtitulos);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(90deg, #d44d4d, #b23b3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .btn-solicitar:hover[b-1vvuoh5uwp] {
        color: var(--color-enlace-hover);
        transform: scale(1.05);
    }

/* === RESPONSIVE === */
@media (min-width: 1025px) {
    .servicios-linea[b-1vvuoh5uwp] {
        justify-content: space-between;
        overflow-x: hidden;
        min-height: 460px;
    }
}

@media (max-width: 768px) {
    .servicios-section[b-1vvuoh5uwp] {
        padding: 6rem 1rem;
    }

    .servicios-texto h2[b-1vvuoh5uwp] {
        font-size: 1.8rem;
    }

    .servicios-texto p[b-1vvuoh5uwp] {
    
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .servicio-item[b-1vvuoh5uwp] {
        flex: 0 0 220px;
        padding: 1.5rem 0.8rem;
    }

    .servicio-imagen[b-1vvuoh5uwp] {
        width: 140px;
        height: 140px;
        border-width: 2px;
    }

    .resaltado-azul[b-1vvuoh5uwp] {
        font-size: 2rem;
    }
}
/* /Pages/UbicacionPean.razor.rz.scp.css */
/* 🗺️ SECCIÓN UBICACIÓN PEAN (versión oscura profesional) */
.mapa-seccion[b-drdjy3in6o] {
    position: relative;
    background-color: #12161B;
    color: var(--color-texto);
    padding: 8rem 2rem;
    overflow: hidden;
}

    /* 🌆 Fondo tenue con textura o imagen (opcional) */
    .mapa-seccion[b-drdjy3in6o]::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('https://fsalmacenamiento.blob.core.windows.net/fsestudiocontenedor/SOLUCIONES%20WEB/PEAN/IMAGENES%20Y%20FONDOS/fondo2.webp') center/cover no-repeat fixed;
        filter: brightness(70%) contrast(1.1);
        opacity: 0.15;
        z-index: 0;
    }

    /* Capa oscura editable */
    .mapa-seccion[b-drdjy3in6o]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 25%, #ff6666 50%, #d44d4d 75%, #b23b3b 100% );
        background-size: 200% 100%;
        animation: redFlowBorder-b-drdjy3in6o 4s linear infinite;
        opacity: 1;
        z-index: 5;
    }






@keyframes redFlowBorder-b-drdjy3in6o {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}




















/* 🧭 CONTENEDOR PRINCIPAL */
.mapa-contenedor[b-drdjy3in6o] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 🧭 COLUMNA DE TEXTO */
.mapa-texto[b-drdjy3in6o] {
    flex: 1 1 500px;
    font-family: var(--fuente-subtitulos);
}

    /* 🔠 TÍTULO CON EFECTO DEGRADADO AZUL */
    .mapa-texto h2[b-drdjy3in6o] {
        font-size: 2.8rem;
        margin-bottom: 2rem;
        font-family: var(--fuente-titulos);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient( 90deg, #b23b3b 0%, #d44d4d 30%, #ff6666 50%, #d44d4d 70%, #b23b3b 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        animation: redFlowConst-b-drdjy3in6o 6s linear infinite;
    }




@keyframes redFlowConst-b-drdjy3in6o {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}















.mapa-texto p[b-drdjy3in6o] {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-texto-suave);
    font-weight: 300;
}

/* 📞 INFORMACIÓN DE CONTACTO */
.info-contacto[b-drdjy3in6o] {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contacto-item[b-drdjy3in6o] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #ffffff;
    transition: color 0.3s ease;

    letter-spacing: 0.3px;
    margin-bottom:15px;
}











    .contacto-item i[b-drdjy3in6o] {
        font-size: 1.7rem;
        color: white;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .contacto-item:hover i[b-drdjy3in6o] {
        transform: scale(1.15);
        color: var(--color-acento);
    }

    .contacto-item a[b-drdjy3in6o] {
        color: white;
        text-decoration: none;
        font-weight: 400;
        transition: color 0.3s ease;
        font-size: 1.7rem;
        
    }









        .contacto-item a:hover[b-drdjy3in6o] {
            color: var(--color-acento);
        }











/* 🔵 BOTÓN DE CONTACTO */
.btn-contacto[b-drdjy3in6o] {
    display: inline-block;
    font-family: var(--fuente-subtitulos);
    color: var(--color-blanco);
    background: linear-gradient(90deg, #2B6C8F, #3D92C4, #63B8E7);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(61, 146, 196, 0.3);
    color: var(--color-blanco);
    background: linear-gradient(135deg, #822e2e 0%, #9b3f3f 40%, #b14a4a 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 0 6px rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    text-transform: uppercase;
}

    .btn-contacto[b-drdjy3in6o]::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.4s ease;
    }

    .btn-contacto[b-drdjy3in6o]:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-top: 2px solid rgba(255, 255, 255, 0.25);
        transition: left 0.45s ease;
    }

    .btn-contacto:hover[b-drdjy3in6o] {
        background: linear-gradient(135deg, #9b3f3f 0%, #b14a4a 50%, #c85a5a 100%);
        box-shadow: 0 0 14px rgba(180, 90, 90, 0.45), inset 0 0 10px rgba(255, 170, 170, 0.2);
        transform: translateY(-2px);
        text-shadow: 0 0 8px rgba(255, 220, 220, 0.3);
        filter: brightness(1.12) saturate(1.05);
    }





/* 🗺️ MAPA GOOGLE */
.mapa-google[b-drdjy3in6o] {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .mapa-google:hover[b-drdjy3in6o] {
        transform: scale(1.02);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
        border-color: var(--color-enlace-hover);
    }




/* =========================================================
   📱 RESPONSIVE — Optimización para móviles (≤768px)
   Basado en el estilo de .pean-hero
   ========================================================= */
@media (max-width: 768px) {

    /* 🏗️ Sección general */
    .mapa-seccion[b-drdjy3in6o] {
        padding: 4rem 1rem 2rem;
        text-align: center;
        background-color: #12161B;
    }

        /* 🌆 Fondo ajustado */
        .mapa-seccion[b-drdjy3in6o]::before {
            background-attachment: scroll; /* evita salto en móvil */
            filter: brightness(65%) contrast(1.1);
            opacity: 0.25;
        }

    /* 🧭 Contenedor principal */
    .mapa-contenedor[b-drdjy3in6o] {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 0;
    }

    /* 🧭 Texto */
    .mapa-texto[b-drdjy3in6o] {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

        .mapa-texto h2[b-drdjy3in6o] {
            font-size: 1.9rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .mapa-texto p[b-drdjy3in6o] {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            padding: 0 0.5rem;
        }

    /* 📞 Información de contacto */
    .info-contacto[b-drdjy3in6o] {
        align-items: center;
        gap: 1rem;
    }

    .contacto-item[b-drdjy3in6o] {
        font-size: 0.95rem;
        gap: 0.6rem;
        justify-content: center;
        text-align: center;
    }

        .contacto-item i[b-drdjy3in6o] {
            font-size: 1.2rem;
        }

        .contacto-item a[b-drdjy3in6o] {
            font-size: 1.2rem;
        }

    /* 🔘 Botón de contacto */
    .btn-contacto[b-drdjy3in6o] {
        width: 90%;
        max-width: 320px;
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        border-radius: 6px;
        margin-top: 1rem;
    }

    /* 🗺️ Mapa */
    .mapa-google[b-drdjy3in6o] {
        width: 100%;
        max-width: 95%;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
    }

    /* 🧭 Borde animado inferior */
    .mapa-seccion[b-drdjy3in6o]::after {
        height: 2px; /* más delgado en móvil */
        opacity: 0.8;
        animation-duration: 6s; /* flujo más suave */
    }
}
