*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}
h1{ font-size: 3.5em;}
h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
p{font-size: 1.25em}
ul{list-style: none;}
html{
  scroll-behavior: smooth;
}
body{

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    background-color: rgb(219, 204, 204);
    
   
  }

.color-acento{color: orangered;}
header{
  background-color: rgb(219, 204, 204);
  
}


header{
  width: 100%;
  position:fixed;
  top: 0;
  left: 0;
  background: rgb(192, 189, 189);
  z-index: 999;
}

/*HEADER SUPERIOR*/

.header__superior{
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  z-index: 1;
}

.logo img{
  width: 250px;
  text-align: center;
}






/*BARRA MENU*/

.container__menu{
  width: 100%;
  height: 70px;
  background: rgb(87, 85, 85);
  padding: 0px 20px;
  z-index: 1;
}

.menu{
  max-width: 1200px;
  margin: auto;
  height: 100%;
  z-index: 1;
}

nav{
  height: 100%;
}

nav > ul{
  height: 100%;
  display: flex;
}

nav ul li{
  height: 100%;
  list-style: none;
  position: relative;
}



nav > ul > li:first-child:hover > a{
  background-image: url(img/home.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}

nav > ul > li > a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 14px;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 300ms ease;
}

nav > ul > li > a:hover{
  transform: scale(1.1);
  background: orangered;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

#selected{
  transform: scale(1.1);
  background-color: orangered;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}




/*ELEMENTOS RESPONSIVOS*/

.icon__menu{
  font-size: 26px;
  color: white;
  cursor: pointer;
  width: 26px;
  height: 100%;
  display: none;
  align-items: center;
}

#label__check{
  width: 26px;
  height: 100%;
  display: none;
}

#check__menu{
  display: none;
}


  .container__cards{
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    z-index: -1;
    
}
.card{
    width: 300px;
    margin: 10px;
    transition: all 300ms;
    margin: 30px;
   
}

.card:hover{
    width: 350px;
}

.card .cover{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card .cover img{
    width: 250px;
    display: block;
    margin: auto;
    position: relative;
    top: 40px;
    
    filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.5));
    transition: all 400ms;
}

.card:hover .cover img{
    top: 0px;
    filter: none;
    
}


.card .description{
    background: white;
    margin-top: -10px;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    transition: all 300ms;
    
}

.card:hover .description{
    padding: 40px;
}

.card .description h2{
    text-align: center;
    margin-top: 10px;
    color: orangered;
}

.card .description p{
    margin-top: 10px;
    
}

.card .description input{
    padding: 10px 40px;
    margin-top: 20px;
    border: none;
    background: #A6359D;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 300ms;
}

.card .description input:hover{
    background: #83277b;
}

@media screen and (max-width: 720px){

  header {
    flex-direction: column; /* Organiza el logo y los íconos en columna */
    align-items: center;
  }

  .social-icons {
    margin-top: 0px;
    justify-content: center;
  }

  .social-icons a {
    font-size: 1.2rem; /* Reducir el tamaño de los íconos en pantallas pequeñas */
  }
  
  /* Estilo para los íconos de redes sociales */
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    text-decoration: none;
    color:  orangered;
    font-size: 1.5rem;
    transition: transform 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }




  .header__superior{
      padding: 10px;
      z-index: 1;
  }

  .logo img{
      width: 200px;
  }

  nav > ul{
      flex-direction: column;
      background-color: rgb(87, 85, 85);
      position: fixed;
      left: 0;
      top: 158px;
      width: 100%;
      height: 0px;
      transition: all 300ms ease;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
  }

  nav > ul > li > a:hover{
      transform: scale(1);
  }

  nav ul li ul{
      left: 90px;
  }

  nav > ul > li:hover ul{
      top: 50px;
  }

  nav > ul > li:first-child a{
      background-position: 20px;
  }

  #selected{
      transform: scale(1);
  }

  #label__check{
      display: block;
  }

  .icon__menu{
      display: flex;
  }

  #check__menu:checked ~ nav > ul{
      height: 300px;
      visibility: visible;
      opacity: 1;
  }
  .box__footer {
    padding: auto;
  }


  .box__footer a{
    margin-top: 10px;
    color: #f5f2f2;
    font-weight: 600;
    text-decoration: none;
    
    margin: 10px;
  }

  .box__footer h2{
    margin-bottom: 5px;
    color: #f5f2f2;
    font-weight: 700;
    padding: auto;
    text-align: center;
    margin: 10px;
    
  }
  
  .container__footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  padding: auto;

  background-image: linear-gradient(
    0deg,
    rgba(0,0,0,1),
    rgba(0,0,0,1)
  ) ,url("");
  }
  .box__footer ul{
    color: white;
    margin: 10px;
    
  }
  .box__footer .logo img{
    width: 350px;
    height: 150px;
    padding:auto;
    
  }


