@font-face {
  font-family: 'Oswald';
  src: url('fonts/Oswald/oswald-v56-latin-600.woff2') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/open-sans-v43-latin-500italic.woff2') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Lobster';
  src: url('fonts/lobster/Lobster-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Courgette';
  src: url('fonts/courgette/Courgette-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
::selection {
  background-color: #fdbd10; /* color de fondo al seleccionar */
  color: black; /* color del texto seleccionado */
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}
h1, h2, h3, .logo, .titulo-1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;

 
}
header {
    background: url(img/3.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}

nav a {
  margin: 0 0.5em;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}
nav .btn {
  background:black;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 20px;
}
 nav .btn:hover {
  background: #222;
  color: #ffcc51;
  transition: background 0.3s ease;
}
.hero {
  display: flex;
  align-items: center;   /* Centrado vertical */
  justify-content: center; /* Centrado horizontal */
  text-align: center;
  height: 80vh; /* Asegura que tome toda la altura de la pantalla */
  color: white;
  padding: 20px;
  position: relative;
}

.hero-img {
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Parallax effect: */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Si usas <img>, el parallax es limitado. Para mejor efecto, usa background-image en .hero */
  pointer-events: none;
}



.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  color: white;
}
/* ...existing code... */
/* 3. Ajuste de .clip-triangulo para que nunca sobresalga */
.clip-triangulo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 620px;
  min-width: 40px;
  height: 50px;
  z-index: 2;
  background: transparent;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #ffcc51;
}

/* ...existing code... */
.titulo-1{
    margin: 0;
    color: #ffffff;

    font-family: 'Courgette', sans-serif;
  
    font-weight: 700;
    line-height: 114px;
    transform: rotate(-5deg); /* Le da un ligero toque inclinado */
    font-size: 6.6666666666667rem;
}
.about {
  background: #fff;
  padding: 3em 3em;
  text-align: center;
}
.about-content {
  display: flex;
  justify-content: center;
  align-items: center;   /* Centra verticalmente */
  gap: 4em;
  margin-top: 1.5em;
  flex-wrap: wrap;
  min-height: 400px;     /* Ajusta según el alto que necesites */
}
.about-text {
  max-width: 500px;
        /* Centra horizontal y vertical si hay espacio */
  text-align: center;

}
.about-text p {
    font-family: 'Oswald', sans-serif;
   font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #343434;
    letter-spacing: 0.5px;
    margin-bottom: 1.2em;
}
.about-images img {
  width: 320px;
  height: 420px;
  object-fit: cover;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 5px solid #db9423;
  margin: 0 auto;
  position: relative;
  margin: 0 1em;
  border-radius: 50%;
}
.expo {
  margin-top: 2em;
  font-size: 0.95em;
}
.etiquetas {
  background: linear-gradient(90deg, #4b1e4d 60%, #ffc43d 100%);
  color: #fff;
  padding: 2em 1em;
  text-align: center;
}


.cta {
  color: #222;
  text-align: center;
  padding: 3em 3em;
}
.cta .btn {
  background: #222;
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 20px;
  margin-top: 1em;
  display: inline-block;
}
.testimonios {
  background: #fff;
  padding: 2em 1em;
  text-align: center;
}
.testimonios-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 1em;
}
.testimonio {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 2px 8px #0001;
  padding: 1em;
  width: 220px;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
}
.footer-content .social img {
  width: 28px;
  margin: 0 0.3em;
}
.btn {
  background: #db9423;
  color: #222;
  border: none;
  border-radius: 20px;
  padding: 0.5em 1.2em;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: black;
    margin-right: 83px;
}
.logo .highlight {
    color: #b85500;
}
.logo .beer {
    background: black;
    color: #d8b172;
    padding: 0 4px;
    margin-left: 5px;
    border-radius: 10px;
}
.logo-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {

  .clip-triangulo {
    width: 60vw;
    min-width: 40px;
    max-width: 120px;
    height: 24px;
  } 
  
}

@media (max-width: 1400px) {
  .navbar {
    padding: 0 2em;
  }

}
@media (max-width: 1200px) {
  .navbar {
    padding: 0 1em;
  }

}


@media (max-width: 600px) {

  .about-images img {
        width: 100%;
  }

  section,
  .cta,
  footer {
     box-sizing: border-box;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  .logo {
    font-size: 1.2rem;
  }
    .titulo-1 {
        font-size: 3rem;
        line-height: 1.2;
        margin: 0.5em 0;
    }
}
/* Adaptación para pantallas pequeñas */
@media (max-width: 600px) {
  .clip-triangulo {
    width: 60vw;
    min-width: 40px;
    max-width: 120px;
    height: 24px;
  }
}


/* Valores Agregados Futurista */
.valores-agregados-futurista {
  padding: 3em 1em 4em 1em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: url(img/mejor-tirado.jpg) center/cover no-repeat, 
            linear-gradient(120deg, #db9423cc 30%, #181818ee 100%);
  filter: brightness(0.9);
  background-repeat: no-repeat;

  background-position: center;
}

.valores-title {
  color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5em;
  text-align: center;
  text-shadow: 0 2px 12px black;
}

.valores-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
}

.valor-futurista {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  padding: 1.2em 0.7em;
  border-radius: 1.2em;
  background: linear-gradient(135deg, rgb(51 47 47) 0%, rgb(0 0 0 / 56%) 100%);
  box-shadow: 0 2px 12px 0 rgba(219,148,35,0.10);
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s cubic-bezier(.4,2,.3,1);
  position: relative;
  overflow: hidden;
}

.valor-futurista:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px 0 #db9423cc;
  background: linear-gradient(120deg, #db9423 60%, #222 100%);
}

.icon-futurista {
  margin-bottom: 1em;
  filter: drop-shadow(0 0 8px #db9423aa);
}

.valor-futurista span {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-top: 0.2em;
  text-align: center;
  text-shadow: 0 2px 8px #222b;
}

.valor-futurista.natural span {
  color: #db9423;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px #fff8;
}

/* Responsive */
@media (max-width: 700px) {
  .valores-grid {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }
  .valores-agregados-futurista {
    padding: 2em 0.5em 1.5em 0.5em;
  }
}



.testimonios {
  background: #fff;
  padding: 2em 1em;
  text-align: center;
  position: relative;
}

.testimonios-carrusel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  max-width: 700px;
  margin: 2em auto 0 auto;
  position: relative;
}

.carrusel-btn {
  background: #db9423;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #db942355;
}
.carrusel-btn:hover {
  background: #b87b0e;
}

.testimonios-list {
  width: 540px;
  min-height: 260px;
  display: contents;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.testimonio {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 4px 16px #db942322;
  padding: 2em 1.2em 1.2em 1.2em;
  width: 48%;
  margin: 0 1%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  z-index: 1;
}
.testimonio.active,
.testimonio.active2 {
  display: flex;
  opacity: 1;
  animation: fadeInTestimonio 0.5s;
}
@keyframes fadeInTestimonio {
  from { opacity: 0; transform: scale(0.96);}
  to { opacity: 1; transform: scale(1);}
}

.testimonio-foto {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
  border: 3px solid #db9423;
  box-shadow: 0 2px 8px #db942355;
}

.testimonio blockquote {
  margin: 0;
  padding: 0;
  text-align: center;
}

.testimonio blockquote p {
  font-style: italic;
  color: #222;
  margin-bottom: 0.7em;
  font-size: 1.1em;
  line-height: 1.4;
}

.testimonio blockquote footer {
  color: #db9423;
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 0.03em;
  background: #fff;
}

@media (max-width: 600px) {
  .testimonios-carrusel {
    max-width: 98vw;
  }
  .testimonios-list {
    width: 90vw;
    min-height: 220px;
  }
  .testimonio {
    padding: 1.2em 0.5em 1em 0.5em;
  }
}
@media (max-width: 700px) {
  .testimonios-list {
    width: 90vw;
    min-height: 220px;
  }
  .testimonio {
    width: 100%;
    margin: 0;
  }
}
/* ...existing code... */

.footer-modern {
  background-image: url('img/fondofooter2.gif ');
  color: #fffbe6;
  padding: 3em 0 3em 0;
  border-top: 3px solid #db9423;
  font-family: 'Oswald', 'Open Sans', Arial, sans-serif;
  box-shadow: 0 -2px 24px #db942344;
  BACKGROUND-REPEAT: no-repeat;
  BACKGROUND-SIZE: cover;
  background-position: center top -90px;
}

.footer-modern-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  padding: 0 2em;
}

.footer-modern-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.footer-modern-logo img {
  width: 180px;
  height: 180px;


}

.footer-modern-brand {
  font-size: 1.7em;
  font-weight: 800;
  color: #db9423;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px #000a;
}

.footer-modern-info {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 1.08em;
  color: #fffbe6;
  opacity: 0.95;
}
.footer-modern-label {
  color: #db9423;
  font-weight: 700;
  margin-right: 0.3em;
}
.footer-modern-phone {
  color: #fffbe6;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px dashed #db9423;
  transition: color 0.2s, border-color 0.2s;
}
.footer-modern-phone:hover {
  color: #db9423;
  border-color: #fffbe6;
}

.footer-modern-social {
  display: flex;
  gap: 1.3em;
}
.footer-modern-social a img {
  width: 50px;
  height: 50px;
 
  border-radius: 50%;
  padding: 0.3em;
  transition: filter 0.3s, transform 0.3s;
}
.footer-modern-social a:hover img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px #db9423aa);
  transform: scale(1.18) rotate(-8deg);
}

.footer-modern-legal {

  margin-top: 2em;
  padding-top: 1em;
  text-align: center;
  font-size: 1em;
  color: #fffbe6;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  opacity: 0.85;
}
.footer-modern-warning {
  font-size: 1.2em;
  margin-left: 0.2em;
  vertical-align: middle;
  animation: bounceIn 1.2s 1 both;
}

@media (max-width: 900px) {
  .footer-modern-container {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
    padding: 0 1em;
  }
  .footer-modern-logo img {
    width: 64px;
    height: 64px;
  }
  .footer-modern-brand {
    font-size: 1.2em;
  }
  .footer-modern-info {
    font-size: 0.98em;
  }
  .footer-modern-social a img {
    width: 28px;
    height: 28px;
    padding: 0.15em;
  }
}

/* Capa oscura semitransparente sobre la imagen */
.footer-modern::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
   
    z-index: 0;
}

