

/* soporte_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: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    max-width: 100vw;
    overflow-x: hidden;
  }

  html, body {
    height: auto !important;
    min-height: 100vh !important;
    overflow-y: auto !important;    /* ✅ Habilita scroll vertical si el contenido lo necesita */
  }


  .contenido-principal {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
  }

  .container {
    position: relative;
    left: 50%;
    transform: translateX(-50%) !important; /* Empuja un poquito más hacia la izquierda */
    width: 85%;
    max-width: 325px !important;
    margin: 120px 0 40px 0;
    padding: 18px 16px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
  }

  /* ✅ Campos de formulario alineados en tamaño */
  form input,
  form textarea,
  form select {
    width: 100%;
    max-width: 280px;
    font-size: 12px;
    box-sizing: border-box;
  }

  /* ✅ Placeholder coherente (opcional) */
  form input::placeholder,
  form textarea::placeholder {
    font-size: 12px;
  }

  .btn-enviar,
  .faq-aviso {
    align-self: center;
  }

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

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

  .btn-enviar {
    font-size: 11px;
    padding: 8px 20px;
  }

  .btn-cta-red {
    position: absolute;
    top: 80px;
    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 p.intro {
    margin-top: 3px !important; /* O incluso 4px si lo quieres más pegado */
  }


  .faq-aviso {
    font-size: 12px;
    margin-top: 15px;
  }

  .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 {
    margin-top: 20px !important;
    padding-top: 8px;
    padding-bottom: 20px;
    text-align: center;
    position: relative !important;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
  }

  .redes-sociales {
    gap: 50px !important;
    margin-top: 5px;
    margin-bottom: -15px;
  }

  .redes-sociales img {
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
  }

  .marca-registrada {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 8px;
    text-align: center;
    font-size: 9px !important;
  }

  .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 {
    position: fixed !important;
    top: 15px !important;
    left: 50px !important;
    width: 100px;
  }

.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;
}

  .boton-ayuda {
    display: none !important;
  }

  form input[type="email"] {
    margin-bottom: 15px;
  }
}
