@charset "utf-8";
/* CSS Document */
body{
	font-family: "Open Sans", sans-serif;
	background: #EEEEEE;
}
header{
	background: #FCF8F9;
}
p{
	font-size:0.9rem;
	line-height: 1.3;
}
h1{
	font-size: 1.1rem;
}
h3{
	font-size: 0.8rem;
	font-weight: 400;
}
h4{
	font-size:0.95rem;
	font-weight: 400;
}
h5{
	font-size:0.9rem;
}
.shadow-text_a{
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
}
.shadow-text_b{
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
.cont-logo img {
    max-height: 90px;
    width: auto;
}

/* === REDES SOCIALES CABECERA === */
.red-soc-top{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}
.red-soc-top li{
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	background: #FFFFFF;
	margin: 0 5px;
}
.red-soc-top li a{
	color: #000000;
	font-size: 0.9rem;
	text-decoration: none;
    display:flex;
}

/* ===== TABS PERSONALIZADOS ===== */
#myTab {
    border-bottom: 2px solid #e3e6ea;
    gap: 4px;
}

#myTab .nav-link {
    color:rgba(107,106,106,0.6);
	font-size:0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 18px;
    background-color: #f1f3f5;
    transition: all 0.25s ease;
}

#myTab .nav-link.active {
    background-color: #ffffff;
    color: #0d6efd;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
	
}

#myTab .nav-link:hover {
    color: #0d6efd;
}

#myTabContent {
    /*border: 1px solid #e3e6ea;*/
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: #ffffff;
    padding: 15px;
}





/* === FORMULARIO === */

#frmNew {
   /* tipo de letra */
  font-size: 0.9rem;               /* tamaño de letra */
  color: #333;                   /* color del texto */
}

#frmNew label {
  display: block;       /* cada label en su propia línea */
  margin-bottom: 5px;   /* espacio con el input */    /* en negrita */
  color: #222;          /* color del texto */
}

/* Inputs de texto, email, password, etc. */
#frmNew input[type="text"],
#frmNew input[type="email"],
#frmNew input[type="password"],
#frmNew input[type="number"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

/* Select */
#frmNew select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: inherit;
  font-family: inherit;
  color: inherit;

}

/* Input file */
#frmNew input[type="file"] {
  display: block;
  width: 100%;
  padding: 6px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: inherit;
  font-family: inherit;
  color: #333;
  cursor: pointer;
}

#frmNew input[type="file"]::-webkit-file-upload-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

#frmNew input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #0056b3;
}

/* Botones */
#frmNew button,
#frmNew input[type="submit"],
#frmNew input[type="button"] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

#frmNew button:hover,
#frmNew input[type="submit"]:hover,
#frmNew input[type="button"]:hover {
  background-color: #0056b3;
}


#dropZone {
    border: 2px dashed #0d6efd;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    background:rgba(249,239,205,0.5);
}

#dropZone.dragover {
    background: #e3f2fd;
    border-color: #0a58ca;
}

#fileList {
    margin-top: 10px;
    font-size: 14px;
}
#dropZone span{
	font-size:1.5rem;
}
.btn-delete {
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
}

.btn-delete:focus,
.btn-delete:active {
    outline: none;
    box-shadow: none;
}

.btn-delete .icon-delete {
    font-size: 1.4rem;
    color: #1A1919;
}.archivo-item .icon-file-text-o {
    font-size: 1.1rem;
    margin-right: 6px;
}
#dropZone.error {
    border: 2px dashed #dc3545;
    background: rgba(220, 53, 69, 0.08);
}
/* === LOADING === */
#loading{
	display:none;
}
.contProcessing{
    width: 100vw;
    height: 100vh;
    position: fixed;   /* 👈 CLAVE */
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.65);
    display: none;     /* oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#contLoadDataGrid{
	display:none;
}
.loadingDatagrid{
	position: absolute;
	z-index: 1000;
	background-color:rgba(255,255,255,0.65);
	height: 100%;
	width: 100%;
	padding-top: 150px;
}

.contLoad{
	padding: 2px 15px;
		border: solid 3px #fff;
		border-radius: 4px;
		background-color: #F5F3F3;
		display: flex;
		flex-direction: row;
		align-items: center;
		box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.75);
}
.contTxtLoad{
	font-family: 'Open Sans', sans-serif;
		font-size: 0.8em;
		color: #000;
		margin-left: 10px;
}
.ac-cont-group{
	background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid #e5e7eb;
    
    /* Sombra elegante */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    
    /* Transición suave */
    transition: all 0.3s ease;
}

