@charset "UTF-8";
header {
  background-color: #F5F1E9;
  color: #1F2622;
  padding: 4px 40px;
  font-size: 16px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  background-color: #F5F1E9;
  display: block;
  width: 120px;
}

* {
  background-color: #F5F1E9;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 78px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 20px;
}

/* Buttons */
.primario {
  background-color: transparent;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #1F2622;
  color: #1F2622;
}
.primario a {
  background-color: transparent;
  text-decoration: none;
  color: #1F2622;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}
.primario:hover {
  background-color: #f0eade;
}
.primario:hover a {
  background-color: #f0eade;
}
.primario:hover img {
  background-color: #f0eade;
}

.secundario {
  padding: 12px 24px;
  border-radius: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: black;
}
.secundario a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}
.secundario img {
  background-color: none;
}
.secundario:hover {
  background-color: #f0f0f0;
}
.secundario:hover a {
  background-color: #f0f0f0;
}
.secundario:hover img {
  background-color: #f0f0f0;
}

@keyframes flotacion {
  0% {
    transform: translatey(2px);
  }
  100% {
    transform: translatey(8px);
  }
}
/* =========================
   FOOTER
========================= */
.footer-wrapper {
  padding: 0 40px;
  box-sizing: border-box;
}

/* FRAME EXTERNO */
.footer-frame {
  width: 100%;
  border: 1px solid #1F2622;
  border-radius: 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 60px;
}

/* TEXTO IZQUIERDA */
.footer-text {
  display: flex;
  gap: 80px;
  padding-top: 30px;
}

/* LISTAS */
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list p {
  color: #1F2622;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-list a {
  color: #1F2622;
  text-decoration: none;
  font-size: 16px;
}

/* LOGO DERECHA */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.derechos-reservados {
  padding: 20px 60px;
  background-color: #F5F1E9;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.derechos-reservados p {
  font-size: 14px;
  font-weight: 400;
  color: #5f5f5f;
  background-color: #F5F1E9;
  margin: 0;
}

.derechos-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #F5F1E9;
}

.derechos-logos img {
  height: 22px;
  width: auto;
  display: block;
}

/* ======================
   HERO
====================== */
#hero {
  width: 100%;
  height: 90vh;
  position: relative;
}

/* LOGO SUPERPUESTO */
.hero-logo {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 78vw;
  display: flex;
  justify-content: center;
  background-color: transparent;
  pointer-events: none;
}

.hero-logo img {
  width: 100%;
  max-width: 1500px;
  height: auto;
  display: block;
  background-color: transparent;
}

/* FRAME DE IMÁGENES */
.hero-frame {
  height: 100%;
  margin: 40px 40px 10px;
  display: flex;
  gap: 10px;
}

/* IMÁGENES */
.hero-image {
  border: 1px solid #1F2622;
  border-radius: 30px;
  overflow: hidden;
}

.hero-image-large {
  flex: 0 0 71%;
}

.hero-image-small {
  flex: 0 0 28%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======================
   FEATURE SECTION
====================== */
.feature-frame {
  width: 100%;
  height: 80vh;
  padding: 10px 40px 60px 40px;
  display: flex;
  gap: 10px;
}

/* IZQUIERDA */
.feature-left {
  flex: 0 0 50%;
  height: 100%;
}

.feature-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #1F2622;
  border-radius: 30px;
  display: block;
}

/* DERECHA */
.feature-right {
  flex: 0 0 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* IMAGEN DERECHA */
.feature-right-image {
  height: 65%;
}

.feature-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #1F2622;
  border-radius: 30px;
  display: block;
}

/* TEXTO */
.feature-text {
  height: 70%;
  display: flex;
  flex-direction: column; /* uno arriba del otro */
  align-items: flex-end; /* alineados a la derecha */
  justify-content: flex-end; /* pegados abajo */
  text-align: right; /* texto alineado a la derecha */
  padding-right: 10px;
}

.feature-text p {
  max-width: 60%;
  text-align: right;
  font-size: 18px;
  line-height: 1.4;
  color: #1F2622;
}

.feature-text h1 {
  max-width: 60%;
  text-align: right;
  font-size: 18px;
  line-height: 1.4;
  color: #1F2622;
  font-weight: 600;
}

/* ======================
   MANIFESTO
====================== */
.manifesto {
  width: 100%;
}

/* línea full width */
.manifesto-line {
  width: 100%;
  height: 1px;
  background-color: #1F2622;
}

/* frame interno con padding */
.manifesto-inner {
  padding: 60px 80px 80px;
}

/* layout */
.manifesto-content {
  display: flex;
  width: 100%;
}

/* texto */
.manifesto-text {
  width: 50%;
}

.manifesto-text h2 {
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1F2622;
}

.manifesto-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #1F2622;
  max-width: 90%;
}

