
:root{
    --pcn-yellow:#F8F812;
    --pcn-black:#000;
    --pcn-gray:#f5f5f5;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color:#111;
}

a{
    text-decoration:none;
}

.topbar{
    background:var(--pcn-black);
    color:#fff;
    font-size:13px;
    padding:8px 0;
}

.topbar a{
    color:var(--pcn-yellow);
    font-weight:600;
}

.logo-header{
    max-height: 150px;
    width:auto;
}

.logo-area{
    background:#fff;
    padding:18px 0;
}

.navbar-pcn{
    background:#fff;
    border-top:4px solid var(--pcn-yellow);
    border-bottom:1px solid #eee;
}

.navbar-pcn .nav-link{
    color:#000;
    font-weight:700;
    text-transform:uppercase;
    font-size:14px;
    padding:16px 20px;
}

.navbar-pcn .nav-link:hover,
.navbar-pcn .nav-link.active{
    color:#000;
    background:var(--pcn-yellow);
}

.dropdown-menu{
    border:0;
    border-radius:0;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.dropdown-item{
    padding:12px 22px;
    font-size:15px;
}

.dropdown-item:hover{
    background:var(--pcn-yellow);
    color:#000;
}

.btn-pcn{
    background:var(--pcn-yellow);
    color:#000;
    border:2px solid var(--pcn-yellow);
    font-weight:800;
    border-radius:50px;
    padding:11px 24px;
    text-transform:uppercase;
}

.btn-pcn:hover{
    background:#000;
    color:var(--pcn-yellow);
    border-color:#000;
}

.hero{
    min-height:520px;
    background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url('assets/img/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero-box{
    max-width:720px;
    color:#fff;
}

.hero-badge{
    display:inline-block;
    background:var(--pcn-yellow);
    color:#000;
    padding:8px 18px;
    font-weight:800;
    border-radius:50px;
    margin-bottom:18px;
}

.section-padding{
    padding:80px 0;
}

.section-title{
    font-weight:800;
    color:#000;
    margin-bottom:12px;
}

.section-subtitle{
    color:#666;
    max-width:650px;
    margin:0 auto 40px auto;
}

.account-card{
    background:#000;
    color:#fff;
    border-radius:24px;
    padding:35px 25px;
    height:100%;
    transition:.3s;
    border:3px solid transparent;
    position:relative;
    overflow:hidden;
}

.account-card:hover{
    transform:translateY(-8px);
    border-color:var(--pcn-yellow);
}

.account-card .icon{
    width:86px;
    height:86px;
    border-radius:50%;
    background:var(--pcn-yellow);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin:0 auto 22px;
}

.account-card h3{
    font-size:34px;
    font-weight:900;
    color:var(--pcn-yellow);
}

.info-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-6px);
}

.info-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.info-card-body{
    padding:24px;
}

.bg-soft{
    background:#f7f7f7;
}

.stats-section{
    background:#000;
    color:#fff;
}

.stat-number{
    color:var(--pcn-yellow);
    font-weight:900;
    font-size:34px;
}

.news-card{
    border:0;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    border-radius:18px;
    overflow:hidden;
    height:100%;
}

.news-card img{
    height:210px;
    object-fit:cover;
}

.news-tag{
    display:inline-block;
    background:var(--pcn-yellow);
    color:#000;
    font-size:12px;
    font-weight:800;
    padding:5px 10px;
    border-radius:30px;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.05);
}

footer{
    background:#000;
    color:#fff;
}

.footer-bottom{
    background:var(--pcn-yellow);
    color:#000;
    font-weight:700;
    font-size:13px;
}

@media(max-width:768px){
    .topbar{
        text-align:center;
    }

    .topbar .d-flex{
        gap:8px;
    }

    .logo-header{
        max-height:80px;
    }

    .hero{
        min-height:430px;
        text-align:center;
    }

    .hero h1{
        font-size:38px;
    }

    .section-padding{
        padding:55px 0;
    }

    .navbar-pcn .nav-link{
        padding:12px;
    }
}


/* HERO SLIDER */

.hero-slide{
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide .overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
}

.hero-box{
    position:relative;
    z-index:2;
    max-width:600px;
}

