.main-cont{
  margin: 35px auto;
  max-width: 1100px;
}

li{
  list-style: none;
}

hr{
  margin: 25px 0px;
}

h2{
  margin: 15px;
}

.content{
  display: flex;
  gap: 30px;
  align-content: stretch;
  margin: 0 auto;
}

/* DIR SECTION */

*{
    margin: 0;
    padding: 0;
}

.linea-active {
    width: 40px;
    height: 2px;
    background-color: #f5a623; /* color dorado/naranja */
    margin: 4px auto 0;
}

svg{
    width: 50px;
}

.dir hr{
    margin: 15px;
}

.dir{
    display: flex;
    flex-direction: column;    
    align-items: center;
    text-align: center; 
    min-width: 100px;    
    min-height: 600px;
    max-height: 800px;
}

.dir ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;           
    margin: 0;
    padding: 0;
}
.dir li{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #001F3F;
    cursor: pointer;
    border-bottom: 3px solid transparent; 
    gap: 5px;
}

.dir li:hover{
    font-weight: bold;
}

/* INFO SECTION */ 

.info{
    background-color: #001F3F;
    padding: 50px;
    border-radius: 25px;
    width: 100%;
}

.info p{
    display: flex;
    display: inline;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.info a{
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}

.info a:hover{
    color: lightskyblue;
    text-decoration: underline;
}

.info-cont{
    display: flex;
    gap: 20px;
}

.title {
    min-width: 100px; 
}

/* SELECTOR */

.tab-content.active {
  display: block;
}
.dir li.active p {
  font-weight: bold;
  margin-bottom: 5px;
}

.tab-content {
  display: none !important;
}
.tab-content.active {
  display: block !important;
}

.dir li.active::after {
    content: "";
    display: block;
    width: 75px;
    flex-direction: column;
    border-bottom: 3px solid #FFA500; /* línea naranja cuando está activo */
}