/* ===========================
   RECETARIO — Estilos propios
   (Conviven con styles.css)
   =========================== */


   body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
  }
  
  body.blocked {
    overflow: hidden;
    height: 100vh;
    background-color: #000;
    /* Oculta cualquier fondo temporalmente */
  }
  
  
  
  
  
  
  /* ===== BARRA DE NAVEGACIÓN MINIMALISTA Y RESPONSIVA ===== */
  .navbar-minimal {
    background: #111;
    color: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.13);
  }
  
  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.2rem;
    height: 70px;
  }
  
  .navbar-logo {
    display: flex;
    align-items: center;
  }
  
  .navbar-logo img {
    height: 90px;
    object-fit: contain;
    filter: brightness(1.1);
    margin-top: 30px;
  }
  
  .navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-left: 1rem;
  }
  
  .navbar-toggle span {
    display: block;
    width: 28px;
    height: 3.5px;
    background: #fff;
    border-radius: 2px;
    margin: 4px 0;
    transition: all 0.3s;
  }
  
  .navbar-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .navbar-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar-menu li {
    display: flex;
    align-items: center;
  }
  
  .navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.4em 1em;
    border-radius: 2em;
    transition: background 0.18s, color 0.18s;
    background: none;
    border: none;
    outline: none;
  }
  
  .navbar-menu a:hover,
  .navbar-menu a:focus {
    color: #1ee7ff;
    scale: 1.03;
  }
  
  .btn-inscribete {
    background: #1ee7ff !important;
    color: #111 !important;
    font-weight: 700;
    border-radius: 2em;
    padding: 0.4em 1.2em;
    margin-right: 0.5em;
    transition: background 0.18s, color 0.18s;
    border: none !important;
    box-shadow: 0 2px 8px rgba(30, 231, 255, 0.08);
    font-size: 1.05rem;
  }
  
  .btn-inscribete:hover,
  .btn-inscribete:focus {
    background: #fff !important;
    color: #111 !important;
  }
  
  .navbar-socials-desktop {
    display: flex;
    gap: 1.2rem;
    font-size: 1.3rem;
    align-items: center;
  }
  
  .navbar-socials-desktop a {
    color: #fff;
    transition: color 0.18s;
  }
  
  .navbar-socials-desktop a:hover {
    color: #1ee7ff;
  }
  
  .navbar-socials-mobile {
    display: none;
    gap: -5px;
    margin-top: 1.2em;
    width: 100%;
    justify-content: flex-start;
  }
  
  .navbar-socials-mobile a {
    color: #1ee7ff;
    font-size: 1.5rem;
    transition: color 0.18s;
  }
  
  .navbar-socials-mobile a:hover {
    color: #fff;
  }
  
  @media (max-width: 900px) {
    .navbar-container {
      padding: 0 0.7rem;
      height: 60px;
    }
  
    .navbar-logo img {
      height: 70px;
    }
  
    .navbar-toggle {
      display: flex;
    }
  
    .navbar-menu {
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 0;
      right: -100vw;
      width: 80vw;
      max-width: 340px;
      height: 100vh;
      background: #181818;
      box-shadow: -2px 0 18px #0008;
      padding: 5.5rem 1.3rem 2rem 1.3rem;
      gap: 1.1rem;
      z-index: 1200;
      overflow-y: auto;
      transition: right 0.45s cubic-bezier(.77, 0, .18, 1);
    }
  
    .navbar-menu.open {
      right: 0;
    }
  
    .navbar-socials-desktop {
      display: none;
    }
  
    .navbar-socials-mobile {
      display: flex;
    }
  }
  
  @media (min-width: 901px) {
    .navbar-menu {
      position: static;
      flex-direction: row;
      height: auto;
      background: none;
      box-shadow: none;
      padding: 0;
      gap: 1.2rem;
    }
  
    .navbar-socials-mobile {
      display: none !important;
    }
  }
  
  @media (max-width: 900px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: 80vw;
      max-width: 340px;
      height: 100vh;
      background: #10151b;
      box-shadow: -2px 0 18px #0008;
      flex-direction: column;
      align-items: flex-start;
      padding: 5.5rem 1.3rem 2rem 1.3rem;
      gap: 1.12rem;
      z-index: 1200;
      overflow-y: auto;
      display: none;
      transition: none;
    }
  
    .nav-links.open {
      display: flex;
    }
  
    .nav-links a {
      color: #eaf5f6;
      font-size: 1.13rem;
      text-decoration: none;
      display: block;
      padding: 0.7em 0.2em;
      border-radius: 7px;
      transition: background 0.18s, color 0.18s;
      font-weight: 500;
    }
  
    .btn-inscribete {
      background: #00ddff;
      color: #000 !important;
      font-weight: 700;
      margin-bottom: 0.5em;
      text-align: center;
      font-size: 1.13rem;
      width: 100%;
    }
  
    .nav-links a:hover,
    .nav-links a:focus {
      background: #232b3a;
      color: #6ad2df;
    }
  
    .mobile-socials {
      display: flex;
      gap: 1.2em;
      margin-top: 1.5em;
      width: 100%;
      justify-content: flex-start;
    }
  
    .mobile-socials a {
      color: #6ad2df;
      font-size: 1.5rem;
      transition: color 0.2s;
    }
  
    .mobile-socials a:hover {
      color: #00ddff;
    }
  
    .desktop-socials {
      display: none;
    }
  
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1201;
      margin-left: auto;
      margin-right: 0.5em;
      padding: 0;
    }
  
    .hamburger div {
      width: 28px;
      height: 3.5px;
      background: #6ad2df;
      border-radius: 2px;
      margin: 3.5px 0;
      transition: all 0.3s;
      display: block;
    }
  }
  
  @media (min-width: 901px) {
    .nav-links {
      position: static !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 1.1rem !important;
      background: none !important;
      width: auto !important;
      height: auto !important;
      padding: 0 !important;
      box-shadow: none !important;
      overflow: visible !important;
      right: 0 !important;
      display: flex !important;
    }
  
    .nav-links a {
      color: #f7f5f4;
      font-size: 1rem;
      padding-bottom: 4px;
      transition: color 0.3s;
      font-weight: 400;
      background: none;
      border-radius: 0;
      width: auto;
      display: inline-block;
      margin: 0;
    }
  
    .btn-inscribete {
      font-size: 1rem;
      width: auto;
      margin-left: 0.5em;
      margin-bottom: 5px;
      justify-content: center;
      background: #00ddff !important;
      color: #000 !important;
    }
  
    .mobile-socials {
      display: none !important;
    }
  
    .desktop-socials {
      display: flex !important;
    }
  
    .hamburger {
      display: none !important;
    }
  }
  
  

  







  
