.title-categoria{
    font-weight: 900;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #C2995C;
}

.descripcion-categoria{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #494D55;
}

.buscador-contendor{
    display: flex;
    width: 360px;
    border-radius: 10px;
    border: 2px solid #7D828B;
    overflow: hidden;
}

.buscador-contendor input {
    flex: 1;
    padding: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.buscador-contendor button{
    background-color: #287f55;
    color: #EFEDEA;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buscador-contendor button:hover {
    background-color: #287f55;
}

.buscador-contendor button:focus {
    background-color: #287f55;
    border: none;
    outline: none;
}

/*ACORDION*/
.accordion {
    width: 100%;
    font-family: sans-serif;
    /* outline: none; */
}

.accordion-item {
    /* background: white; */
    margin-bottom: 20px;
    /* box-shadow: 0 2px 6px rgba(45, 40, 41, 0.1); */
    border-radius: 4px;
    /* overflow: hidden; */
}

.accordion-item .accordion-header {
    box-shadow: 0 2px 20px rgba(45, 40, 41, 0.1);
    position: relative;
    z-index: 1;
    border-radius: 4px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2D2829 !important;
    font-family: "Lato", sans-serif !important;
}

.accordion-header:hover {
    background: #fff;
    outline: none;
}

.accordion-header:focus {
    background: #fff;
    outline: none;
}

.accordion-content {
    background-color: transparent !important;
    display: none;
    font-family: "Lato", sans-serif !important;
    /*padding: 20px;*/
    padding: 0.5rem 0rem 0rem 1rem;
    /* border-top: 1px solid #eee; */
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.documento-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #494D55;
    margin-bottom: 1rem;
}

.documento-info .txt-fecha {
    font-size: 14px;
    color: #797979;

}

.documento-info .icon {
    font-size: 32px;
    color: #c2935d;
    margin-top: -8px;
}

.documento-info a {
    color: #494D55;
    text-decoration: underline;
    font-size: 14px;
}

.arrow{
    font-size: 14px;
}

@media (max-width: 720px) {
    .buscador-contendor{
    width: -webkit-fill-available;
    margin-right: 1rem;
   }

}

.limpiaBusqueda{
    margin-top: 3rem;
    margin-left: 1rem;
    border: none;
    background-color: transparent;
    color: #186ADE;
    text-decoration: underline;
    align-items: center;
}

.limpiaBusqueda:focus{
    border: none;
    outline: none;
}


@media (max-width: 380px) {
    .limpiaBusqueda{
        margin-top: 1.5rem !important;
        margin-left: 0px !important;
   }

}

.x-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: .5rem;
}

.x-icon::before,
.x-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  background-color: #f7931e;
  border-radius: 2px; /* Borde redondeado */
  transform-origin: center;
}

.x-icon::before {
  transform: translate(-50%, -50%) rotate(35deg);
}

.x-icon::after {
  transform: translate(-50%, -50%) rotate(-35deg);
}