
/* Soporte.css */

body {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #375e65;
  margin: 0;
  padding: 0;
  background-color: #e7e3da;
  background-image: url("/static/img/p_login_pqia_1920_x_1080.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.container {
  max-width: 500px;
  position: relative;
  margin: 70px 0 80px 80px;
  left: 400px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 35px 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.container h1 {
  font-size: 16px;
  color: #375e65;
  margin-bottom: 20px;
}

.intro {
  font-size: 12px;
  color: #c48a38;
  margin-bottom: 20px;
  text-align: center;
}

form input,
form textarea {
  width: 80%;
  padding: 6px;
  font-size: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Raleway', sans-serif;
  background-color: rgba(255, 255, 255, 0.3);
  color: #375e65;
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px; /* Añade espacio entre los campos */
}

form input::placeholder,
form textarea::placeholder {
  color: #375e65; /* Gris oscuro como en el registro */
  font-size: 10px;
  font-family: 'Raleway', sans-serif;
  opacity: 1;
}

form input:focus,
form textarea:focus {
  outline: none;
  border: 0.3px solid #375e65;
  box-shadow: 0 0 0 1px #375e6510;
}

.faq-aviso {
  font-size: 12px;
  color: #c57d2b;
  margin-top: 20px;
  text-align: center;
}

.faq-aviso a {
  color: #c57d2b;
  text-decoration: underline;
}


.btn-enviar {
  background-color: #527368;
  color: #fff;
  border: none;
  padding: 6px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enviar:hover {
  background-color: #375e65;
  transform: scale(1.05);
}


/* Botón CTA rojo */
.btn-cta-red {
  background-color: #92180b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Menú lateral y footer: igual al de ayuda.css */
/* (Puedes copiar exactamente esa parte de ayuda.css) */

/* Menú lateral */
.menu-icon {
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 2000;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.menu-icon img {
  width: 100%;
  height: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -250px;
  width: 250px;
  overflow-y: auto;
  background-color: rgba(55, 94, 101, 0.75);
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
  scrollbar-color: #c4c8c3 transparent;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-menu li a {
  color: white;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  transition: background-color 0.3s ease;
}

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

.menu-tooltip-wrapper {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2000;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-tooltip {
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  background-color: rgba(55, 94, 101, 0.85);
  color: white;
  font-size: 11px;
  font-family: 'Raleway', sans-serif;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.menu-tooltip-wrapper:hover .menu-tooltip {
  opacity: 1;
}

.side-menu.open {
  left: 0;
}

/* Colorea el ítem de menú cuando estamos en la vista /historial */
.side-menu li a[href="/historial"] {
  color: #e0a74f !important;
  font-weight: bold !important;
  background-color: transparent !important;
}




.input-error {
  border: 1px solid #f87556 !important;
}

.error-message {
  color: #f87556;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  margin-top: -8px;   /* 🔼 los sube más cerca del campo */
  margin-bottom: 10px;
  text-align: left;
  display: none;
  padding-left: 6px;
}



/* Footer */
.footer {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.redes-sociales {
  display: flex;
  justify-content: center;
  bottom: 40px;
  gap: 100px;
  position: relative;     /* ✅ Añadido */
  top: 3px;              /* ✅ Esto los sube */
  margin-bottom: 10;        /* ✅ Reset para evitar conflicto */
  margin-top: -10px;  
}

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

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

.marca-registrada {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  color: #807e78;
  opacity: 0.8;
  margin-top: 6px;
  text-align: center;
}

/* Ajuste visual específico solo para el icono de Shorts */
.redes-sociales img[src*="youtube_shorts"] {
  width: 24px;
  height: auto;
  transform: translateY(1px); /* Ajuste fino de alineación si lo necesitas */
}



body {
  overflow-x: hidden;
  overflow-y: hidden;
}

html {
  overflow-x: hidden;
}

#asunto-contador {
  display: block;
  font-size: 10px;
  text-align: right;
  color: #375e65;
  margin-top: -8px;
  margin-bottom: 12px;
  padding-right: 10%;
}

/* Por defecto: mostrar solo logo de escritorio */
.logo-superior {
  display: block;
}
.logo-responsive {
  display: none;
}

/* ? */
.boton-ayuda {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  z-index: 999;
  transition: transform 0.3s ease;
}

.boton-ayuda:hover {
  transform: scale(1.1);
}

.icono-ayuda {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Estilo unificado para todos los campos del formulario */
form input,
form textarea,
form select {
  width: 100%;
  height: 42px;
  padding: 10px;
  font-size: 10px;
  font-family: 'Raleway', sans-serif;
  color: #375e65;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #ccc;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  margin-bottom: 14px;
}

/* Altura automática para el textarea */
form textarea {
  height: auto;
  min-height: 90px;
  resize: vertical;
}

/* Estilo para select personalizado */
form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/static/img/flecha_select.png");  /* opcional */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Estilo al enfocar cualquier campo */
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border: 1px solid #375e65;
  box-shadow: 0 0 0 1px #375e6515;
}


/* ❌ Oculta el logo superior en escritorio donde ya hay un colibrí grande */
body.ayuda .logo-superior,
body.generador .logo-superior,
body.historial .logo-superior,
body.plantillas .logo-superior,
body.plantillas_categoria .logo-superior,
body.perfil .logo-superior,
body.comparar .logo-superior,
body.premium .logo-superior,
body.soporte .logo-superior,
body.recuperar .logo-superior {
  display: none;
}