/*estilo formulario*/
.formulario {
  width: 100%;
  margin: 180px auto;
  margin-bottom: 0%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.formulario h2 {
  text-align: center;
  color: #333;
}

/* Estilo de los campos del formulario */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.formulario input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #555;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Estilo del botón de enviar */
input[type="submit"] {
  background-color: rgb(48, 46, 45);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: orangered;
}

/* Estilos para la validación visual */
input:invalid, textarea:invalid {
  border-color: rgb(20, 20, 20);
}

input:valid, textarea:valid {
  border-color: green;
}


/* ESTILOS DE SLIDER */
#carrusel .container-slider{
  margin: 50px 0;
  position:initial;
  overflow: hidden;
  padding-top: 160px;
  justify-content:initial;
  
}

#carrusel .slider {
  display: flex;
  width: 400%;
  height: 500px;
  margin-left: -100%;
  position: relative;
  z-index: -1;
}
#carrusel .slider:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  height: 100%;
}

#carrusel .slider__section {
  width: 100%;
  position: relative;
}
#carrusel .slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#carrusel .slider__btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  top: 60%;
  
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  
}
.slider__btn:hover { 
  background: #fff;
}
.slider__btn--left{
  left: 10px;
}
.slider__btn--right {
  right: 10px;
}
.slider__content{
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  z-index: 999;
}
#carrusel .slider__title{
  font-size: 2em;
  margin: 0;
  font-weight: bold;
  text-align: center;
  
}


  
/* Contenedor principal del detalle de producto */
.producto-detalle {
  max-width: 1000px;
  margin: 200px auto;
  padding: 20px;
  background-color: #e1dada;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  
}

/* Título de la sección */
.titulo-detalle {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}



/* Detalles de producto (como imagen y descripción) */
.detalle-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  
  
}

.detalle-container .info {
  padding: 20px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Títulos y descripciones del producto */
.detalle-container .info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f46d1f;
}

.detalle-container .info p {
  font-size: 1rem;
  color: #f46d1f;
  margin-bottom: 15px;
  text-align: center;

}

/* Estilo para el botón de regresar */
.btn-regresar {
  display: inline-block;
  padding: 12px 24px;
  margin-left: 25%;
  font-size: 1rem;
  color: #fff;
  background-color: orangered;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.btn-regresar:hover {
  background-color: #913916;
}

  

  
.container__footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  margin-top: 100px;

  background-image: linear-gradient(
      0deg,
      rgba(0,0,0,1),
      rgba(0,0,0,1)
    ) ,url("");

}

.box__footer{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.box__footer .logo img{
  width: 350px;
  height: 180px;
  padding: 20px;
  
}

.box__footer h2{
  margin-bottom: 5px;
  color: #f5f2f2;
  font-weight: 700;
  padding: 40px;
  
}

.box__footer a{
  margin-top: 10px;
  color: #f5f2f2;
  font-weight: 600;
  text-decoration: none;
  
}

.box__footer ul{
  color: white;

}

.box__footer a:hover{
  opacity: 0.8;
  color: white;
  
  
}

.box__footer a .fab{
  font-size: 20px;
}

.box__copyright{
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0px 40px;
}

.box__copyright p{
  margin-top: 20px;
  color: #7a7a7a;
}

.box__copyright hr{
  border: none;
  height: 1px;
  margin-top: 10px;
  background-color: #7a7a7a;
}
.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}


