/* definición de estilos para indice */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 20px;
    /* background-color: rgba(260, 260, 260, 0.815); */
    /* height: 100vh; */
    background-color: rgba(260, 260, 260, 0.815);
    user-select: none;
    cursor: crosshair;
}
header {
    margin-bottom: 10px;
}
main {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: 10px;
}

main > div:first-child {
    width: 23%; /* 23% del ancho */
}

main > div:last-child {
    width: 73%; /* 73% del ancho */
}

.mainsinformato {
    display:flexbox;
    justify-content: left;
    justify-items: left;
    margin-top: 60px; /* Altura del header */
    overflow-y: auto;
    flex: 1;
}
  
h1 {
    text-align: center;
    color: #777777;
    /* background-color: #000000; */
    text-transform: uppercase;
    margin: 0; /* Elimina márgenes para que el fondo ocupe todo el ancho */
    padding: 10px; /* Opcional, para agregar espacio interno alrededor del texto */
}

h2 {
    text-align: center;
    color: #c2ffba;
    background-color: #000000;
    padding: 10px;
    margin: auto;
    border-radius: 8px 8px 0 0;
}
h3 {
    text-align: center;
    font-size: medium;
    color: #c2ffba;
    background-color: #525151;
    padding: 10px;
    margin: auto;
    border-radius: 8px 8px 0 0;
}
p {
    color: #3a3a3a;
    text-align: justify;
}
.img_med{
    height: 100%;
    max-height: 300px;
    margin: 10px;
    border-radius: 1em;
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    
}

.container-45 {
    width: 45vw; /* 45% del ancho de la pantalla */
    height: 45vh; /* 45% de la altura de la pantalla */
    margin: 0 auto; /* Centrar horizontalmente */
    display: flex; /* Opcional: Para usar flexbox */
    justify-content: center; /* Opcional: Centrar contenido horizontalmente */
    align-items: center; /* Opcional: Centrar contenido verticalmente */
    background-color: #f0f0f0; /* Opcional: Fondo claro para distinguir el contenedor */
    border: 1px solid #ccc; /* Opcional: Borde para visualización */
    box-sizing: border-box; /* Para incluir padding y borde en las dimensiones */
}


.table_02 {
    width: 20%;
    max-width: 24%;
    min-width: 15%;
    border-collapse: collapse;
    background-color: #e4e4e44f;
}
table_02::before {
    /* background-color: #dfdfdf; */
    opacity: 0.9;
    z-index: -1;
}


.tablaConBorde th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
td a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: bold;
    transition: color 1s ease, font-weight 1s easy !important;
}
td a:hover {
    color: #252525;
    font-weight: bold;
}
@media (max-width: 768px) {
    table {
        width: 100%;
    }
}
.tit_col {
    color: #333333;
    font-size: 120%;
    font-weight: bold;
}
td {
    text-align: center;
    font-size: 12.5px;
    color: #333;
}

.centrar {
    text-align: center;
}
div {
    /* display: flex; */
    align-items: center;
    /* flex-direction: column; */
    gap: 20px;
    justify-content: center;
    background-color: rgba(240, 240, 240, 0.815);
    margin: 20px;
    padding: 20px;
    /* border-radius: 10px; */
    box-shadow: 0 10px 10px rgba(94, 93, 93, 0.4);
    position: relative;
}
div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/src/img/plano_fondo.PNG);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2; /* Transparencia solo para la imagen */
    z-index: -1; /* Asegura que el fondo esté detrás del contenido */
}

.tabla1 {
    width: 15%;
}

.circle-image {
    width: 250px;
    height: 250px;
    padding: 0%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-style:dotted;
    border-color: rgb(159, 253, 182); */
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-medium {
    width: 150px;
    height: 150px;
    padding: 0%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-style:dotted;
    border-color: rgb(159, 253, 182); */
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
    opacity: 0.3;
    transition: opacity 0.3s ease; /* Transición suave */
}

/* .circle-medium img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.circle-medium:hover {
    opacity: .9 !important;
}

.circle-mediumnohover {
    width: 150px;
    height: 150px;
    padding: 0%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-style:dotted;
    border-color: rgb(159, 253, 182); */
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
    opacity: 0.9;
    /* transition: opacity 0.3s ease;*/
}

