@charset "UTF-8";
/*  RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  VARIABLES GENERALES */
/*  MIXINS  */
/* ESTILO GENERAL */
body {
  background: radial-gradient(circle farthest-corner at 10% 20%, rgb(58, 35, 12) 0%, rgb(215, 119, 13) 90%);
  background-attachment: fixed;
  background-size: cover;
  font-family: "Poppins", Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
}

/* HEADER + NAV + CTA BUTTONS */
/* ===== Desktop (≥1024px) ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background-color: #794808;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-wrap: nowrap;
}

.header-izq {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
}
.header-izq img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}
.header-izq h1 {
  color: #f5f5f5;
  font-size: 28px;
  letter-spacing: 1px;
}

/* NAVBAR */
.navbar ul {
  display: flex;
  align-items: center;
  gap: 55px;
  list-style: none;
  margin: 0 0 0 40px;
  padding: 0;
}

.navbar ul li a {
  color: #d3b281;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffcc00;
}

/* BOTONES DERECHA (Suscribirse / Iniciar sesión) */
.botones-header {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.botones-header button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}
.botones-header .btn-suscribirse {
  background-color: #b87b35;
  color: #fff;
}
.botones-header .btn-suscribirse:hover {
  background-color: #d4a24c;
  transform: scale(1.05);
}
.botones-header .btn-login {
  background-color: transparent;
  color: #f5f5f5;
  border: 2px solid #f5f5f5;
}
.botones-header .btn-login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* ===== Tablet (600px–1023px) ===== */
@media (max-width: 1023px) {
  .header {
    padding: 16px 32px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .header-izq {
    gap: 18px;
  }
  .header-izq img {
    width: 70px;
  }
  .header-izq h1 {
    font-size: 24px;
  }
  .navbar ul {
    gap: 36px;
    margin-left: 24px;
  }
  .botones-header {
    gap: 10px;
  }
  .botones-header button {
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* ===== Mobile (<600px) ===== */
@media (max-width: 599px) {
  .header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .header-izq {
    justify-content: center;
    gap: 12px;
  }
  .header-izq img {
    width: 60px;
  }
  .header-izq h1 {
    font-size: 20px;
  }
  .navbar ul {
    justify-content: center;
    gap: 18px;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .botones-header {
    justify-content: center;
    margin-left: 0;
    gap: 8px;
  }
  .botones-header button {
    padding: 8px 12px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .botones-header button {
    transition: none;
  }
}
/*  CONTENIDO PRINCIPAL */
main {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}
main h2 {
  font-size: 26px;
  color: #794808;
  margin-bottom: 10px;
  text-align: center;
}
main p {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: justify;
}
main ul {
  list-style: disc inside;
  margin: 10px 0 20px 20px;
  font-size: 17px;
}
main video {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/*  RUTINAS Y VIDEO */
.contenedor-rutinas-video {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px;
  align-items: flex-start;
}
.contenedor-rutinas-video .rutinas {
  background-color: rgb(250, 247, 244);
  flex: 1;
  width: 350px;
  height: 450px;
  aspect-ratio: 16/9;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 25px;
  overflow-y: auto;
}
.contenedor-rutinas-video .rutinas h2, .contenedor-rutinas-video .rutinas h3 {
  color: black;
  text-align: center;
  margin-bottom: 15px;
}
.contenedor-rutinas-video .video-box {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.contenedor-rutinas-video .video-box video {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

:root {
  --alto-receta: 480px;
}

.contenedor-receta-foto {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin: 40px;
  flex-wrap: wrap;
}

.contenedor-receta-foto .recetas {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 25px;
  box-sizing: border-box;
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  height: var(--alto-receta);
  overflow: auto;
}

.contenedor-receta-foto .foto-receta {
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  height: var(--alto-receta);
}

.contenedor-receta-foto .foto-receta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  :root {
    --alto-receta: 360px;
  }
  .contenedor-receta-foto {
    flex-direction: column;
  }
}
/* FORMULARIO CON BOOTSTRAP PERSONALIZADO */
.formulario-general {
  background-color: rgb(219, 217, 212);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}
.formulario-general h2 {
  color: black;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}
.formulario-general label {
  font-weight: bold;
  color: #2b2b2b;
}
.formulario-general input, .formulario-general select, .formulario-general textarea {
  border: 1px solid #794808;
  border-radius: 10px;
  padding: 10px;
  font-family: "Poppins", Arial, sans-serif;
}
.formulario-general button {
  background-color: #794808;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
.formulario-general button:hover {
  background-color: rgb(73.1627906977, 43.5348837209, 4.8372093023);
}

/*  FOOTER */
footer {
  background-color: #794808;
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 15px 15px 0 0;
  margin-top: 50px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

.social-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.social-btns a {
  color: white;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-btns a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

/*  SECCIÓN INICIO */
.inicio {
  padding: 40px;
}
.inicio .inicio-contenido {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.inicio .texto-box {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 25px;
  flex: 1;
  min-width: 350px;
  max-width: 600px;
  margin-top: 40px;
}
.inicio .texto-box h2 {
  color: #794808;
  font-size: 35px;
  margin-bottom: 15px;
}
.inicio .texto-box p {
  font-size: 25px;
  color: #333;
  margin-bottom: 15px;
}
.inicio .texto-box ul {
  list-style: disc;
  padding-left: 25px;
  color: #333;
  font-size: 21px;
}
.inicio .texto-box ul li {
  margin-bottom: 8px;
}
.inicio .video-box {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.inicio .video-box video {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/*  RESPONSIVE */
@media (max-width: 576px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .navbar ul {
    flex-direction: column;
  }
  .contenedor-receta-foto,
  .contenedor-rutinas-video {
    flex-direction: column;
    align-items: center;
  }
  .recetas,
  .rutinas,
  .formulario-section {
    width: 95%;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .contenedor-receta-foto,
  .contenedor-rutinas-video {
    flex-direction: row;
  }
}

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