/* columna vacía */
.manifesto-empty {
  width: 50%;
}

/* =========================
   COMPRA ONLINE
========================= */
.compra-online {
  width: 100%;
  background-color: #1F2622;
  color: #F5F1E9;
  padding: 60px 0 20px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

.compra-sol {
  position: absolute;
  top: -50px;
  right: 5%;
  width: 250px;
  height: auto;
  z-index: 2;
  background-color: transparent;
  pointer-events: none;
}

/* =========================
   FRAME 1
========================= */
.compra-frame-1 {
  width: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
  background-color: #1F2622;
}

/* IMAGEN */
.compra-image {
  width: 40%;
  aspect-ratio: 1/1;
  border: 1px solid #F5F1E9;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}
.compra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.compra-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #1F2622;
}
.compra-content h3 {
  line-height: 1.2;
  color: #F5F1E9;
  background-color: #1F2622;
}

/* =========================
   BOTÓN SECUNDARIO
========================= */
button.secundario {
  background-color: transparent;
  border: 1px solid #F5F1E9;
  border-radius: 12px;
  padding: 10px 20px;
  cursor: pointer;
  width: fit-content;
}
button.secundario a {
  text-decoration: none;
  color: #F5F1E9;
  font-size: 16px;
  font-weight: 600;
  display: block;
  background-color: #1F2622;
}
button.secundario:hover {
  background-color: #F5F1E9;
}
button.secundario:hover a {
  color: #1F2622;
}

/* =========================
   FRAME 2
========================= */
.compra-frame-2 {
  width: 100%;
  margin-top: 40px;
  background-color: #1F2622;
}

/* TEXTO */
.compra-frame-2 p {
  padding: 12px 80px 1px 80px;
  font-size: 18px;
  line-height: 1.5;
  color: #F5F1E9;
  box-sizing: border-box;
  background-color: #1F2622;
}

/* LINEA FULL WIDTH */
.compra-line {
  width: 100%;
  height: 1px;
  background-color: #F5F1E9;
}

/* =========================
   SECCIÓN FOTOS USUARIOS
========================= */
.fotos-usuarios {
  width: 100%;
  padding: 60px 40px;
  box-sizing: border-box;
}

/* =========================
   FRAME 1 · TÍTULO
========================= */
.fotos-usuarios-title {
  padding-bottom: 20px;
}
.fotos-usuarios-title h2 {
  font-size: 28px;
  color: #1F2622;
  text-align: left;
}

/* =========================
   FRAME 2 · GRID DE FOTOS
========================= */
.fotos-usuarios-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
}

/* BASE DE CADA FOTO */
.foto {
  flex: 1;
  border: 1px solid #1F2622;
  border-radius: 30px;
  overflow: hidden;
}
.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ALTURAS RELATIVAS */
.foto-1 {
  height: 70%;
  align-self: flex-start;
}

.foto-2 {
  height: 100%;
}

.foto-3 {
  height: 60%;
  align-self: flex-start;
}

.foto-4 {
  height: 90%;
  align-self: flex-start;
}