.pant-compl {
    width: 95%;
    border-radius: 20px;
    padding: 0px;
}

.styled-button {
    background-color: #d6d6d6; /* Color de fondo verde */
    color: rgb(87, 87, 87); /* Color del texto */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    padding: 5px 10px; /* Espaciado interno */
    text-align: center; /* Centra el texto */
    text-decoration: none; /* Sin subrayado */
    display: inline-block; /* Permite usar márgenes */
    font-size: 16px; /* Tamaño de la fuente */
    cursor: pointer; /* Cambia el cursor al pasar el mouse */
    transition: background-color 0.3s, transform 0.3s; /* Transiciones suaves */
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
}

.styled-button:hover {
    background-color: #d0e7d1; /* Color de fondo en hover */
    transform: translateY(-2px); /* Eleva el botón ligeramente en hover */
    box-shadow: 0 15px 15px rgba(94, 93, 93, 0.4);
}

.styled-button:active {
    transform: translateY(0); /* Regresa a la posición normal al hacer clic */
}
.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.centradocol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 45%;
    min-width: 45%;
    padding: 15px;
    text-align: justify;
    white-space: pre-wrap;
    overflow-y: hidden; /* No se necesita desplazamiento en la dirección Y aquí */
}

.divsinborde {
    background-color: #ffffff00;
    box-shadow: none;
}
.pant-compl {
    width: 95%;
    border-radius: 20px;
    padding: 0px;
}
.modifica {
    background-color: rgb(231, 226, 220);
}
form {
    margin: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    width: 90%;
    margin: 20px;
    background-color: rgb(218, 218, 218);
    backdrop-filter: text;
    box-shadow: 0 10px 10 px rgb(165, 165, 165);
}

input {
    background-color: rgb(241, 255, 225);
    border-color: cadetblue;
    padding: 4px;
    border-radius: 4px;
    outline: none; /* Elimina el borde de enfoque */
    border-color: #ffffff00; /* Establece un solo color de borde */
}
.transparente {
    opacity: 0.8;
}
.grises {
    filter: grayscale(60%);
    border-radius: 15px;
}

.textohover {
    color: #818181 !important;
    font-size: 13.7px !important;
    transition: background-color 0.5s ease, color 0.5s ease !important; /* Se añade transición también al color */
    text-decoration: none !important; /* Elimina el subrayado */
    padding: 5px;
    /* border-radius: 3px; */
}

.textohover:hover {
    color: #525252 !important; /* Cambio más notorio en el color */
    /* font-size: 16px !important; */
    padding: 5px;
    background-color: #ececec;
    border-radius: 3px;
}


.contenido {
    /*clase para organizar las divisiones en columnas*/
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 45%;
    min-width: 45%;
    /* background-color: #fff; */
    padding: 15px;
    /* border-radius: 10px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    text-align: left;
    white-space: pre-wrap; /* Para asegurar que los saltos de línea también se respeten */
}

.contenido iframe {
    width: 100%;
    height: 100%;
    flex-grow: 1; /* Permite que el iframe ocupe todo el espacio disponible */
    border: none;
}
  
.texto-preliminares {
  padding: 2%;
  /* display: flex;
  align-items: baseline; */
}

td.celda-con-circulo {
    min-width: 30ch; /* Ancho mínimo de 30 caracteres */
    font-size: 1.7ch;
    text-transform: uppercase;
    text-decoration: wavy;
}
.celda-con-circulo {
    position:relative;
    padding-left: 20px; /* Espacio para el círculo */
    
}

.celda-con-circulo::before {
    content: ''; /* Elemento vacío para el círculo */
    position:absolute;
    margin-left: 5px;
    left: 0; /* Posicionar el círculo antes del texto */
    top: 50%; /* Centrar verticalmente */
    transform: translateY(-50%);
    width: 10px; /* Tamaño del círculo */
    height: 10px; /* Tamaño del círculo */
    background-color: #aaaaaa; /* Color del círculo */
    border-radius: 50%; /* Hace que sea un círculo */
}

.fn1 {
    text-indent: 2ch;
    font-size: 19px;
    color: #181818;
    text-align: justify;
    /* background-color: #797979; */
    font-weight: bolder;
}

