@font-face {
  font-family: "tomasino";
  src: url("../fonts/TacticSansExtExd-Blk.woff2") format("woff2"),
    url("../fonts/TacticSansExtExd-Blk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: rgb(26, 35, 43);
}

.curve-top {
  width: 100%;
  height: 150px;
  background: rgb(0, 70, 35);
  border-bottom-left-radius: 50% 90%;
  border-bottom-right-radius: 50% 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 25px solid rgb(248, 234, 32);
}

.center-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  gap: 0px;
  background-color: none;
  border: none;
  font-size: 20px;
}

.label-tomasino {
  font-size: 36px;
  margin: 0;
  color: rgb(244, 227, 21);
  font-family: "tomasino", sans-serif;
  letter-spacing: 3px;
  font-stretch: 10%;
}

.label-al {
  font-size: 20px;
  padding: 5px 15px;
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  font-weight: bold;
}

.body {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  background-color: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.saco-img {
  max-width: 100%;
  height: auto;
  width: 80%; /* Ajusta este valor para dispositivos móviles */
}

.tomasino {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.producto {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 35%; /* Ajusta el tamaño para que quepan 2 productos por fila en móviles */
  margin: 10px; /* Ajusta este valor para cambiar la separación */
  text-align: center;
}

.producto img {
  width: 100%;
  height: auto;
  max-width: 75px;
  margin: 0 auto;
  display: block;
}

.producto p {
  color: white;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background-color: rgb(26, 35, 43);
  width: 100%;
}

.social-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.social-buttons a {
  margin: 0 10px;
}

.social-buttons img {
  width: 50px;
  height: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.contact-info p {
  color: white;
  margin: 5px 0;
  font-weight: normal;
  font-family: "LilitaOne", sans-serif;
}

@media (min-width: 768px) {
  .body {
    flex-direction: row;
    justify-content: space-between;
  }

  .center-div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .saco-img {
    width: 400px; /* Ajusta este valor para pantallas grandes */
  }

  .tomasino {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .producto {
    flex: 1 1 18%; /* Ajusta el tamaño para que quepan 5 productos en una fila */
    margin: 10px;
  }

  .producto:nth-child(1),
  .producto:nth-child(2),
  .producto:nth-child(3),
  .producto:nth-child(4),
  .producto:nth-child(5) {
    order: 1;
  }

  .producto:nth-child(6),
  .producto:nth-child(7),
  .producto:nth-child(8),
  .producto:nth-child(9) {
    order: 2;
  }

  .footer {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    width: auto;
  }

  .social-buttons {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .contact-info {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .tomasino {
    justify-content: space-between;
  }

  .producto:nth-child(9) {
    flex: 1 1 100%; /* La última imagen ocupa toda la fila */
    display: flex;
    justify-content: center;
  }
}
