

/* ayuda_responsive.css */

/* ========================= */
/* 🔁 ESTILOS RESPONSIVE     */
/* ========================= */

@media screen and (max-width: 768px) {
  body {
    background-color: #e7e3da !important;
    background-image: url("/static/img/p_fondo_responsive_unificado.png");
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    max-width: 100vw;
    overflow-x: hidden;
  }


  .container {
    position: relative;
    z-index: 2;
    left: 50%;
    transform: translateX(-54%) !important;
    width: 92%;
    max-width: 350px;
    margin: 120px auto 20px auto;
    padding: 25px 20px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }


  .btn-cta-red {
    position: absolute;
    top: 80px !important;
    right: 20px;
    z-index: 100;
    background-color: #92180b;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 10.5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn-cta-red:hover {
    background-color: #527368;
    transform: scale(1.05);
  }


  .container h1 {
    font-size: 18px;
    margin-top: 5px;
  }

  .intro {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .acordeon {
    font-size: 13px;
    padding: 12px;
  }

  .panel p {
    font-size: 12px;
    line-height: 1.4;
  }

  .side-menu {
    width: 50vw;
    left: -50vw;
  }

  .side-menu li a {
    font-size: 12px;
    padding: 8px 0;
  }

  .side-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }



    /* ✅ FOOTER */
  .redes-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px !important;
    margin-bottom: 8px !important;
  }

  .redes-sociales img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }

  .redes-sociales img:hover {
    transform: scale(1.2);
  }

  .marca-registrada {
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 7px !important;
    color: #807e78;
    opacity: 0.8;
    margin-bottom: 2px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .redes-sociales img[src*="youtube_shorts"] {
    width: 20px;
    transform: translateY(1px);
  }


  .menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: auto;
    z-index: 100;
  } 

  .menu-tooltip-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
  }

  
   /* logo: colibrí+pqia.app, al lado del menú */
.logo-responsive {
  display: block !important;
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;                     /* Centrado horizontal */
  transform: translateX(-50%) !important;  /* Corrige el centrado */
  width: auto !important;
  height: auto !important;
  z-index: 10;
}

.logo-colibri-responsive {
  width: 225px  !important;      /* 🔽 Tamaño más pequeño del logo */
  max-width: 38vw  !important;
  height: auto;
}

   /* Oculatqa el botón de ayuda en responsive */
.boton-ayuda {
  display: none !important;
}


}