#featured{
  padding-top: 20%;
  margin: top 20%;;
}


}



#somos-megalpar .container{
  text-align: center;
  padding: 200px 12px;
  
}

#content-contacto .container{
  text-align: center;
  padding: 200px 12px;
}
#nuestros-servicios{
  
  color: orangered;
  text-align: center;
}
#nuestros-servicios .container{
  padding: 150px 12px;
}
#nuestros-servicios h2{
  margin-top:0 ;
  font-size: 4em;
}
#nuestros-servicios h4{
  color: rgb(252, 251, 250);
  font-size: 1.5em;
  font-weight: bold;
}
#nuestros-servicios p{
  display: none;
  color: white;
  text-align: center;
}
#nuestros-servicios .carta{
padding: 50px;
margin: 50px;
border-radius: 20px;
}

.carta:first-child{
  background-image: linear-gradient(
    0deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
  )
  ,url("asesoramineto.jpg");
  background-position: center center;
  background-size: cover;
}

.carta:nth-child(2){
  background-image: linear-gradient(
    0deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
  )
  ,url("datos.jpg");
  background-position: center center;
  background-size: cover;

}

.carta:nth-child(3){
  background-image: linear-gradient(
    0deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
  )
  ,url("fab.jpg");
  background-position: center center;
  background-size: cover;
}


#content-contacto h2{
  
  color: orangered;
  text-align: center;
  margin-top:0 ;
  font-size: 4em;
}
.map-container{
  padding-top: 10px;
}

.cajeta{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
}
.caja img{
  width: 200px;
  height: 200px;
  border-radius: 20px;
}
.caja{
  margin: 20px;
}


.card img{
  width: 300px;
  height: 300px;
  border-radius: 20px;
  
}
.card{
  margin: 20px;
  
}

/*boton ir arriba */
.go-top-container{
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  z-index: -1;
}

.go-top-button{
  width: 0rem;
  height: 0rem;
  background: orangered;
  border-radius: 50%;
  cursor: pointer;
  transition: .2s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;

}

.go-top-button i{
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  transition: .2s;

}

.show{
  z-index: 10;
}

.show .go-top-button{
  animation: popup .3s ease-in-out;
  width: 5rem;
  height: 5rem;
  z-index: 11;
}

.show i{
  transform: translate(-50%, -50%) scale(1);
}

@keyframes popup{
  0%{
    width: 0 px;
    height: 0rem;
  }
  50%{
    width: 8rem;
    height: 8rem;
  }
  100%{
    width: 5rem;
    height: 5rem;
  }
}

#Distribuidores{
  padding-top: 250px;
  
}
.cajeta p{
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#content-contacto a{
  color: black;
  text-decoration: none;
  padding-bottom: 10px;
}



@media(min-width:720px){




/* ESTILOS DE SLIDER */
#carrusel .container-slider{
  margin: 50px 0;
  position:initial;
  overflow: hidden;
  padding-top: 160px;
  justify-content:initial;
  
}

#carrusel .slider {
  display: flex;
  width: 400%;
  height: 500px;
  margin-left: -100%;
  position: relative;
  z-index: -1;
}
#carrusel .slider:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  height: 100%;
}

#carrusel .slider__section {
  width: 100%;
  position: relative;
}
#carrusel .slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#carrusel .slider__btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  top: 55%;
  
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  
}
.slider__btn:hover { 
  background: #fff;
}
.slider__btn--left{
  left: 10px;
}
.slider__btn--right {
  right: 10px;
}
.slider__content{
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  z-index: 999;
}
#carrusel .slider__title{
  font-size: 4em;
  margin: 0;
  font-weight: bold;
  
}
  