/* Asegura que el contenido esté encima de la capa */
.footer-modern > * {
    position: relative;
    z-index: 1;
}
.ingredientes-futurista {
  position: relative;
  padding: 4em 1em 3em 1em;
  overflow: hidden;
  z-index: 1;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ingredientes-bg {
  position: absolute;
  inset: 0;
  background: url('img/5.gif') center/cover no-repeat, linear-gradient(120deg, #db9423cc 30%, #181818ee 100%);
  filter: blur(2px) brightness(0.8);
  z-index: 0;
  animation: bgMove 18s linear infinite alternate;
}
@keyframes bgMove {
  0% { background-position: 60% 40%, center; }
  100% { background-position: 40% 60%, center; }
}
.ingredientes-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2em;
  text-shadow: 0 4px 24px #000a, 0 0 8px #db9423;
  z-index: 2;
  animation: fadeInDown 1s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to   { opacity: 1; transform: translateY(0);}
}
.ingredientes-cards {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}
.ingrediente-card {
  background: rgba(255,255,255,0.13);
  border: 1.5px solid #db9423aa;
  border-radius: 1.5em;
  box-shadow: 0 8px 32px #db942355, 0 1.5px 16px #fff2;
  padding: 2em 1.5em 1.5em 1.5em;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  backdrop-filter: blur(6px) saturate(1.2);
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  position: relative;
  animation: fadeInCard 1.2s cubic-bezier(.77,0,.18,1);
}
.ingrediente-card:hover {
  transform: translateY(-12px) scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 48px #db942399, 0 2px 24px #fff4;
  border: 2.5px solid #db9423;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: scale(0.85) translateY(40px);}
  to   { opacity: 1; transform: scale(1) translateY(0);}
}
.ingrediente-icon {
  width: 94px;
  height: 94px;
  object-fit: contain;
  margin-bottom: 1em;
  border-radius: 50%;
  padding: 0.5em;
  border: 2px solid #db9423;
  animation: popIn 0.8s cubic-bezier(.77,0,.18,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5);}
  to   { opacity: 1; transform: scale(1);}
}
.ingrediente-card h3 {
  color: #db9423;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.04em;
}
.ingrediente-card p {
  color: #fff;
  font-size: 1em;
  opacity: 0.92;
  margin: 0;
}
@media (max-width: 900px) {
  .ingredientes-cards {
    gap: 1em;
  }
  .ingrediente-card {
    min-width: 160px;
    max-width: 98vw;
    padding: 1.2em 0.7em 1em 0.7em;
  }
}
@media (max-width: 600px) {
  .ingredientes-title {
    font-size: 1.3rem;
    margin-bottom: 1.2em;
  }
  .ingredientes-cards {
    flex-direction: column;
    gap: 1em;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
 height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}
.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

nav {
  display: flex;
  align-items: center;
  gap: 1em;
  background: #ffcc51;
    padding: 2px;
    border-radius: 10px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    margin-left: auto;
        width: 48px;
    height: 105px;
            margin: 5px 10px 2px 2px
  }
  nav {
    display: none;
    flex-direction: column;
  
    background: #ffcc51;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1.5em 2em;
    box-shadow: 0 4px 16px #0002;
    z-index: 99;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  nav.open {
    display: flex;
  }
  .navbar {
    padding: 0.7em 1em;
  }
}
@media (max-width: 600px) {
  .navbar {
  flex-direction: row;
    align-items: flex-start;
    gap: 0.5em;
  }
  .logo {
    font-size: 1.2rem;
  }
  .titulo-1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0.5em 0;
  }
  .footer-modern{
    background-position: center top 0px; 
  }
}
/* Momentos Willka Brew */
.momentos-willka {

  padding: 3em 1em;
  text-align: center;

}
.momentos-title {
  color: #db9423;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2em;
  letter-spacing: 0.05em;
}
.momentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.momento-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px #db942322;
  padding: 1.5em 1em;
  max-width: 220px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.momento-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #db9423cc;
}
.momento-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1em;
}
.momento-card h3 {
  color: #db9423;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.momento-card p {
  color: #343434;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .momentos-grid {
    gap: 1em;
            padding: 1rem 3rem;
  }
  .momento-card {
    max-width: 98vw;
    min-width: 140px;
    padding: 1em 0.5em;
  }
}
@media (max-width: 600px) {
  .momentos-grid {
    flex-direction: column;
    gap: 1em;
  }

}