.hero-box h1{
    font-size:58px;
    font-weight:900;
}

.hero-box p{
    font-size:18px;
    margin:15px 0 25px;
}

.badge-pcn{
    display:inline-block;
    background:#F8F812;
    color:#000;
    padding:8px 18px;
    border-radius:50px;
    font-weight:800;
    margin-bottom:15px;
}

.carousel-indicators button{
    background:#F8F812;
    width:10px;
    height:10px;
    border-radius:50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
}

/* MOBILE */
@media(max-width:768px){

    .hero-slide{
        height:420px;
    }

    .hero-box h1{
        font-size:34px;
    }

}


.contador-rendicion{
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url('../img/transparencia_ins.jpg') center/cover no-repeat fixed;
}

.contador-overlay{
    padding:90px 0;
}

.contador-rendicion h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
    color: #fff;
}

.linea-amarilla{
    width:70px;
    height:2px;
    background:#F8F812;
    margin:0 auto 18px auto;
}

.subtitulo-contador{
    font-size:16px;
    margin-bottom:35px;
    color: #fff;
}

.contador-item h3{
    font-size:36px;
    font-weight:900;
    color:#fff;
    margin-bottom:6px;
}

.contador-item p{
    color:#F8F812;
    font-size:18px;
    font-weight:600;
    line-height:1.05;
    margin:0;
}

.contador-divider{
    max-width:760px;
    height:1px;
    background:rgba(255,255,255,.18);
    margin:45px auto 35px auto;
}

@media(max-width:768px){
    .contador-overlay{
        padding:60px 0;
    }

    .contador-rendicion h2{
        font-size:32px;
    }

    .contador-item h3{
        font-size:30px;
    }

    .contador-item p{
        font-size:15px;
    }
}

.account-link{
    display:block;
    height:100%;
    text-decoration:none;
    color:inherit;
}

.account-card{
    cursor:pointer;
}

/* BOTON */
.btn-ver-mas{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#F8F812;
    color:#000;
    font-weight:800;
    padding:12px 28px;
    border-radius:50px;
    font-size:15px;
    transition:all 0.3s ease;
}

/* EFECTO HOVER */
.account-card:hover .btn-ver-mas{
    background:#fff;
    transform:scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* eliminamos icono default */
    width: 50px;
    height: 50px;
    position: relative;
}

/* FLECHA IZQUIERDA */
.carousel-control-prev-icon::after {
    content: "‹";
    font-size: 60px;
    color: #F8F812;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 5px;
}

/* FLECHA DERECHA */
.carousel-control-next-icon::after {
    content: "›";
    font-size: 60px;
    color: #F8F812;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 5px;
}

.categorias-section{
    background:#fff;
}

.categoria-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:230px;
    background:#fff;
    border:2px solid #000;
    border-bottom:8px solid #F8F812;
    border-radius:22px;
    text-align:center;
    padding:28px 18px;
    color:#000;
    transition:.3s;
    height:100%;
}

.categoria-card:hover{
    background:#000;
    color:#fff;
    transform:translateY(-6px);
    border-color:#000;
}

.categoria-icon{
    width:76px;
    height:76px;
    border-radius:50%;
    background:#F8F812;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:20px;
}

.categoria-card h5{
    font-weight:900;
    text-transform:uppercase;
    font-size:17px;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.categoria-card span{
    margin-top:12px;
    font-weight:800;
    font-size:14px;
    color:#000;
    background:#F8F812;
    padding:8px 18px;
    border-radius:50px;
}

@media(max-width:768px){
    .categoria-card{
        min-height:210px;
        padding:24px 12px;
    }

    .categoria-card h5{
        font-size:14px;
    }

    .categoria-icon{
        width:64px;
        height:64px;
        font-size:30px;
    }
}

.account-card.disabled {
    opacity: 0.7;
}

.account-card.disabled .btn-ver-mas {
    background: #ccc;
    color: #000;
}

.cta-section{
    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.85)),
    url('../img/cta-bg.jpeg') center/cover no-repeat;
    color:#fff;
}

.cta-overlay{
    padding:90px 0;
}

.cta-section h2{
    font-size:42px;
    font-weight:900;
}