/* Estilo para los íconos de redes sociales */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  text-decoration: none;
  color:  orangered;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}






  #nuestros-servicios .carta{
    padding: 50px;
    margin: 50px;
    border-radius: 20px;
  }
  #somos-megalpar .container{
    text-align: center;
    padding: 50px 300px;
  
  }


  #somos-megalpar .container{
    display:flex ;
    justify-content: space-evenly;

  }
  #somos-megalpar .texto{
    width: 50%;
    max-width: 500px;
    text-align: initial;
    padding-left: 30px;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;

  }
  #somos-megalpar h2{
    margin-top: 80px;
    
  }
  #somos-megalpar .img-container{
    background-image: linear-gradient(
      0deg,
      rgba(0,0,0,0),
      rgba(0,0,0,0)
    ) ,url("fabricacion.jpg");
    background-size: cover; 
    background-position: center;
    height: 500px;
    width: 500px;
    border-radius: 20px;
    margin-top: 180px;
  }
  #nuestros-servicios .servicios{
    display: flex;
    justify-content: center;
  }
  #nuestros-servicios p{
    display: block;
    padding-top: 10px;
    
  }
  #nuestros-servicios .carta h4{
    margin-top: 0;
    color: white;
    font-size: 2em;
    font-weight: bold;
  }
  #nuestros-servicios .carta{
    padding: 50px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  }



  #content-contacto .container{
    text-align: center;
    padding: 200px 350px;
    margin-top: 0%;
  }


  #content-contacto .container{
    display:flex ;
    justify-content: space-evenly;
    padding-bottom: 10px;
    padding-top: 200px;
  }
  #content-contacto .cont{
    width: 50%;
    max-width: 500px;
    text-align: initial;
    padding-left: 30px;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    

  }
  #content-contacto h2{
    margin-top: 0px;
    color: orangered;
    text-align: initial;
  }
 
  .container__cards{
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    z-index: -1;
    
  }
  .card{
    width: 300px;
    margin: 10px;
    transition: all 300ms;
    margin: 30px;
   
  }

  .card:hover{
      width: 350px;
  }

  .card .cover{
      width: 100%;
      height: 250px;
      position: relative;
      overflow: hidden;
  }

  .card .cover img{
      width: 250px;
      display: block;
      margin: auto;
      position: relative;
      top: 40px;
      
      filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.5));
      transition: all 400ms;
  }

  .card:hover .cover img{
      top: 0px;
      filter: none;
      
  }

  .card .img__back{
      width: 100%;
      height: 200px;
      position: absolute;
      bottom: -80px;
      left: 0;
      background-size: cover;
      border-radius: 20px;
      transition: all 300ms;
      
  }

  .card:nth-of-type(1) .img__back{
      background-image: url();
      
  }

  .card:nth-of-type(2) .img__back{
      background-image: url();
      
  }

  .card:nth-of-type(3) .img__back{
      background-image: url();
    
  }

  .card:hover .img__back{
      bottom: -40px;
    
  }

  .card .description{
      background: white;
      margin-top: -10px;
      padding: 20px;
      border-radius: 0px 0px 20px 20px;
      transition: all 300ms;
      
  }

  .card:hover .description{
      padding: 40px;
  }

  .card .description h2{
      text-align: center;
      margin-top: 10px;
      color: orangered;
  }

  .card .description p{
      margin-top: 10px;
      
  }

  .card .description input{
      padding: 10px 40px;
      margin-top: 20px;
      border: none;
      background: #A6359D;
      color: white;
      font-size: 14px;
      cursor: pointer;
      border-radius: 8px;
      transition: all 300ms;
  }

  .card .description input:hover{
      background: #83277b;
  }







  /* Reset de márgenes y paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo general de la página */
