/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}


div#content\ conAut {
    display: none;
}

.qino-ejercicio-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #2b2b2b;
}

.qino-item P {
    margin: 5.5px;
}

/* CONTENEDOR PRINCIPAL CON MÁXIMO DE 1300px */
.qino-ejercicio-wrapper {
  display: flex;
  flex-wrap: wrap; /* mantener lado a lado */
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  gap: 25px;
}

/* VIDEO: mayor prioridad en ancho */
.qino-video-wrapper {
  flex: 2 1 800px;
  max-width: 100%;
}

/* CARD: menor prioridad pero flexible */
.qino-card {
  flex: 1 1 420px;
  background-color: #d3f2ef;
  padding: 20px;
  border-radius: 15px;
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 460px;
  box-sizing: border-box;
}

/* RESTO DE ESTILOS SE MANTIENEN */
.qino-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 15px;
  background-color: #000;
}

.qino-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.qino-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 71, 216, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.qino-play-icon {
  width: 70px;
  height: 70px;
  background-color: #9ce1d7;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* TARJETA */
.qino-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.qino-info-basica {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qino-partes-cuerpo {
  min-width: 120px;
  text-align: center;
}

.qino-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.qino-body-img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.qino-zonas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qino-zonas li {
  color: #24a1aa;
  margin-bottom: 4px;
}

.qino-inactive {
  color: #ccc;
}

.qino-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.qino-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.qino-descripcion {

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qino-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.qino-btn {
  display: inline-flex;
  align-items: center;
  background-color: #2f5fff;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
  justify-content: center;
}

.qino-btn:hover {
  background-color: #1c47d8;
}

.qino-btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .qino-ejercicio-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .qino-card,
  .qino-video-wrapper {
    max-width: 100%;
  }
}



/*menu*/


.qino-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: #3c5bff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid white;
  cursor: pointer;
}

.qino-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9997;
}

.qino-side-menu {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  background-color: #3c5bff;
  z-index: 9998;
  padding: 30px 20px;
  transition: right 0.4s ease;
  color: white;
  overflow-y: auto;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
}

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

.qino-side-menu ul li {
  margin-bottom: 10px;
}

.qino-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qino-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.qino-contact-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 12px 20px;
  background-color: #a3f0cb;
  color: #000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.qino-contact-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}




#qimo-menu-button {
    position: fixed;
    top: 15px;
    right: 25px;
    z-index: 100000;
    background-color: #3b5eff;
    color: white;
    border: 2px solid white;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 14px;
}