.cta-section p{
    max-width:650px;
    margin:20px auto;
    font-size:18px;
}

.categoria-card:hover{
    background:#000;
    color:#fff;
    transform:translateY(-6px);
}

.categoria-card:hover span{
    background:#fff;
}

.linea-titulo{
    width:60px;
    height:4px;
    background:#F8F812;
    margin:12px auto 20px auto;
    border-radius:2px;
}

html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:95px;
}


/* HERO SLIDER */

.hero-slide{
    min-height:600px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

/* OVERLAY (recomendado activar) */
.hero-slide::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.45);
}

/* CONTENIDO */
.hero-slide .container{
    position:relative;
    z-index:2;
}

/* TEXTO */
.hero-box{
    max-width:650px;
}

.hero-box h1{
    font-size:58px;
    font-weight:900;
}

.hero-box p{
    font-size:18px;
    margin:15px 0 25px;
}

/* BADGE */
.badge-pcn{
    display:inline-block;
    background:#F8F812;
    color:#000;
    padding:8px 18px;
    border-radius:50px;
    font-weight:800;
    margin-bottom:15px;
}

/* INDICADORES */
.carousel-indicators button{
    background:#F8F812;
    width:10px;
    height:10px;
    border-radius:50%;
}

/* FLECHAS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-image:none;
    width:50px;
    height:50px;
    position:relative;
}

.carousel-control-prev-icon::after{
    content:"‹";
    font-size:55px;
    color:#F8F812;
    position:absolute;
    top:-12px;
    left:8px;
}

.carousel-control-next-icon::after{
    content:"›";
    font-size:55px;
    color:#F8F812;
    position:absolute;
    top:-12px;
    left:8px;
}

/* MOBILE */
@media(max-width:768px){

    .hero-slide{
        min-height:420px;
        text-align:center;
    }

    .hero-box{
        margin:0 auto;
    }

    .hero-box h1{
        font-size:34px;
    }

    .hero-box p{
        font-size:16px;
    }

}

.hero-box{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


.contador-item{
    padding:10px 8px;
}

.contador-item h3{
    font-size:34px;
    font-weight:900;
    color:#fff;
    margin-bottom:6px;
    white-space:nowrap;
}

.contador-item p{
    color:#F8F812;
    font-size:16px;
    font-weight:700;
    line-height:1.1;
    margin:0;
}

@media(max-width:768px){

    .contador-overlay{
        padding:55px 0;
    }

    .contador-rendicion h2{
        font-size:30px;
    }

    .contador-item{
        max-width:310px;
        margin:0 auto;
        padding:18px 14px;
        background:rgba(0,0,0,.45);
        border-radius:18px;
    }

    .contador-item h3{
        font-size:30px;
        white-space:nowrap;
    }

    .contador-item p{
        font-size:15px;
    }

    .contador-divider{
        margin:25px auto;
    }
}

@media(max-width:380px){
    .contador-item h3{
        font-size:26px;
    }
}


/* Plantilla */

.page-hero {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero-overlay {
    min-height: 360px;
    background: rgba(0,0,0,.68);
    display: flex;
    align-items: center;
}

.page-hero h1 {
    color: #fff;
    font-weight: 900;
    font-size: 48px;
}

.page-hero p {
    color: #F8F812;
    font-weight: 600;
}

.content-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


/* HISTORIA PAGE */

.historia-page {
    background: #f7f7f7;
}

.historia-card {
    max-width: 1050px;
    margin: 0 auto;
}

.historia-card p,
.historia-card li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.historia-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #000;
}

.historia-card ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.historia-card li {
    margin-bottom: 8px;
}

.historia-highlight {
    background: #000;
    color: #fff;
    border-left: 8px solid #F8F812;
    border-radius: 16px;
    padding: 28px;
    margin: 35px 0;
}

.historia-highlight h3,
.historia-highlight p {
    color: #fff;
}

.historia-highlight strong {
    color: #F8F812;
}

.dato-card {
    height: 100%;
    background: #000;
    color: #fff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    border-bottom: 6px solid #F8F812;
}

.dato-card h4 {
    font-size: 30px;
    font-weight: 900;
    color: #F8F812;
    margin-bottom: 10px;
}

.dato-card p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.lista-destacada {
    background: #fffbea;
    border-radius: 16px;
    padding: 25px 25px 25px 45px !important;
    border: 1px solid rgba(0,0,0,.08);
}

.historia-final {
    background: #F8F812;
    border-radius: 16px;
    padding: 25px;
    margin-top: 35px;
}

.historia-final p {
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .historia-card {
        padding: 25px 20px;
    }

    .historia-card p,
    .historia-card li {
        font-size: 15px;
        line-height: 1.75;
    }

    .historia-card h3 {
        font-size: 21px;
    }

    .dato-card h4 {
        font-size: 26px;
    }
}

/* Autoridades PCN */

.autoridades-page {
    background: #f7f7f7;
}

.autoridad-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-top: 6px solid #F8F812;
}

