h1{
    font-size: 25pt;
    color:#59646f;
    font-weight: 500;
    padding-bottom: 10px;
}
p{
    font-size: 12pt;
    color: #293541;
    text-align: justify;
    font-weight: 350;
}
.promo-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
.promo.active {
    opacity: 1;
    z-index: 1;
  }

.bar{
    background-color: #1E3A8A;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center ;
    align-items: start;
    padding: 10px;
}
.search{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}
.search input{
    width: 30%;
    border-style: none;
    padding: 5px;
}
.bar img{
    height: 80px;
    padding: 5px;
    padding-right: 5%;
}
.search button{
    border-style: none;
    height: 100%;
    background-color: #fff;
    margin-left: -2px;
    color: #ababab;
    padding: 5px;
    padding-right: 10px;
}
.links{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;   
}
.links a{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.links a:hover{
    transform: rotate(2deg);
    
}
.promo{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fdfdff;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
}
.promoText{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 5% ;
    color: #081d34;
}
.promoImg{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;

}
.promoText  h1{
    font-size: 35pt;
    font-weight: 600;
}
.promoText h5{
    font-size: 13pt;
    font-weight: 350;
}
.newsteler{
    width: 100%;
}

.newsteler input{
    border-style: solid;
    border-color: #ababab;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-right: 0;
    border-right: 0px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    width: 50%;


}
.newsteler button{
    margin-left: -5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #0068c8;
    color: #fff;
    padding: 5px;
    border-style: solid;
    border-color: #0068c8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    width: auto;

}

.products{
    padding: 5%;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #F8FAFC;
    flex-direction: column;
}
.products h1{
    font-size: 25pt;
}
.list{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.section{
    width: 20%;
    height: auto;
    padding-inline: 10px;
    padding-block: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.section:hover{
    transform: scale(1.01);
}
.section img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section h1{
    font-size: 12pt ;
    color: #081D34;
}
.section a{
    color:#F97316;

}
.brand-slider {
  text-align: center;
  padding: 40px 0;
  background-color: #f8f9fa;
}

.slider-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.brands {
  display: flex;
  gap: 100px;
  height: auto;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none; /* Oculta barra en Firefox */

}

.brands::-webkit-scrollbar {
  display: none; /* Oculta barra en Chrome/Safari */
}

.brands img {
  height: 150px;
  background-color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  
}

.brands img:hover {
  transform: scale(1.1);
}

.slider-btn {
    z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 15pt;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #081D34;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.slider-btn:hover {
  background-color: #081D34;
  color: #fff;
}
.history{
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 5%;
    justify-content: center;
    align-items: center;
    
}
.history-text{
    text-align: center;
    justify-content: center;
    width: 50%;
    padding: 10px;
}
.history-icon{
    width: 50%;
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.history-icon hr{
    width: 80%;
    position: absolute;
    border-color: rgb(224, 224, 224);
    border-style: solid;
    border-width: 2px;
    top: 18px;
    opacity:100;
    z-index: -1;
}
.fechas{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    
}

.point{
    width: 15px;
    height: 15px;
    background-color: #0068c8;
    margin-top: 15px;
    border-radius: 50%;
}
.point.activo{
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 3px;
    background-color: #fff;
    border-color: #0068c8;
}

.pointData{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.pointData p{
    font-weight: 600;
    text-align: center;
    margin-left: -10px;
}
.values{
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1E3A8A;
}
.values h1{
    color: #fff;
}
.cards{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5%;
}
.card{
    width: 22%;
    height: auto;
    /* background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-style: none;
    background-color: #1E3A8A;
}
.card i{
    font-size: 30pt;
    color:#fff;
    margin-bottom: 10px;
}
.card h2{
    font-size: 15pt;
    color: #fff;
    margin-bottom: 20px;
}
.card p{
    font-size: 10pt;
    color: #fff;
}
.proveedores{
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex-direction: row;
}
.provText{
    width: 40%;
    padding: 10px
}
.provText h6{
    font-size: 10pt;
    font-weight: 350;
    margin-block: 10px;
}
.provText hr{
    width: 90%;
}
.proveedores h5{
    font-size: 12pt;
    font-weight: 400;
}
.ofertas{
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;
    background-color: #f1f1f1;; 
}
.oferta{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product{
    width: 22%;
    height: 350px;
    padding: 10px;
    background-color: #fff;
    transition: transform 0.3s ease;
}
.product:hover{
    transform: scale(1.1);
}
.product img{
    width: 90%;
    height: 200px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product a{
    font-size: 12pt;
    font-weight: 350;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* número de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1E3A8A;
    text-decoration: none;
    margin-bottom: 5px;
}
.product h3{
    font-size: 14pt;
    font-weight: 500;
    text-align: left;
}
.form{
    width: 50%;
    height: auto;
    background-color: #f1f1f1;
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgb(139, 139, 139);
}

.form input{
    width: 90%;
    margin-block: 10px;
    padding: 5px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ababab;
    background-color: #f1f1f1;
    transition: border-bottom-color 0.3s ease;
    outline: none;
}
.form input:focus,
.form input:active{
    border-bottom-color: #1E3A8A;
}
.form button{
    margin-top: 10px;
    background-color: #0068c8;
    border-radius: 5px;
    border-style: none;
    padding-inline: 40px;
    padding-block: 5px;
    color: #fff;
    box-shadow: 0 2px 6px rgb(139, 139, 139);
    transition: transform 0.3s ease;
}


.form button:hover{
    transform: rotate(2deg); 
}
.footer{
    width: 100%;
    height: auto;
    background-color: #1E3A8A;
    padding-block: 0.5%;
    padding-inline: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.footer img{
    height: 120px;
}
.footer p{
    font-size: 10pt;
    text-align: right;
    color: #fff;
    
}

.linksfot{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content:  space-between;    
    flex-direction: column;
    align-items: end;
}
.linksfot a{
    color: #fff;
}
.copy{
    height: auto;
    display: flex;
    justify-content: end;
    
}