body {
  font-family: 'Arial', sans-serif;
  background-color:rgb(219, 204, 204);
  color: #333;
  line-height: 1.6;
}

/* Sección de productos */
.productos {
  padding: 40px 20px;
  text-align: center;
  margin-top: 200px;
}

/* Título de la sección */
.titulo-productos {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

/* Contenedor de filtros */
.filtros-container {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Estilos de los filtros */
.filtro {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Estilo del campo de búsqueda */
.buscador {
  padding: 10px;
  width: 200px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Contenedor de productos */
.productos-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Estilo para cada tarjeta de producto */
.producto {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
}

.producto:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Imagen de cada producto */
.producto-imagen {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Título y descripción de los productos */
.producto-titulo {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.producto-descripcion {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}
 


/*estilo formulario*/
.formulario {
  width: 25%;
  margin: 220px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.formulario h2 {
  text-align: center;
  color: #333;
  font-size: 30px;
}

/* Estilo de los campos del formulario */
.formulario label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.formulario input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #555555;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Estilo del botón de enviar */
input[type="submit"] {
  background-color: rgb(48, 46, 45);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: orangered;
}

/* Estilos para la validación visual */
input:invalid, textarea:invalid {
  border-color: rgb(20, 20, 20);
}

input:valid, textarea:valid {
  border-color: green;
}


/* Contenedor principal del detalle de producto */
.producto-detalle {
  max-width: 1000px;
  margin: 200px auto;
  padding: 20px;
  background-color: #e1dada;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  
}

/* Título de la sección */
.titulo-detalle {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}



/* Detalles de producto (como imagen y descripción) */
.detalle-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  
  
}

.detalle-container .info {
  padding: 20px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Títulos y descripciones del producto */
.detalle-container .info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f46d1f;
}

.detalle-container .info p {
  font-size: 1rem;
  color: #f46d1f;
  margin-bottom: 15px;
  text-align: center;

}

/* Estilo para el botón de regresar */
.btn-regresar {
  display: inline-block;
  padding: 12px 24px;
  margin-left: 40%;
  font-size: 1rem;
  color: #fff;
  background-color: orangered;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.btn-regresar:hover {
  background-color: #913916;
}




  
.container__footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  margin-top: 100px;

  background-image: linear-gradient(
      0deg,
      rgba(0,0,0,1),
      rgba(0,0,0,1)
    ) ,url("");

}

.box__footer{
  display: flex;
  flex-direction: column;
  padding: 20px;
  
}

.box__footer .logo img{
  width: 350px;
  height: 150px;
  padding-left: 60px;
  margin-top: 50px;
  
}



.box__footer h2{

  color: #f5f2f2;
  font-weight: 700;
  padding: 20px;
  
}

.box__footer a{
  margin-top: 10px;
  color: #f5f2f2;
  font-weight: 600;
  text-decoration: none;
  
}

.box__footer ul{
  color: white;

}

.box__footer a:hover{
  opacity: 0.8;
  color: white;
  
  
}

.box__footer a .fab{
  font-size: 20px;
}

.box__copyright{
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0px 40px;
}

.box__copyright p{
  margin-top: 20px;
  color: #7a7a7a;
}

.box__copyright hr{
  border: none;
  height: 1px;
  margin-top: 10px;
  background-color: #7a7a7a;
}
.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}



#banner {
  background-image: url("img/banner/2.jpg");
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: top 70px center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#banner h4 {
  color: #D8D8D8;
}

#banner h1 {
  color: #fff;
}

#banner button {
  background-color: #fb774b;
}

#featured{
  padding-top: 20%;
  margin: top 20%;;
}

}



/* Diseño responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  header {
    flex-direction: column; /* Organiza el logo y los íconos en columna */
    align-items: center;
  }

  .social-icons {
    margin-top: 0px;
    justify-content: center;
  }

  .social-icons a {
    font-size: 1.2rem; /* Reducir el tamaño de los íconos en pantallas pequeñas */
  }
}
