/**********************************************/
.cont-1{
    background-color: black;
}
.cont-2 {
    background-color: black; 
    width: 100%;
    animation-duration: 1s;
    animation-name: slidein;
}
@keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }


.inner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    max-width: 1200px; 
    margin: 0 auto;
}

.logo img {
    max-width: 70%;
    height: auto;
    width: 200px;
}

.titulo {
    flex: 1;
    text-align: center;
    padding: 10px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal; 
    text-decoration: none;
}

@media (max-width: 768px) {
    .inner-container {
        flex-direction: column;
        align-items: center;
      }
    
      .logo {
        order: 1; 
        margin-bottom: 10px;
      }
    
      .logo img {
        max-width: 100%;
        height: auto;
        width: 150px;
      }
    
    
      .titulo {
        order: 2; 
        width: 100%; 
        font-size: 14px; 
        gap: 0;
        flex-direction: row;
      }
}

.busqueda {
    display: flex;
    align-items: center;
    flex: 1;
    max-width:500px; 
    position: relative;
}

.busqueda input {
    width: 100%;
    padding: 1px 100px 1px 20px;
    border: 1px solid #ccc;
    border-radius: 100px;
}

.icono-lupa {
    position: absolute;
    right: 10px; 
    color: white;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

@media (max-width: 768px) {
    .titulo {
        flex: 1 0 100%; 
    }
    .busqueda {
        flex: 1 0 100%;
        justify-content: center;
    }
}

/****************************************************/

/*contenedor 4 columnas*/
.cont-4 {
    background-color: #000000;
    padding: 40px;
}

.cont-4-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000;
}
.column {
    flex: 1;
    min-width: 250px;
    box-sizing: border-box;
    padding: 10px;
    color: #ffffff;
    text-align: center;
}
@media (max-width: 768px) {
    .column {
        border-top: 1px solid rgba(255, 255, 255, 0.397);
        padding: 15px ;

    }

    .column:first-child {
        border-left: none; 
    }

    .column:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .images {
        margin: 0 auto;
        width:60%; 
        height: auto;
        justify-items: center; 
        align-items: center;
        align-self: center;
        text-align: center;
        
    }
}

.images {
    display: flex;
    justify-content: space-between;
}
.images img {
    max-width: 48%; 
    height: auto;
}

h2{
    font-size: 0.7rem;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.img-logo{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 5px;
    
}

.img-logo img{
    height: auto;
    width: 50%;
}

@media (max-width: 768px) {
    .img-logo img {
        padding: 0;
        width: 100%;
        margin: 0 auto;

    }
}
.text{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.t1 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
    
}

.t2{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;
}

/*contenedor 3 columnas*/
.cont-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.columna {
    flex: 1 1 calc(33% - 40px);
    margin: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
}

.columna img {
    max-width: 100%; 
}

h3 {
    font-size: 1.2em;
    margin: 10px 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


.botones {
    display: flex;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.btn-1 {
    padding: 5px 10px;
    border-radius: 100px;
    cursor: pointer;
    flex: 1;
    margin: 5px;
    background: transparent; 
    border: 3px solid transparent; 
    background-image: linear-gradient(white, white), linear-gradient(to right, #0DA7DB, #006FC9); /* Degradado */
    background-clip: padding-box, border-box; 
    color: #006FC9;
}

.btn-2 {
    padding: 5px 10px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(to right, #0DA7DB, #006FC9);
    color: white;
    cursor: pointer;
    flex: 1;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .columna {
        flex: 1 1 calc(50% - 40px); 
    }
}

@media (max-width: 480px) {
    .columna {
        flex: 1 1 100%; 
    }
}

/*-----------------------------------------------------------------------*/
.tab-container {
    width: 80%;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .tab-container {
        width: 90%;
    }
}

.tabs {
    display: flex;
    justify-content: space-between;
}

.tab-button {
    padding: 3px;
    background-color:#F29224;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    flex: 1;
    font-size: 1rem;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.tab-button.active {
    background-color: #222529;
}

.tab-content {
    display: none;
    margin-top: 10px;
    padding: 20px;
    flex-wrap: wrap;
}

.tab-content.active {
    display: flex;
}

.item {
    flex: 1 1 calc(33% - 40px);
    justify-content: center;
    padding: 10px;
    margin: 8px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.column-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .column {
        flex-basis: 100%;
    }
}


/*-----------------------------------------------------------------------*/

.enlargeButton {
    padding: 3px 10px;
    border-radius: 100px;
    cursor: pointer;
    flex: 1;
    margin: 5px;
    background: transparent; 
    border: 3px solid transparent; 
    background-image: linear-gradient(white, white), linear-gradient(to right, #0DA7DB, #006FC9); /* Degradado */
    background-clip: padding-box, border-box; 
    color: #006FC9;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#modalImage {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000; /* Asegura que esté por encima del contenido */
}

#modalContent {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Opcional: Para agregar un borde o sombra al contenido */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

}

#pdfViewer {
    width: 100%;
    height: 100%;
}

/*******************************************************************/
.social-bar {
    position: fixed;
    top: 75%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1000;
    padding: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  @media (max-width: 576px) { 
    .social-bar { 
      padding: 10px; 
      top: 70%
    } }
  
  .social-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-bar ul li {
    margin-bottom: 5px;
  }
  
  .social-bar ul li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  @media (max-width: 576px) { .social-bar ul li a{ 
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  } }
  
  .social-bar ul li a:hover {
    background-color: #555;
  }
  
  
  .social-bar ul li .icon-facebook { background-color: #F7931E; }
  .social-bar ul li .icon-instagram { background-color: #F7931E; }
  .social-bar ul li .icon-tiktok { background-color: #F7931E }
  .social-bar ul li .icon-youtube { background-color: #F7931E; }
  .social-bar ul li .icon-whatsapp { background-color: #F7931E; }
  
  
  .social-bar ul li a i {
    display: inline-block;
  }