.autoridad-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.autoridad-table {
    margin-bottom: 0;
    font-size: 15px;
    vertical-align: middle;
}

.autoridad-table thead th {
    background: #000;
    color: #F8F812;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .4px;
    border: none;
    white-space: nowrap;
}

.autoridad-table tbody td {
    color: #333;
    border-color: #eee;
    padding: 13px 12px;
}

.autoridad-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.autoridad-table tbody tr:hover {
    background: #fffbea;
}

.small-card {
    height: 100%;
    margin-bottom: 0;
}

.autoridad-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.autoridad-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

.autoridad-list li:last-child {
    border-bottom: none;
}

.autoridad-list li::before {
    content: "●";
    color: #F8F812;
    background: #000;
    border-radius: 50%;
    font-size: 9px;
    margin-right: 10px;
    padding: 2px 5px;
}

@media (max-width: 768px) {
    .autoridad-card {
        padding: 25px 18px;
    }

    .autoridad-card h3 {
        font-size: 22px;
    }

    .autoridad-table {
        font-size: 13px;
    }

    .autoridad-table thead th,
    .autoridad-table tbody td {
        white-space: nowrap;
    }
}

/* Comisiones de trabajo */

.comisiones-page {
    background: #f7f7f7;
}

.comision-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    height: 100%;
    background: #fff;
    border: 2px solid #000;
    border-radius: 18px;
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.comision-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 7px;
    width: 100%;
    background: #F8F812;
}

.comision-card:hover {
    transform: translateY(-6px);
    background: #000;
    color: #fff;
}

.comision-icon {
    width: 78px;
    height: 78px;
    background: #F8F812;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 34px;
}

.comision-card h3 {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 14px;
}

.comision-card span {
    background: #F8F812;
    color: #000;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .comision-card {
        min-height: 190px;
        padding: 22px 12px;
    }

    .comision-icon {
        width: 62px;
        height: 62px;
        font-size: 27px;
    }

    .comision-card h3 {
        font-size: 14px;
    }

    .comision-card span {
        font-size: 11px;
        padding: 7px 14px;
    }
}


/* Funcionarios */

.funcionarios-page {
    background: #f7f7f7;
}

.funcionario-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-top: 6px solid #F8F812;
}

.funcionario-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.funcionario-table {
    margin-bottom: 0;
    font-size: 14px;
    vertical-align: middle;
}

.funcionario-table thead th {
    background: #000;
    color: #F8F812;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .4px;
    border: none;
    white-space: nowrap;
}

.funcionario-table tbody td {
    color: #333;
    border-color: #e7e7e7;
    padding: 13px 12px;
}

.funcionario-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.funcionario-table tbody tr:hover {
    background: #fffbea;
}

.funcionario-table tfoot td {
    background: #F8F812;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    padding: 14px 12px;
}

.funcionario-resumen {
    background: #000;
    border-radius: 20px;
    padding: 35px;
    color: #fff;
}

.funcionario-resumen h3 {
    color: #F8F812;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.resumen-box {
    background: #111;
    border: 1px solid rgba(248,248,18,.35);
    border-radius: 16px;
    padding: 25px 18px;
    text-align: center;
    height: 100%;
}

.resumen-box span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: #F8F812;
    color: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 15px;
}