.recetario-wrap{
  background: #0e0f10;
  min-height: calc(100vh - 160px);
  padding: 2rem 1rem 3rem;
}

.recetario-container{
  max-width: 1100px;
  margin: 0 auto;
  background: #121416;
  border: 1px solid rgba(106,210,223,0.18);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  padding: 1.5rem 1.2rem 1.6rem;
  color: #eaf5f6;
}

.recetario-title h1{
  margin: 0 0 .4rem 0;
  font-size: 2rem;
  font-weight: 800;
  color: #6ad2df;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.recetario-sub{
  margin: 0 0 1rem 0;
  color: #cfe1e4;
}

/* Toolbar */
.recetario-toolbar{
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: .4rem 0 1rem 0;
}

.selector-mes{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.selector-mes label{
  color: #eaf5f6;
  font-weight: 700;
  letter-spacing: .2px;
}
.selector-mes select{
  background: #191b1d;
  border: 1px solid rgba(106,210,223,.38);
  color: #eaf5f6;
  padding: .45rem .7rem;
  border-radius: 8px;
  outline: none;
}

/* Botón abrir pestaña (hereda estilo de botones del sitio) */
.btn-open{
  white-space: nowrap;
}

/* Visor */
.recetario-view{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0c0d;
  border: 1px solid rgba(106,210,223,.22);
}

/* Relación 4:3 en desktop, 16:9 en móvil para ganar alto */
.recetario-view iframe{
  display: block;
  width: 100%;
  height: 72vh;          /* alto generoso */
  min-height: 520px;
  border: 0;
  background: #000;
}

/* Fallback */
.recetario-fallback{
  padding: 1rem;
  text-align: center;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(106,210,223,.22);
}
.recetario-fallback p{ margin: 0 0 .5rem 0; color: #cfe1e4; }

/* Leyenda y acciones */
.recetario-legend{
  margin-top: .9rem;
  color: #a7cfd5;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.recetario-actions{
  margin-top: 1.2rem;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  color: #a7cfd5;
}

.btn-wh i{ margin-right: .4rem; }

/* Responsive */
@media (max-width: 900px){
  .recetario-container{ padding: 1.1rem .9rem 1.2rem; }
  .recetario-title{ font-size: 1.7rem; }
  .recetario-view iframe{
    height: 64vh;
    min-height: 420px;
  }
}
@media (max-width: 600px){
  .recetario-view iframe{
    height: 60vh;
    min-height: 360px;
  }
}


/* FOOTER*/
/* FOOTER*/
/* FOOTER*/
/* FOOTER*/
.site-footer {
  background-color: #181d1f;
  color: #eaf5f6;
  padding: 44px 16px 24px 16px;
  text-align: center;
  position: relative;
  border-top: 1.05px solid #6ad2df;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 23px;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.65rem;
  transition: color 0.23s, transform 0.21s;
  text-decoration: none;
}

.footer-social a:hover {
  color: #6ad2df;
  transform: scale(1.13);
}

.footer-copy {
  font-size: 1.05rem;
  color: #ffffff;
  margin-top: 0.7rem;
  letter-spacing: 0.2px;
}

@media (max-width:600px) {
  .footer-social {
    gap: 16px;
  }

  .footer-copy {
    font-size: .93rem;
  }
}


/* FOOTER*/
/* FOOTER*/
/* FOOTER*/
/* FOOTER*/





/* WHATSAPP FLOAT BUTTON */
/* WHATSAPP FLOAT BUTTON */
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* ← redondo perfecto */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* WHATSAPP FLOAT BUTTON */
/* WHATSAPP FLOAT BUTTON */
/* WHATSAPP FLOAT BUTTON */

.recetario-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}
.recetario-title {
  font-size: 1.8rem;
  margin: .25rem 0;
  font-weight: 800;
}
/* ...otros estilos... */