* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #2b2727;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  background: rgb(179, 199, 213);
  background: linear-gradient(
    to bottom,
    rgba(179, 199, 213, 1) 0%,
    rgba(229, 229, 229, 1) 85%,
    rgba(206, 207, 207, 1) 100%
  );
  width: 100%;
  max-width: 650px;
  height: auto;
  padding: 0;
  box-shadow: 0 4px 8px rgba(228, 227, 227, 0.05);
  margin: 0 auto;
}

/* HEADER */

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 24px;
}

.logo-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icons {
  display: flex;
  gap: 32px;
}

/* CONTENIDO PRINCIPAL */

.home-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 24px;
}

.products-banner {
  width: 95%;
  height: 300px;
  background-color: #e6e6e6;
  background-image: url("./assets/products.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Call to action */

.action-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px;
}

.main-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.products-text {
  font-size: 16px;
}

.retail-button {
  background-color: #96a480;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  max-width: 350px;
  padding: 14px;
  width: 70vw;
}

.retail-button:hover {
  cursor: pointer;
  background-color: #a0ad8c;
}

.wholesale-button {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #96a480;
  border: 1px solid;
  font-weight: bold;
  max-width: 350px;
  padding: 14px;
  width: 70vw;
  transition: background-color 300ms fade-out;
}

.wholesale-button:hover {
  cursor: pointer;
  color: #b3c7d5;
}

/** Vista cuando se hace clic en comprar minorista **/

.retail-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

.retail-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  border-radius: 8px;
  background-color: #e6e6e6;
  padding: 12px;
  gap: 30px;
}

.title {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-top: 16px;
}

.map-container {
  width: 90%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  margin: auto;
}

.map {
  width: 100%;
  height: 100%;
  border: 0;
}

.shop-info-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.shop-info-cont p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: 500;
}

.line {
  margin: 8px;
  border: none;
  border-top: 0.5px solid #6c757d;
  height: 0;
  opacity: 0.3;
  width: 100%;
}

.go-to-store {
  margin: 16px;
  background-color: #96a480;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  width: 70vw;
  max-width: 250px;
}

.go-to-store:hover {
  cursor: pointer;
  background-color: #a0ad8c;
}

.schedule {
  text-align: center;
}
