@charset "utf-8";
/* =========================================================
VARIABLES GLOBALES
========================================================= */
:root{
    --color-primary: #08936C;
    --color-primary-dark: #1C3719;
    --color-secondary: #009688;
    --color-gold: #D4B447;
    --color-text: #111111;
    --color-text-light: #333333;
    --color-bg-card: #FCF8F9;
    --color-bg-light: #F5F5F5;
    --color-border: #e9ecef;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: .3s ease;
    --shadow-sm: 0 4px 10px rgba(0,0,0,.08);
    --shadow-md: 0 10px 25px rgba(0,0,0,.12);
    --shadow-lg: 0 15px 40px rgba(0,0,0,.25);
}
/* =========================================================
BASE
========================================================= */
body{
    overflow-x: hidden;
}
ul{
    margin: 0;
    padding: 0;
}
.servicios-item{
    list-style: none;
}
.ac-list-info ol li,
.ac-list-info ul li{
    font-size: .8rem;
}
/* =========================================================
BOTONES
========================================================= */
.btn-main,
.btn-calc,
.ac-ug-btn{
    border: none;
    transition: var(--transition);
}
.btn-main,
.btn-calc{
    background: var(--color-primary);
    color: #fff;
    width: 100%;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-main{
    padding: 12px;
}
.btn-calc{
    padding: 14px;
    font-weight: 700;
}
.btn-main:hover,
.btn-calc:hover{
    background: #067a5a;
}
.btn-tab{
    background: #e5eef3;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
}
.btn-tab:hover{
    background: #d6e6ed;
}
.btn:active{
    transform: scale(.98);
}
/* =========================================================
FORMULARIOS
========================================================= */
.cont-frm-contacto{
    position: relative;
    background: #F5F6F8;
    border-radius: var(--radius-sm);
    padding: 35px;
}
.frm-contacto label{
    font-size: .85rem;
}
.form-control-lg-custom{
    height: 55px;
    font-size: 1.25rem;
    border-radius: 10px;
}
/* =========================================================
LOADING
========================================================= */
.msje-loading{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.5);
    z-index: 20;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .8rem;
    padding: 20px;
}
.msje-loading.show{
    display: flex;
}
/* =========================================================
SECCIONES TEXTO
========================================================= */
.sec-parrafo-a{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 50px 0 20px;
}
.sec-parrafo-a p{
    text-align: justify;
}
/* Clases para mis imagenes */
.cont-mi-img{
 border:solid 5px #FFFFFF;
border-radius:5px;
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
}
/* ---- */
/* =========================================================
ICONOS
========================================================= */
.sec-cont-icon{
    width: 100px;
    height: 100px;
    border-radius: 20%;
    background: #FFB606;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.sec-cont-icon img{
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: invert(1) brightness(2);
}
/* =========================================================
IMAGENES DECORATIVAS
========================================================= */
.sec-cont-img-a{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px 0 50px 50px;
    padding: .25rem;
    background-color: #fff;
    border: 3px solid #fff;
    box-shadow: 3px 3px 5px rgba(0,0,0,.5);
}
.titulo-mi-img{
 font-weight:600;
 font-size:1.2rem;
 color:#08936C;
}
/* =========================================================
SERVICIOS
========================================================= */
.servicios-item li{
    border-radius: 10px;
    padding: 20px 30px;
    background: #fff;
    margin-bottom: 10px;
    font-size: .95rem;
    box-shadow: 1px 1px 4px rgba(0,0,0,.25);
    transition: var(--transition);
}
.servicios-item li:hover{
    background: var(--color-primary);
    color: #fff;
}
/* =========================================================
VALORES
========================================================= */
.valores h3{
    line-height: normal;
    font-size: 1.3rem;
}
.valores .cont-icon{
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.valores .cont-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(54%) saturate(1750%) hue-rotate(1deg) brightness(100%) contrast(105%);
}
/* =========================================================
LISTAS
========================================================= */
.cont-list-a{
    padding: 15px;
}
.cont-list-item{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 10px;
    background: var(--color-bg-light);
    padding: 15px;
}
.cont-list-item .cont-icon{
    width: 100px;
    height: 100px;
}
/* =========================================================
DIRECTIVOS
========================================================= */
.cont-foto-a{
    width: 270px;
    height: 270px;
    position: relative;
    margin-bottom: 25px;
}
.cfa-circulo{
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border: 5px solid rgb(255,215,0);
    box-shadow: 0 8px 16px rgba(0,0,0,.25);
    transition: transform .4s ease;
}
.cfa-nombre{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    background: #0C3782;
    padding: 8px 12px;
    color: #fff;
    font-size: .8rem;
    clip-path: polygon(0 0,100% 0,95% 100%,0 100%);
    z-index: 1000;
}
.cargo{
    font-weight: bold;
    font-size: .9rem;
}
/* =========================================================
UNIDAD GOBIERNO
========================================================= */
.ac-ug-section{
    padding: 50px 0;
}
.ac-ug-title{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #173313;
    letter-spacing: 1px;
    font-size: 1.3rem;
}
.ac-ug-card{
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    height: 100%;
}
.ac-ug-card:hover{
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.ac-ug-director{
    margin-bottom: 60px;
}
.ac-ug-director .ac-ug-card{
    border: 2px solid var(--color-gold);
    padding: 30px 25px;
}
.ac-ug-img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
    border: 5px solid var(--color-primary);
    transition: var(--transition);
}
.ac-ug-card:hover .ac-ug-img{
    border-width: 6px;
    transform: scale(1.08);
}
.ac-ug-name{
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
    font-size: 1rem;
}
.ac-ug-role{
    font-weight: 600;
    color: #000;
    font-size: .9rem;
    margin-bottom: 10px;
}
.ac-ug-desc{
    font-size: .85rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 15px;
}
.ac-ug-btn{
    display: inline-block;
    background: var(--color-primary-dark);
    color: #fff;
    padding: 6px 16px;
    font-size: .8rem;
    border-radius: 20px;
    text-decoration: none;
}
.ac-ug-btn:hover{
    background: var(--color-primary);
    color: #fff;
}
.ac-ug-grid .col-lg-4{
    margin-bottom: 25px;
}
/* =========================================================
ALERTAS
========================================================= */
.alerta-oec{
    background: #fff8e1;
    border-left: 6px solid #f0ad4e !important;
}
.alerta-oec p{
    font-size: 15px;
}
/* =========================================================
ACORDEON
========================================================= */
.cr-serv-menu{
    list-style: none;
}
.cr-serv-item{
    margin-bottom: 10px;
    overflow: hidden;
}
.cr-serv-header{
    background: #198754;
    border-radius: 5px;
    padding: 12px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-transform: uppercase;
}
.cr-serv-submenu{
    display: none;
    list-style: none;
    padding: 0 15px 15px;
}
.cr-serv-subitem{
    background: #f5f5f5;
    border-radius: 5px;
    margin-top: 10px;
}
.cr-serv-subitem a{
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.cr-serv-subitem a span{
    font-size: 1.2rem;
    color: #198754;
}
.cr-serv-subitem a:hover{
    color: #198754;
}
/* =========================================================
MODALES
========================================================= */
.ac-modal{
    position: fixed !important;
    inset: 0;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(5px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999999 !important;
    padding: 20px;
    overflow-y: auto;
}
.ac-modal.show{
    opacity: 1 !important;
    visibility: visible !important;
}
.ac-modal-content{
    background: #fff;
    width: 100%;
    max-width: 950px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalShow .35s ease;
}
@keyframes modalShow{
    from{
        transform: translateY(30px) scale(.97);
        opacity: 0;
    }
    to{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
.ac-modal-close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--color-secondary);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.ac-modal-close:hover{
    transform: scale(1.05);
}
.ac-modal-img{
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--color-secondary);
    margin-bottom: 20px;
}
.ac-modal-name{
    font-size: 34px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.ac-modal-cargo{
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}
.ac-modal-desc{
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}
.ac-modal::-webkit-scrollbar{
    width: 8px;
}
.ac-modal::-webkit-scrollbar-thumb{
    background: var(--color-secondary);
    border-radius: 20px;
}
/* =========================================================
MODAL FUNCIONES
========================================================= */
.ac-modal-funciones{
    max-width: 1100px;
}
.ac-modal-funciones-title{
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
    line-height: 1.4;
}
.ac-modal-funciones-content{
    font-size: 20px;
    line-height: 2;
    color: #222;
    text-align: justify;
}
.ac-modal-funciones-content ul{
    padding-left: 30px;
}
.ac-modal-funciones-content li{
    margin-bottom: 18px;
}
/* =========================================================
DOCUMENTOS
========================================================= */
.lista-docs{
    list-style: none;
}
.titulo-tipo-docs{
    background: var(--color-primary);
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}
/* =========================================================
UTILIDADES
========================================================= */
.active-icon{
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
.tab-pane{
    background: #fff !important;
    color: #000 !important;
}
.activo{
    font-size: 1.5rem;
    width: 250px;
}
.pdf-container{
    width:90%;
    border:solid 2px rgba(0,0,0,0.3);
}
.pdf-viewer{
    width:100%;
    height:auto;
    aspect-ratio:210 / 210;
    border:none;
}
.ac-title-doc{
 color:#08936C;
 font-weight:600;
}
/* =========================================================
RESPONSIVE
========================================================= */
@media(max-width:992px){
    .ac-modal-content{
        max-width: 95%;
    }
    .ac-modal-name{
        font-size: 28px;
    }
    .ac-modal-cargo{
        font-size: 22px;
    }
    .ac-modal-desc{
        font-size: 16px;
    }
    .ac-modal-funciones-title{
        font-size: 28px;
    }
    .ac-modal-funciones-content{
        font-size: 17px;
    }
}
@media(max-width:768px){
    .sec-parrafo-a{
        flex-direction: column;
    }
    .ac-modal{
        padding: 15px;
    }
    .ac-modal-content{
        padding: 22px;
    }
    .ac-modal-img{
        width: 160px;
        height: 160px;
    }
    .ac-modal-name{
        font-size: 22px;
    }
    .ac-modal-cargo{
        font-size: 18px;
    }
    .ac-modal-desc{
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.8;
    }
    .ac-modal-funciones-title{
        font-size: 22px;
    }
    .ac-modal-funciones-content{
        font-size: 15px;
        line-height: 1.8;
    }
    .ac-modal-close{
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}
@media(max-width:480px){
    .ac-modal-content{
        padding: 18px;
    }
    .ac-modal-img{
        width: 130px;
        height: 130px;
    }
    .ac-modal-name{
        font-size: 20px;
    }
    .ac-modal-cargo{
        font-size: 16px;
    }
    .ac-modal-desc{
        font-size: 14px;
    }
    .ac-modal-funciones-title{
        font-size: 20px;
    }
    .ac-modal-funciones-content{
        font-size: 14px;
    }
}	
/* ==========================
   MODAL PDF
   ========================== */
#modalPDF .modal-dialog{
    width:95%;
    max-width:1050px;
    margin:auto;
}
#modalPDF .modal-content{
    border:none;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}
#modalPDF .modal-header{
    padding:15px 20px;
    background:#fff;
    border-bottom:1px solid #e9ecef;
}
#modalPDF .modal-title{
    font-size:1.8rem;
    font-weight:600;
    color:#333;
}
#modalPDF .modal-body{
    padding:0;
    overflow:hidden;
}
/* ==========================
   IFRAME PDF
   ========================== */