/* =========================
   FRAME 3 · TEXTO
========================= */
.fotos-usuarios-texto {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.fotos-usuarios-texto p {
  width: 28%;
  text-align: right;
  font-size: 18px;
  line-height: 1.5;
  color: #1F2622;
}

/* =========================
   SECCIÓN · EN TU LOCAL
========================= */
.en-tu-local {
  margin: 30px 40px;
  box-sizing: border-box;
}

/* FRAME INTERNO */
.en-tu-local-frame {
  width: 100%;
  background-color: #1F2622;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

/* TEXTO */
.en-tu-local-frame h2 {
  color: #F5F1E9;
  background-color: #1F2622;
  font-size: 28px;
  line-height: 1.2;
  max-width: 900px;
}

.en-tu-local-frame p {
  color: #F5F1E9;
  background-color: #1F2622;
  line-height: 1.6;
  max-width: 700px;
}

/* BOTÓN */
.en-tu-local-frame button.secundario {
  background-color: transparent;
  padding: 0;
  border: none;
}

.en-tu-local-frame button.secundario a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1F2622;
  border: 1px solid #F5F1E9;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}
.en-tu-local-frame button.secundario a:hover {
  background-color: #F5F1E9;
}
.en-tu-local-frame button.secundario a:hover a {
  color: #1F2622 !important;
}

/* =========================
   SECCIÓN · LOGO GRANDE
========================= */
.logo-large {
  width: 100%;
  padding: 60px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-large img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  main {
    overflow-x: hidden;
  }
  header {
    padding: 4px 16px;
  }
  /* HERO MOBILE */
  #hero {
    height: auto;
    margin-top: 40px;
  }
  /* Ocultar logo superpuesto */
  .hero-logo {
    display: none;
  }
  /* Frame pasa a columna */
  .hero-frame {
    flex-direction: column;
    margin: 16px;
    gap: 10px;
  }
  /* Ambas imágenes ocupan todo el ancho */
  .hero-image {
    width: 100%;
    border-radius: 15px;
  }
  /* Imagen 1 → 20% del alto de la pantalla */
  .hero-image-large {
    flex: none;
    height: 30vh;
  }
  /* Imagen 2 → 70% del alto de la pantalla */
  .hero-image-small {
    flex: none;
    height: 60vh;
  }
  /* FEATURE · MOBILE */
  /* ocultar imágenes */
  .feature-left,
  .feature-right-image {
    display: none;
  }
  /* frame pasa a ser solo texto */
  .feature-frame {
    height: auto;
    padding: 1px 16px;
  }
  /* texto ocupa todo el ancho */
  .feature-right {
    flex: 1;
    height: auto;
  }
  /* texto alineado a la izquierda */
  .feature-text {
    height: auto;
    padding: 0;
  }
  .feature-text p {
    max-width: 70%;
    text-align: right;
    font-size: 16px;
  }
  .feature-text h1 {
    max-width: 70%;
    text-align: right;
    font-size: 16px;
  }
  /* MANIFESTO · MOBILE */
  .manifesto-inner {
    padding: 40px 16px 60px;
  }
  .manifesto-content {
    flex-direction: column;
  }
  .manifesto-text {
    width: 90%;
  }
  .manifesto-empty {
    display: none;
  }
  .manifesto-text h2 {
    max-width: 100%;
    font-size: 52px;
  }
  .manifesto-text p {
    max-width: 100%;
    font-size: 16px;
  }
  /* COMPRA ONLINE · MOBILE */
  .compra-online {
    padding: 20px 0;
  }
  .compra-sol {
    position: absolute;
    top: -120px;
    right: 5%;
    width: 200px;
    height: auto;
    z-index: 2;
    background-color: transparent;
    pointer-events: none;
  }
  /* FRAME 1 pasa a columna */
  .compra-frame-1 {
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
  }
  .compra-content {
    width: 90%;
    gap: 16px;
  }
  .compra-content h3 {
    font-size: 60px;
  }
  /* IMAGEN */
  .compra-image {
    width: 100%;
    height: 50vh;
    aspect-ratio: auto;
  }
  /* TEXTO + BOTÓN */
  .compra-content {
    width: 100%;
    gap: 16px;
  }
  /* FRAME 2 */
  .compra-frame-2 {
    margin-top: 24px;
  }
  /* TEXTO */
  .compra-frame-2 p {
    padding: 12px 16px 1px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #F5F1E9;
    box-sizing: border-box;
    background-color: #1F2622;
  }
  /* SECCIÓN usuarios */
  .fotos-usuarios {
    padding: 60px 16px;
  }
  /* OCULTAR TÍTULO */
  .fotos-usuarios-title {
    display: none;
  }
  /* GRID DE FOTOS */
  .fotos-usuarios-grid {
    height: 60vh;
    gap: 0;
  }
  /* OCULTAR FOTOS 1, 2 y 4 */
  .foto-1,
  .foto-2,
  .foto-3 {
    display: none;
  }
  /* FOTO 3 FULL WIDTH */
  .foto-4 {
    flex: none;
    width: 100%;
    height: 100%;
    align-self: stretch;
  }
  /* TEXTO */
  .fotos-usuarios-texto {
    justify-content: flex-end;
  }
  .fotos-usuarios-texto p {
    width: 80%;
    text-align: right;
    font-size: 16px;
  }
  /* EN TU LOCAL · MOBILE */
  .en-tu-local {
    margin: 30px 16px;
  }
  .en-tu-local-frame {
    padding: 46px 14px 40px 14px;
  }
  /* TEXTO */
  .en-tu-local-frame h2 {
    font-size: 28px;
    line-height: 1.2;
    max-width: 900px;
  }
  .en-tu-local-frame p {
    font-size: 15px;
  }
  /* =========================
     SECCIÓN · LOGO GRANDE
  ========================= */
  .logo-large {
    padding: 20px 16px;
  }
  /* FOOTER · MOBILE */
  .footer-wrapper {
    padding: 0 16px;
  }
  /* FRAME EXTERNO */
  .footer-frame {
    flex-direction: column;
    padding: 40px 30px;
    gap: 32px;
  }
  /* TEXTO (LISTAS) */
  .footer-text {
    flex-direction: row;
    gap: 46px;
    padding-top: 0;
  }
  /* LOGO */
  .footer-logo {
    justify-content: flex-end;
  }
  .footer-logo img {
    width: 90%;
    max-width: 400px;
  }
  /* DERECHOS */
  .derechos-reservados {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  /* LOGOS DERECHOS */
  .derechos-logos {
    justify-content: flex-start;
  }
}

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