.resumen-box p {
    color: #fff;
    font-size: 14px;
    min-height: 42px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.resumen-box strong {
    color: #F8F812;
    font-size: 18px;
}

.total-general {
    background: #F8F812;
    color: #000;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 900;
    text-transform: uppercase;
}

.total-general strong {
    font-size: 24px;
}

.total-general em {
    font-style: normal;
    font-size: 18px;
}

@media (max-width: 768px) {
    .funcionario-card {
        padding: 25px 18px;
    }

    .funcionario-card h3 {
        font-size: 22px;
    }

    .funcionario-table {
        font-size: 13px;
    }

    .funcionario-table thead th,
    .funcionario-table tbody td {
        white-space: nowrap;
    }

    .funcionario-resumen {
        padding: 25px 18px;
    }

    .total-general {
        text-align: center;
        justify-content: center;
    }
}


.contador-total {
    border: 2px solid #F8F812;
    border-radius: 16px;
    padding: 18px;
}

.titulo-transparencia-extra {
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
    font-size: 28px;
}

@media (max-width: 768px) {
    .titulo-transparencia-extra {
        font-size: 22px;
    }
}

.transparencia-table-card {
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    border-top: 6px solid #F8F812;
}

.transparencia-table-card h4 {
    color: #000;
    font-weight: 900;
    text-align: center;
    margin-bottom: 22px;
}

.transparencia-table {
    font-size: 14px;
    margin-bottom: 0;
}

.transparencia-table thead th {
    background: #000;
    color: #F8F812;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
    border: none;
}

.transparencia-table tbody td {
    color: #222;
    padding: 10px;
    border-color: #ddd;
    white-space: nowrap;
}

.transparencia-table tbody tr:nth-child(even) {
    background: #fff4ec;
}

.transparencia-table tfoot td {
    background: #F8F812;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    white-space: nowrap;
}

.transparencia-table tfoot .total-general-table td {
    background: #000;
    color: #F8F812;
}

.tipo-cambio-nota {
    color: #fff;
    text-align: center;
    font-size: 15px;
}

@media (max-width: 768px) {
    .transparencia-table-card {
        padding: 22px 16px;
    }

    .transparencia-table {
        font-size: 13px;
    }
}

.rendicion-proceso {
    max-width: 850px;
    margin: 0 auto;
}

.proceso-icon {
    width: 90px;
    height: 90px;
    background: #F8F812;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
}

.funcionario-table td{
    padding:14px 12px;
    line-height:1.5;
}

.funcionario-card h3{
    font-size:30px;
}

.funcionario-card{
    padding:40px;
}



.proyectos-home {
    background: #f7f7f7;
}

.proyecto-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 6px solid #f8f812;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}

.proyecto-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
}

.proyecto-card-image {
    position: relative;
    height: 245px;
    background: #111;
    overflow: hidden;
}

.proyecto-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proyecto-estado {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f8f812;
    color: #000;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.proyecto-card-body {
    padding: 30px;
}

.proyecto-categoria {
    display: inline-block;
    color: #666;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.proyecto-card h3 {
    font-size: 25px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.proyecto-card p {
    color: #555;
    line-height: 1.7;
}

.proyecto-datos {
    margin: 22px 0;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.proyecto-datos div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    color: #333;
    font-size: 14px;
}

.proyecto-datos i {
    color: #000;
    font-size: 17px;
}

@media (max-width: 767px) {
    .proyecto-card-image {
        height: 210px;
    }

    .proyecto-card-body {
        padding: 24px 20px;
    }

    .proyecto-card h3 {
        font-size: 22px;
    }
}

.proyectos-home {
    background: #f7f7f7;
}

.proyecto-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 6px solid #F8F812;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}

.proyecto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
}

.proyecto-card-destacado {
    max-width: 1080px;
    margin: 0 auto;
}

.proyecto-card-image {
    position: relative;
    height: 100%;
    min-height: 480px;
    background: #111;
    overflow: hidden;
}

.proyecto-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proyecto-simni-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .58)
        );
}

.proyecto-estado {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    background: #F8F812;
    color: #000;
    border-radius: 30px;
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.proyecto-card-body {
    padding: 35px;
}

.proyecto-categoria {
    display: inline-block;
    color: #666;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
}

.proyecto-card h3 {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    margin-bottom: 4px;
}

.proyecto-subtitulo {
    font-size: 19px;
    font-weight: 800;
    color: #333;
    margin-bottom: 18px;
}

.proyecto-card p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 13px;
}

