main{
    flex: 1;
}

body {
    margin: 0;
    display: flex;
    background-color: lightblue;
    flex-direction: column;
    min-height: 100vh;  
    }
.main{
            padding-top: 7rem;
            flex:1;
        }

footer{
    background: #7660E6;
    padding: 0rem 0;
    margin-top: 0.1rem;
    font-weight: bold; /* or use the numeric value 700 */
    color: white;
    display: flex;
    justify-content: space-between;
    }

        .footer-column{
            flex: 1;
            margin: 0 10px;
            text-align: center;
            font-size: 0.8rem;
        }

        .footer-column h5{
            margin-bottom: 15px;
            border-bottom: 5px solid rgb(1,61,112);
            width: fit-content;
            margin: 0 auto;
            font-size: 1rem;
        }

        span{
            color: rgb(1,61,112);
        }

        .footer-column ul{
            list-style: none;
            padding: 0;
        }

        .footer-column ul li{
            margin-bottom: 10px;
        }

        .footer-column ul li a{
            color: white;
            text-decoration: none;
            transition: 0.4s ease;
        }

        .footer-column ul li a:hover{
            color: rgb(1,61,112);
        }

.antq-01 img{
    width: 70%;
    }

.antq-01{
    display: flex;
    align-items: center;
    justify-content: center;
}
.antq-01-col{
    width: 90%; /* Ocupa el 80% del padre */
    max-width: 1200px; /* Evita que crezca demasiado en monitores grandes */
    margin: 0 auto; 
    display: flex;
    align-items: stretch; /* Estira los hijos */   
}

ul.li-carac li{
    line-height: 2;
    font-size: 1rem;
    font-weight: bold;
    list-style-type: circle;
}

.h4-carac {
    margin-bottom: 15px;
    border-bottom: 5px solid rgb(1,61,112);
    width: fit-content;
    margin: 0 auto;
}

.parrafo{
    line-height: 2;
    font-size: 1rem;
    font-weight: bold;
    text-align: justify;
}

.botones {
  display: flex;
  justify-content: space-between; /* Botones en los extremos, espacio en medio */
  /* Alternativas: space-around (espacio alrededor), space-evenly (espacio igualado) */
}

.boton-pdf {
  width: auto;
  height: 30px;
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background: #3d348b;
  box-shadow: 0 5px #2c0b8e;
}
.boton-pdf:hover {
  box-shadow: 0 3px #2c0b8e;
  top: 1px;
}
.boton-pdf:active {
  box-shadow: 0 0 #2c0b8e;
  top: 5px;
}


i{
    font-size: 30px;
    color: white;
}

i:hover{
    opacity: 0.8;
}

.modal-content {
    /* Permite que el modal crezca según el contenido */
    width: fit-content; 
    max-width: 90vw; /* Evita que el modal sea más grande que la pantalla */
    margin: 0 auto;
}