.faq-willka {
  background: #fffbe6;
  padding: 3em 1em;
  text-align: center;
}
.faq-title {
  color: #db9423;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 2em;
  letter-spacing: 0.04em;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #db942322;
  padding: 1.2em 1.5em;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  color: #db9423;
  margin: 0 0 0.5em 0;
  font-size: 1.1em;
}
.faq-item p {
  color: #343434;
  margin: 0;
  font-size: 1em;
}
.faq-item:hover {
  box-shadow: 0 8px 32px #db9423aa;
}
@media (max-width: 600px) {
  .faq-list {
    padding: 0 0.2em;
  }
  .faq-item {
    padding: 1em 0.7em;
  }
}

.como-pedir-willka {
    background: url(img/WILKAADOBE.png);
  padding: 3em 20em;
  text-align: center;
      BACKGROUND-REPEAT: no-repeat;
    BACKGROUND-SIZE: cover;
}
.como-pedir-title {
  color: #db9423;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 2em;
  letter-spacing: 0.04em;
}
.como-pedir-pasos {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.paso {
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 4px 16px #db942322;
  padding: 2em 1em;
  max-width: 220px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.paso:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #db9423cc;
}
.paso-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1em;
}
.paso h3 {
  color: #db9423;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.paso p {
  color: #343434;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .como-pedir-pasos {
    gap: 1em;
  }
  .paso {
    max-width: 98vw;
    min-width: 140px;
    padding: 1em 0.5em;
  }
  .como-pedir-willka {
       background: url(img/WILKAADOBE2.png);
        padding: 3em 2em;
              BACKGROUND-REPEAT: no-repeat;
    BACKGROUND-SIZE: cover;
    }
}
@media (max-width: 600px) {
  .como-pedir-pasos {
    flex-direction: column;
    gap: 1em;
  }

}

