main{
    flex: 1;
    padding-top: 5.5rem;
}

body {
    margin: 0;
    display: flex;
    background-color: lightblue;
    flex-direction: column;
    min-height: 100vh;  
    }

.index-oculto {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

        .header{
           background: #7660E6;
           color: white;
           padding: .5rem 0;
           position: fixed;
           left: 0;
           top: 0;
           right: 0;
           z-index: 1000;
        }

        .header a{
            color: white;
            text-decoration: none;
            font-family: Arial, Helvetica, sans-serif;
         font-weight: bold; /* or use the numeric value 700 */
        }

        .logo-nav-container{
            display: flex;
            justify-content: space-between;
            align-items: end;
            flex-wrap: wrap;
        }
         


   .menu-icon{
            display:none;
        }

        .navigation ul{
           margin: 0;
           padding: 0;
           list-style: none;
        }

        .navigation ul li{
            display: inline-block;
        }

        .navigation ul li a{
            display: block;
            padding: 0.5rem 1rem;
            transition: all 0.4s linear;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .navigation ul li a:hover{
           background: #4a4a4a;
        }

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{
    display: flex;
    align-items: center;
    justify-content: center;
}

.antq-01 img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    }

.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;
}


  img.imagen-qsomos{
  width: 50%; 
  height: auto;  
}

#miVideo{
  width:100%;
  height:90%;   
}

.modal-content {
    /* Permite que el modal crezca según el contenido */
    width: fit-content; 
    max-width: 90%; /* Evita que el modal sea más grande que la pantalla */
    max-height: 90%;
    margin: 0 auto;
}

h1.titulo-antq01{
            font-size: 1.2rem;
            text-align: center;
}

h1.titulo-qsomos{
            font-size: 1.2rem;
            text-align: center;    
           }


@media only screen and (max-width: 973px){

    .boton-pdf {
  
            height: 45px;
            margin: 0px 4px 0px 4px;
            }

    .header{
            padding: 0rem 0;
            }

    .tienda-linea{
            margin-top: 1rem;
            }

    h1.titulo-antq01{
           margin-top: 1.2rem;    
           }
    img.img-control{
          margin-top: 1.2rem;  
          }

    h1.titulo-qsomos{
           margin-top: 1rem;    
           }
    div.contacto{
          margin-top: 1.3rem;    
    }
  }
  

        @media only screen and (max-width: 767px){

            .header{
               padding: 0rem 0;
            }

            .tienda-linea{
               margin-top: 1rem;
                       }


            .menu-icon{
                display: block;
                cursor: pointer;
                padding: 0.5rem 1rem;
            }

            .navigation{
                
                width: 100%;
                margin-top: 1rem;
             }

            .navigation ul{
               display: none;
            }

            .navigation ul.show {
               display: block;
            }

            .navigation ul li{
                display: block;
            }

            .navigation ul li a{
                display: block;
                padding: 0.5rem 0;
                transition: all 0.4s linear;
                border-radius: 5px;
            }

            .navigation ul li a:hover{
               background: #4a4a4a;
            }

            h1.titulo-antq01{
            font-size: 1.1rem;
            text-align: center;
             }

          .antq-01 img{
                height: auto;
                width: 100%;
                object-fit: contain;
             }


            footer{
                flex-direction: column;
            }


            .botones{
                flex-direction: column;
                gap: 2vh;
                align-items: center;
            }

            img.imagen-qsomos{
                width: 100%;
            }

            #miVideo{
             width:100%;
             height:auto;   
              }

              .modal-content {
               max-height: auto;   
            }

           .boton-pdf {
           height: 30px;
           margin: 0px 0px 0px 0px;
           }

  

           h5.modal-title{
             font-size: 1.1rem;
             text-align: center;
           }

        }