.proyecto-caracteristicas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.proyecto-caracteristicas > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 13px;
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

.proyecto-caracteristicas i {
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.proyecto-datos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.proyecto-datos-grid > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 13px;
}

.proyecto-datos-grid i {
    color: #000;
    font-size: 17px;
    margin-top: 2px;
}

.proyecto-datos-grid span {
    display: flex;
    flex-direction: column;
}

.proyecto-datos-grid strong {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

@media (max-width: 991px) {
    .proyecto-card-image {
        min-height: 330px;
    }
}

@media (max-width: 767px) {
    .proyecto-card-body {
        padding: 26px 20px;
    }

    .proyecto-card h3 {
        font-size: 31px;
    }

    .proyecto-subtitulo {
        font-size: 17px;
    }

    .proyecto-caracteristicas,
    .proyecto-datos-grid {
        grid-template-columns: 1fr;
    }

    .proyecto-card-image {
        min-height: 260px;
    }

    .proyecto-estado {
        top: 14px;
        right: 14px;
        padding: 8px 12px;
        font-size: 10px;
    }
}

.proyecto-detalle-page {
    background: #f6f6f6;
}

.proyecto-contenido {
    position: relative;
}

.proyecto-detalle-estado {
    display: inline-flex;
    align-items: center;
    background: #F8F812;
    color: #000;
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.proyecto-etiqueta {
    display: inline-block;
    color: #666;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
}

.proyecto-encabezado h2 {
    font-size: 35px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
}

.proyecto-bajada {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.proyecto-seccion {
    margin-top: 42px;
    padding-top: 35px;
    border-top: 1px solid #e7e7e7;
}

.proyecto-seccion h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.proyecto-seccion h3 i {
    color: #000;
}

.proyecto-seccion p,
.proyecto-seccion li {
    color: #444;
    line-height: 1.8;
}

.proyecto-lista-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proyecto-lista-check li {
    position: relative;
    padding: 12px 15px 12px 42px;
    margin-bottom: 10px;
    background: #f7f7f7;
    border-radius: 12px;
}

.proyecto-lista-check li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 15px;
    top: 12px;
    color: #000;
    font-size: 18px;
}

.proyecto-medicion-card {
    height: 100%;
    background: #111;
    color: #fff;
    border-radius: 17px;
    padding: 26px;
    border-bottom: 5px solid #F8F812;
}

.proyecto-medicion-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.proyecto-medicion-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.proyecto-medicion-card li {
    color: #eee;
    margin-bottom: 7px;
}

.proyecto-medicion-icon {
    width: 60px;
    height: 60px;
    background: #F8F812;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 18px;
}

.proyecto-equipo {
    color: #F8F812 !important;
    font-weight: 800;
}

.proyecto-aviso {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fffbea;
    border-left: 5px solid #F8F812;
    border-radius: 13px;
    padding: 18px;
    margin-top: 22px;
}

.proyecto-aviso i {
    font-size: 25px;
    color: #000;
    flex-shrink: 0;
}

.proyecto-aviso p {
    margin: 0;
}

.componente-simni {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #f7f7f7;
    border-radius: 13px;
    font-weight: 700;
    color: #333;
}

.componente-simni i {
    width: 45px;
    height: 45px;
    background: #F8F812;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    font-size: 19px;
}

.proyecto-tabla {
    font-size: 14px;
    vertical-align: middle;
    margin-bottom: 0;
}

.proyecto-tabla thead th {
    background: #000;
    color: #F8F812;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
}

.proyecto-tabla tbody td {
    padding: 13px 12px;
    color: #333;
    border-color: #e5e5e5;
}

.proyecto-tabla tbody tr:nth-child(even) {
    background: #fafafa;
}

.proyecto-tabla tfoot td {
    background: #F8F812;
    color: #000;
    font-weight: 900;
    border: none;
}

.requisito-card {
    height: 100%;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 23px;
    border-top: 4px solid #F8F812;
}

.requisito-card h4 {
    font-size: 18px;
    font-weight: 900;
    display: flex;
    gap: 9px;
    align-items: center;
}

.requisito-cantidad {
    display: inline-block;
    background: #000;
    color: #F8F812;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
}

.proyecto-subseccion {
    margin-top: 28px;
}

.proyecto-subseccion h4 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 12px;
}

.estado-entrega-card {
    background: #000;
    color: #fff;
    border-radius: 17px;
    padding: 27px;
    border-bottom: 5px solid #F8F812;
}

.estado-entrega-card p {
    color: #fff;
}

.presupuesto-destacado {
    background: #000;
    color: #fff;
    border-radius: 17px;
    padding: 30px;
    text-align: center;
    margin-top: 25px;
    border: 2px solid #F8F812;
}

.presupuesto-destacado span,
.presupuesto-destacado small {
    display: block;
}

.presupuesto-destacado span {
    color: #F8F812;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.presupuesto-destacado strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    margin: 8px 0;
}

.presupuesto-destacado small {
    color: #ddd;
}

.presupuesto-secundario {
    background: #111;
}

.pago-card {
    height: 100%;
    background: #f7f7f7;
    border-radius: 14px;
    padding: 21px;
}

.pago-card span {
    display: inline-block;
    background: #F8F812;
    color: #000;
    font-size: 20px;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 10px;
}

.pago-card strong {
    display: block;
    font-size: 20px;
    margin: 14px 0 7px;
}

.pago-card p {
    margin-bottom: 0;
    font-size: 14px;
}

.condicion-simni {
    height: 100%;
    background: #000;
    color: #fff;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}

.condicion-simni strong {
    display: block;
    color: #F8F812;
    font-size: 25px;
    margin-bottom: 8px;
}

.condicion-simni span {
    font-size: 13px;
}

.incluye-box,
.no-incluye-box {
    height: 100%;
    border-radius: 15px;
    padding: 22px;
}

.incluye-box {
    background: #effcf3;
}

.no-incluye-box {
    background: #fff2f2;
}

.incluye-box h4,
.no-incluye-box h4 {
    font-size: 19px;
    font-weight: 900;
}

.incluye-box ul,
.no-incluye-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.nota-legal-simni {
    background: #fffbea;
    border: 1px solid #eadf00;
    border-radius: 16px;
    padding: 25px;
}

.nota-legal-simni h3 {
    margin-bottom: 15px;
}

.proyecto-info-box {
    background: #fff;
    border-radius: 17px;
    padding: 24px;
    margin-bottom: 24px;
    border-top: 5px solid #F8F812;
    box-shadow: 0 9px 28px rgba(0, 0, 0, .08);
}

.proyecto-info-box h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 19px;
}

.proyecto-info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.proyecto-info-row:last-of-type {
    border-bottom: none;
}

.proyecto-info-row span {
    color: #666;
}

.proyecto-info-row strong {
    color: #000;
    text-align: right;
}

.proyecto-presupuesto-nota {
    margin-top: 15px;
    margin-bottom: 0;
    padding: 13px;
    background: #f7f7f7;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.proyecto-documento {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    margin-bottom: 11px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    transition: .2s ease;
}

.proyecto-documento:last-child {
    margin-bottom: 0;
}

.proyecto-documento:hover {
    background: #F8F812;
    border-color: #F8F812;
    transform: translateY(-2px);
}

.proyecto-documento i {
    flex-shrink: 0;
    font-size: 29px;
    color: #cc0029;
}

.proyecto-documento span {
    display: flex;
    flex-direction: column;
}

.proyecto-documento strong {
    font-size: 13px;
    font-weight: 900;
}

.proyecto-documento small {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.proyecto-sidebar {
    position: sticky;
    top: 105px;
}

@media (max-width: 991px) {
    .proyecto-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .proyecto-encabezado h2 {
        font-size: 28px;
    }

    .proyecto-bajada {
        font-size: 16px;
    }

    .proyecto-seccion {
        margin-top: 32px;
        padding-top: 27px;
    }

    .proyecto-seccion h3 {
        font-size: 21px;
    }

    .presupuesto-destacado strong {
        font-size: 29px;
    }

    .proyecto-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .proyecto-info-row strong {
        text-align: left;
    }

    .proyecto-tabla {
        font-size: 13px;
    }
}

.comprobante-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 9px 28px rgba(0, 0, 0, .07);
    border-bottom: 5px solid #F8F812;
}

.comprobante-imagen {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: #efefef;
}

.comprobante-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.comprobante-imagen:hover img {
    transform: scale(1.035);
}

.comprobante-ampliar {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, .86);
    color: #fff;
    border-radius: 25px;
    padding: 8px 13px;
    font-size: 11px;
    font-weight: 800;
}