/* === SOLICITUDES CRAJC === */

.ac-wc-menu{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap:20px;
}
.ac-wc-menu li{
	
}
.ac-wc-menu li a{
	text-decoration: none;
	font-size:0.85rem;
}
.ac-wc-menu li:last-child a{
	text-decoration: none;
	padding: 10px 15px;
	white-space: nowrap;
	 background:#08936C;
  color:#FFFFFF;
  text-shadow: none;
  border-radius:5px;
}

/* =========================
   GRID PRINCIPAL
========================= */
.ac-jc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .ac-jc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ac-jc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ac-jc-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CARD
========================= */
.ac-jc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
	border:solid 3px #FFFFFF;
}

.ac-jc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}


/* =========================
   IMAGEN / MEDIA
========================= */
.ac-jc-card-media {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.ac-jc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================
   BODY
========================= */
.ac-jc-card-body {
    padding: 15px 18px;
    flex: 1;
}
.ac-jc-card-title{
	font-size: 0.95rem;
	font-weight: 500;
	text-align:center;	
}
.ac-jc-card-text {
	text-align: justify;
    font-size: 0.80rem;
    color: #555;
    line-height: 1.5;
}


/* =========================
   FOOTER / BOTONES
========================= */
.ac-jc-card-footer {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================
   BOTONES
========================= */
.ac-jc-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Outline */
.ac-jc-btn-outline {
    border: 1px solid #0ea5b7;
    color: #0ea5b7;
}

.ac-jc-btn-outline:hover {
    background: #08936C;
    color: #fff;
}

/* Light */
.ac-jc-btn-light {
    background: #e6f7fa;
    color: #0f766e;
}

.ac-jc-btn-light:hover {
    background: #cceff5;
}

/* Primary */
.ac-jc-btn-primary {
    background: #08936C;
    color: #fff;
    font-weight: 600;
}

.ac-jc-btn-primary:hover {
    background: #0c8a99;
}


/*=== REQUSITOS === */
.ac-jc-requisitos {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
	padding: 0 15px;
}

/* TÍTULO */
.ac-jc-title {
    font-weight: 600;
    color: #08936C;
    border-left: 4px solid #08936C;
    padding-left: 10px;
}

/* INTRO */
.ac-jc-intro {
    margin-bottom: 15px;
    color: #555;
}

/* LISTA */
.ac-jc-lista {
    list-style: none;
    padding-left: 0;
    counter-reset: item;
}

/* ITEM */
.ac-jc-lista li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    text-align: justify;
    counter-increment: item;
}

/* CÍRCULO CON NÚMERO */
.ac-jc-lista li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;

    width: 26px;
    height: 26px;

    background: #08936C;
    color: #fff;

    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}
/* CAJAS */
.ac-jc-box {
    background: #f8f9fa;
    border-left: 4px solid #08936C;
    padding: 12px 15px;
    border-radius: 6px;
}

/* SUBTÍTULOS */
.ac-jc-subtitle {
    font-weight: 600;
    margin-bottom: 8px;
    color: #08936C;
}

/* CONTACTO */
.ac-jc-contacto,
.ac-jc-formatos {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac-jc-contacto li,
.ac-jc-formatos li {
    margin-bottom: 6px;
}

/* FORMATOS */
.ac-jc-formato-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

/* TEXTO */
.ac-jc-formato-item span {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

/* BOTÓN PEQUEÑO */
.ac-jc-btn-sm {
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
}

/* MODAL LIMPIO */
.ac-jc-modal-clean{
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGEN */
.ac-jc-img-modal{
    border-radius: 10px;
    max-height: 350px;
    object-fit: cover;
}

/* LINK */
.ac-jc-link{
    color:#0d6efd;
    font-weight:500;
    text-decoration:none;
}

.ac-jc-link:hover{
    text-decoration:underline;
}

/* BOTÓN */
.ac-jc-btn-primary{
    background:#08936C;
    border:none;
    padding:10px 25px;
    border-radius:8px;
    color:#fff;
    transition:all .3s ease;
}

.ac-jc-btn-primary:hover{
    background:#08936C;
}