#visorPDF{
    width:100%;
    height:85vh;
    border:none;
    display:block;
}
/* ==========================
   CELULARES
   ========================== */
@media (max-width:576px){
    #modalPDF .modal-dialog{
        width:100%;
        margin:0;
        max-width:none;
    }
    #modalPDF .modal-content{
        border-radius:0;
    }
    #modalPDF .modal-title{
        font-size:1.1rem;
    }
    #visorPDF{
        height:80vh;
    }
}
/* ==========================
   TABLETS
   ========================== */
@media (min-width:577px) and (max-width:991px){
    #modalPDF .modal-dialog{
        width:98%;
        max-width:900px;
    }
    #visorPDF{
        height:85vh;
    }
}
/* ==========================
   LAPTOPS
   ========================== */
@media (min-width:992px) and (max-width:1599px){
    #modalPDF .modal-dialog{
        max-width:1050px;
    }
    #visorPDF{
        height:88vh;
    }
}
/* ==========================
   MONITORES GRANDES
   ========================== */
@media (min-width:1600px){
    #modalPDF .modal-dialog{
        max-width:1050px;
    }
    #visorPDF{
        height:90vh;
    }
}	
/* Quita paddings/margins por defecto de la lista */
.mi-acc-lista {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
/* Espaciado entre cada elemento del acordeón */
.mi-acc-lista > li {
    margin-bottom: 10px;
}
/* Estilo exacto del encabezado verde */
.mi-acc-header {
    background-color: #00966b; /* Verde esmeralda idéntico a la imagen */
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    padding: 12px 20px !important;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    user-select: none;
}
/* Efecto al pasar el cursor */
.mi-acc-header:hover {
    background-color: #00825c;
}
/* Estilo del ícono más */
.mi-acc-header .icon-circle-with-plus,
.mi-acc-header [class^="icon-"] {
    color: #ffffff;
    font-size: 1.1rem;
}
/* Opcional: fondo y borde para el contenido que se despliega */
.mi-acc-panel {
    background-color: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 15px;
    margin-top: -2px; /* Unir visualmente con la barra si deseas */
}