.promesa-willka {
  background: #fffbe6;
  padding: 3em 1em;
  text-align: center;
}
.promesa-title {
  color: #db9423;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 2em;
  letter-spacing: 0.04em;
}
.promesa-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.promesa-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px #db942322;
  padding: 2em 1em;
  max-width: 240px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.promesa-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #db9423cc;
}
.promesa-icon {
  font-size: 2.5em;
  margin-bottom: 0.7em;
  display: block;
}
.promesa-item h3 {
  color: #db9423;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.promesa-item p {
  color: #343434;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .promesa-content {
    gap: 1em;
  }
  .promesa-item {
    max-width: 98vw;
    min-width: 140px;
    padding: 1em 0.5em;
  }
}
@media (max-width: 600px) {
  .promesa-content {
    flex-direction: column;
    gap: 1em;
  }
}

.sabias-willka {
  background: #fff;
  padding: 3em 1em;
  text-align: center;
  background: url(img/4.gif);
     BACKGROUND-REPEAT: no-repeat;
     BACKGROUND-SIZE: cover;
    
}
.sabias-title {
  color: #db9423;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 2em;
  letter-spacing: 0.04em;
}
.sabias-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.sabias-item {
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 4px 16px #db942322;
  padding: 2em 1em;
  max-width: 240px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sabias-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px #db9423cc;
}
.sabias-icon {
  font-size: 2.2em;
  margin-bottom: 0.7em;
  display: block;
}
.sabias-item p {
  color: #343434;
  font-size: 1em;
  margin: 0;
}
@media (max-width: 900px) {
  .sabias-grid {
    gap: 1em;
  }
  .sabias-item {
    max-width: 98vw;
    min-width: 140px;
    padding: 1em 0.5em;
  }
}
@media (max-width: 600px) {
  .sabias-grid {
    flex-direction: column;
    gap: 1em;
  }
}