.comprobante-body {
    padding: 20px;
}

.comprobante-tipo {
    display: inline-block;
    background: #F8F812;
    color: #000;
    border-radius: 20px;
    padding: 6px 11px;
    margin-bottom: 11px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.comprobante-body h4 {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin-bottom: 9px;
}

.comprobante-body p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 767px) {
    .comprobante-imagen {
        height: 230px;
    }
}

.btn-volver {
    background: #F8F812;
    color: #000;
    border: 0;
    border-radius: 25px;
    padding: 10px 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-volver:hover {
    background: #fff;
    color: #000;
}

.galeria-modal-content {
    background: #111;
    border: 2px solid #F8F812;
    border-radius: 18px;
    overflow: hidden;
}

.galeria-modal-content .modal-header {
    background: #F8F812;
    color: #000;
    border-bottom: none;
}

.galeria-modal-content .modal-body {
    padding: 20px;
    background: #111;
}

.galeria-modal-imagen {
    max-height: 82vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.galeria-modal-content .btn-close {
    opacity: 1;
}

@media (max-width: 767px) {
    .galeria-modal-content .modal-body {
        padding: 10px;
    }

    .galeria-modal-imagen {
        max-height: 75vh;
    }
}


.rendicion-documental-page {
    background: #f6f6f6;
}

.document-card {
    position: relative;
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 20px;
    padding: 32px;

    border-top: 6px solid #F8F812;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .08);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.document-card::after {
    content: "";

    position: absolute;
    right: -50px;
    bottom: -50px;

    width: 130px;
    height: 130px;

    background: rgba(248, 248, 18, .16);
    border-radius: 50%;

    pointer-events: none;
}

.document-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .14);
}

