@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}

body {
  background: #f4efe4;
}

p {
  font-size: 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #BAE0DB;
}
header .navbar {
  background-color: #BAE0DB !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
}
header .navbar .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}
header .navbar {
  /* LOGO */
}
header .navbar .navbar-brand {
  padding: 0;
}
header .navbar .navbar-brand .logo {
  height: 80px;
  width: auto;
  display: block;
}
header .navbar {
  /* LINKS */
}
header .navbar .navbar-nav {
  margin-left: 40px;
  gap: 30px;
}
header .navbar .navbar-nav .nav-link {
  font-size: 20px;
  color: #A18291;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 12px;
}
header .navbar .navbar-nav .nav-link:hover, header .navbar .navbar-nav .nav-link:focus {
  color: #6f2448;
  text-decoration: underline;
  text-underline-offset: 6px;
}
header .navbar .navbar-nav .nav-link.active {
  color: #6f2448;
}
header .navbar .navbar-toggler {
  border: 0;
  padding: 8px 10px;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar {
  /* MENÚ HAMBURGUESA (tablet/mobile) */
}
@media (max-width: 991.98px) {
  header .navbar .navbar-collapse {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
  }
  header .navbar .nav-link {
    padding: 10px 8px;
  }
}

footer {
  background-color: #BAE0DB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0;
  margin-top: 4rem;
  gap: 8px;
}
footer h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
footer .rslink {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
footer .rslink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .rslink .rrss {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}
footer .rslink .rrss:hover {
  transform: scale(1.1);
}
footer .rslink .wpp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 70px;
  width: auto;
  transition: transform 0.2s ease;
}
footer .rslink .wpp:hover {
  transform: scale(1.1);
}

.index-alt {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.index-alt .bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}
.index-alt .bloque-img {
  width: 50%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.index-alt .bloque-texto {
  width: 50%;
}
.index-alt .bloque-texto h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.index-alt .bloque-texto h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.index-alt .index-btn {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: underline;
  color: #A18291;
}

.precios-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

.precios-title {
  text-align: center;
  margin: 0 0 28px 0;
  font-size: 28px;
}

.productos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.producto {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.producto--destacado {
  border: 2px solid #A18291;
}
.producto-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #fff;
}
.producto-nombre {
  margin: 14px 0 6px 0;
  font-size: 16px;
  font-weight: 600;
}
.producto-precio {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
}
.producto-btn {
  border: 0;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  background: #abe4dc;
  color: #2c8379;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.producto-btn:hover {
  background: #6dd5c7;
  transform: scale(1.05);
}
.producto-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #A18291;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* CONTENEDOR GENERAL */
.gustos {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* GRID DE SABORES */
.gustocontainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 70px;
}

.gusto {
  width: 100%;
  aspect-ratio: 1/1;
  perspective: 1200px;
  cursor: pointer;
}

.gusto-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gusto:hover .gusto-inner {
  transform: rotateY(180deg);
}

.gusto-front,
.gusto-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gustoimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gusto-back {
  transform: rotateY(180deg);
  background: #BAE0DB;
  color: #A18291;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TÍTULO */
.saborestitle {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.saborestitle h2 {
  margin: 0;
  text-align: center;
}

/* NOMBRE OVERLAY */
.gustonombre {
  border-radius: 50%;
  position: absolute;
  inset: 0;
  background: rgba(11, 169, 140, 0.75);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* SUCURSALES */
.sucursales {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.titutlossucursales h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sucursales-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 70px;
}

.sucursal {
  aspect-ratio: 1/1;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sucursal-img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sucursal-nombre {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.sucursal:hover .sucursal-nombre {
  opacity: 1;
}

/* FORMULARIO */
.contacto {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px;
}
.contacto h2 {
  width: 100%;
  max-width: 700px;
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 26px;
}

.formulario {
  width: 100%;
  max-width: 540px;
  background-color: #ba99aa;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contacto-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.contacto-field label {
  font-size: 14px;
  font-weight: 600;
}
.contacto-field input,
.contacto-field textarea {
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  min-height: 100px;
}

.contacto-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn-enviar,
.btn-reset {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-enviar {
  background-color: #BAE0DB;
  color: black;
}

.btn-reset {
  background-color: #BAE0DB;
  color: #111;
}

.btn-enviar:hover,
.btn-reset:hover {
  background-color: #a6d6d0;
  transform: translateY(-2px);
}

.btn-enviar:active {
  background-color: #2c8379;
  transform: scale(0.95);
}

select {
  background-color: #ddd;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  min-height: 30px;
}

/* SECCIONES GENERALES */
section {
  padding: 40px 16px;
}

/* FUNDADOR */
.fundador {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 16px;
  display: grid;
  grid-template-columns: 340px 1fr 320px;
  gap: 40px;
  align-items: center;
}
.fundador-img img, .fundador-img-der img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.fundador-texto {
  max-width: 620px;
}
.fundador-texto h2 {
  margin-bottom: 12px;
}
.fundador-texto p {
  margin-bottom: 14px;
  line-height: 1.7;
}

/* HISTORIA */
.historia {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.historia h2 {
  margin-bottom: 16px;
}
.historia p {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* LEGADO */
.legado {
  text-align: center;
  margin: 0 auto;
  padding-top: 20px;
}
.legado h2 {
  margin-bottom: 12px;
}
.legado p {
  max-width: 800px;
  margin: 0 auto 22px auto;
  line-height: 1.7;
}
.legado-img {
  width: 100%;
  max-width: 1300px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 50px auto 0 auto;
}

/* TÍTULO CON LÍNEAS */
.titulo-lineas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 12px;
}
.titulo-lineas::before, .titulo-lineas::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color: rgb(182.8904109589, 159.1095890411, 170.6164383562);
  max-width: 220px;
}

/* ANIMACIÓN */
@keyframes aparecerSuave {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: aparecerSuave 1.8s ease forwards;
}

/* CAROUSEL */
#carouselExampleIndicators {
  max-width: 1000px;
  margin: 60px auto;
}
#carouselExampleIndicators .carousel-item img {
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}
#carouselExampleIndicators .carousel-control-prev-icon,
#carouselExampleIndicators .carousel-control-next-icon {
  width: 60px;
  height: 60px;
  background-size: 100% 100%;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 16px;
}
.faq .accordion {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.faq .accordion-item {
  border: 0;
  background: #ffffff;
}
.faq .accordion-button {
  background-color: #BAE0DB;
  color: #6f2448;
  font-weight: 700;
  padding: 18px;
}
.faq .accordion-button:hover {
  filter: brightness(0.98);
}
.faq .accordion-button:not(.collapsed) {
  background-color: #A18291;
  color: #fff;
  box-shadow: none;
}
.faq .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.faq .accordion-body {
  background-color: #A18291 #f4efe4, 3%;
  line-height: 1.6;
  padding: 18px 18px 22px;
}

@media (min-width: 480px) and (max-width: 960px) {
  .bloque {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .bloque-img {
    height: 420px;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .bloque {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bloque-img {
    height: auto;
  }
}
/* SABORES - TABLET */
@media (min-width: 480px) and (max-width: 960px) {
  .gustocontainer {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .gusto {
    width: 100%;
  }
}
/* SABORES - MOBILE */
@media (min-width: 300px) and (max-width: 479px) {
  .gustocontainer {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .gusto {
    width: 100%;
  }
}
/* COMPRA - TABLET */
@media (min-width: 500px) and (max-width: 960px) {
  .productos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  .producto {
    max-width: 100%;
  }
  .producto-img {
    height: 260px;
  }
}
/* COMPRA - MOBILE */
@media (max-width: 479px) {
  .productos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .producto-img {
    height: 240px;
  }
  .producto-btn {
    width: 100%;
  }
}
/* HISTORIA - TABLET */
@media (min-width: 500px) and (max-width: 960px) {
  .fundador {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .fundador-img img, .fundador-img-der img {
    width: 90%;
    max-width: 400px;
  }
  .fundador-texto {
    text-align: center;
  }
}
/* HISTORIA - MOBILE */
@media (max-width: 479px) {
  .fundador {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fundador-img img, .fundador-img-der img {
    width: 90%;
    max-width: 350px;
    height: auto;
  }
  .fundador-texto {
    text-align: left;
  }
}
/* SUCURSALES - TABLET */
@media (min-width: 500px) and (max-width: 960px) {
  .sucursales-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}
/* SUCURSALES - MOBILE */
@media (max-width: 479px) {
  .sucursales-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