.fn2 {
    text-indent: 4ch;
    font-size: 15px;
    color: #797979;
    text-align: justify;
    font-weight: bold;
}

.fn3 {
    text-indent: 6ch;
    font-size: 12px;
    color: #797979;
    text-align: justify;
}

.ancho1 {
    min-width: 30ch;
}

.ancho2 {
    min-width: 20ch;
}
.tabla01 {
    margin: 0 auto;
    width: 50%; /* Cada tabla ocupará el 22% del ancho del contenedor */
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0);
}

.tit_tabla {
    border: 1px solid #ddd;
    text-align: left;
}

.tablaSinBorde {
    border: none;
}

.header-fijo {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fcfcfce5;
    width: 100%;
    padding: 10px 0;
    z-index: 1000; /* Asegura que esté sobre otros elementos */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destacarlo */
}
.contenido-headerFijo {
    padding-top: 60px; /* Ajusta este valor según la altura del header */
}
.elemento-con-scroll {
    max-height: calc(80vh - 30px); /* Ajusta la altura considerando el padding */
    overflow-y: auto;
    padding: 10px 15px; /* Alinea el padding para compensar y evitar la superposición */
    box-sizing: border-box;
    height: 100%;
}

.sin-estilo {
    border: none!important;           /* Elimina bordes */
    box-shadow: none!important;      /* Elimina sombras */
    background: transparent!important; /* Elimina el fondo */
    background-image:none!important;
}
.sin-estilo::before{
    border: none!important;           /* Elimina bordes */
    box-shadow: none!important;      /* Elimina sombras */
    background: transparent!important; /* Elimina el fondo */
    background-image:none!important;
}

/* Estilos para la cinta de menú */
.menu-cinta {
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px 0;
    margin-top: 10px;
}

/* Estilos para los elementos del menú */
.menu-cinta a {
    color: #bbbbbb;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Estilos para el hover */
.menu-cinta a:hover {
    color: #ffffff;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.textobonito1 {
    color: #575555;
    font-size: x-large;
    font-family: monospace, sans-serif;
}

/* Clase personalizada para inputs tipo rango */
.range-esustenta {
    appearance: none; /* Quita el estilo predeterminado */
    width: 100%;
    height: 10px; /* Altura de la barra */
    background: #E1F3DF; /* Fondo más bajo */
    border-radius: 5px; /* Bordes redondeados */
    outline: none; /* Quita el borde al enfocarse */
    transition: background 0.3s ease; /* Suaviza el cambio de color */
  }
  
  /* Estilo para la barra en Chrome, Safari y Edge */
  .range-esustenta::-webkit-slider-runnable-track {
    background: #ABDBA9; /* Color principal de la barra */
    height: 10px;
    border-radius: 5px;
  }
  
  /* Estilo para el thumb (control deslizante) en Chrome, Safari y Edge */
  .range-esustenta::-webkit-slider-thumb {
    -webkit-appearance: none; /* Quita el estilo predeterminado */
    background: #ABDBA9; /* Color del thumb */
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Forma circular */
    cursor: pointer;
    border: 2px solid #7DAA7A; /* Un borde ligeramente más oscuro */
    transition: background 0.3s ease;
  }
  
  .range-esustenta::-webkit-slider-thumb:hover {
    background: #7DAA7A; /* Cambia ligeramente al pasar el mouse */
  }
  
  /* Estilo para Firefox */
  .range-esustenta::-moz-range-track {
    background: #ABDBA9;
    height: 10px;
    border-radius: 5px;
  }
  
  .range-esustenta::-moz-range-thumb {
    background: #ABDBA9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #7DAA7A;
  }
  
  /* Estilo para Edge */
  .range-esustenta::-ms-track {
    background: transparent; /* Se usa transparente en Edge */
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
    height: 10px;
  }
  
  .range-esustenta::-ms-fill-lower {
    background: #ABDBA9;
    border-radius: 5px;
  }
  
  .range-esustenta::-ms-fill-upper {
    background: #ABDBA9;
    border-radius: 5px;
  }
  
  .range-esustenta::-ms-thumb {
    background: #ABDBA9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #7DAA7A;
  }
  