.document-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F8F812;
    color: #000;

    border-radius: 50%;

    font-size: 34px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .09);
}

.document-card h3 {
    color: #000;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;

    margin-bottom: 14px;
}

.document-card p {
    color: #5b5b5b;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;

    margin-bottom: 18px;
}

.document-card ul {
    flex-grow: 1;

    margin: 0 0 25px;
    padding: 18px 18px 18px 39px;

    background: #f7f7f7;
    border-radius: 13px;
}

.document-card li {
    position: relative;

    color: #333;
    font-size: 13px;
    line-height: 1.5;

    margin-bottom: 8px;
}

.document-card li:last-child {
    margin-bottom: 0;
}

.document-card li::marker {
    color: #000;
}

.document-card .btn {
    position: relative;
    z-index: 2;

    width: 100%;
    margin-top: auto;
}

.portal-documental-aviso {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    max-width: 950px;
    margin-right: auto;
    margin-left: auto;

    background: #000;
    color: #fff;

    border-radius: 18px;
    padding: 26px;

    border-left: 7px solid #F8F812;
}

.portal-aviso-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F8F812;
    color: #000;

    border-radius: 50%;
    font-size: 23px;
}

.portal-documental-aviso h3 {
    color: #F8F812;
    font-size: 20px;
    font-weight: 900;

    margin: 0 0 8px;
}

.portal-documental-aviso p {
    color: #fff;
    line-height: 1.7;

    margin: 0;
}

@media (max-width: 991px) {
    .document-card {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .document-card {
        padding: 25px 20px;
    }

    .document-icon {
        width: 66px;
        height: 66px;
        font-size: 29px;
    }

    .document-card h3 {
        font-size: 20px;
    }

    .document-card p {
        font-size: 13px;
    }

    .portal-documental-aviso {
        flex-direction: column;
        padding: 22px 19px;
    }

    .portal-documental-aviso h3 {
        font-size: 18px;
    }

    .portal-documental-aviso p {
        font-size: 14px;
    }
}




























