/* landing.css generated */
/* === From home.css === */


.section-wrapper {
  scroll-margin-top: 120px;
}


.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}


nav {
  display: flex;
  gap: 15px; 
}


nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  font-size: 1em;
}


nav a:hover {
  color: #999;
  transform: translateY(-1px); /* mueve el texto hacia arriba */
  /* font-size: 1.05em; leve agrandamiento opcional */
}


#detalleCard .detalle-wrapper {
  max-width: 90vw;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}


/* TITULOS */

.home-title {
  max-width: 900px;
  margin: 0px auto 0 auto;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}


.home-title h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(180deg, #0299D6, #A7448A);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  /* efecto gradiente en el texto */
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}


.home-title h2 {
  margin: 5px 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  color: #333;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease forwards;
}


.home-title h3 {
  margin: 5px 0 0 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #666;
  animation: fadeInUp 1.5s ease forwards;
}


/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Hamburger menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  background-color: #d6d6d6;
  height: 3px;
  width: 100%;
  margin: 3px 0;
  transition: all 0.3s;
}

.cta-button,
.buttonRegistro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
  white-space: nowrap;
}

.buttonRegistro.alt {
  border: 2px solid white;
  transition: ease-in-out 0.2s;
}

.buttonRegistro.alt.small{
    height: 32px;
    padding: 0 5px;
    font-size: 14px;
    border: 1px solid white;
  }

.buttonRegistro.alt:hover {
  font-size: 1.1rem;
  box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
  text-shadow: 3px 3px 5px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
  transform: scale(1.02);
}

.cta-button {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-button:hover {
  background-color: #da59b3;
}

.buttonRegistro {
  background-color: #0299D6;
  color: white;
}

.buttonRegistro:hover {
  background-color: #da59b3;
}

/* =============================
   4. CARRUSEL
============================= */
.carousel-container {
  margin: -40px auto 0px auto;
  width: 100%;
  overflow: hidden;
  position: relative;
  /* background-color: rgba(255, 255, 255, 0.5); */
  max-width: 100vw;
}

.carousel-inner {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  position: relative;
  height: 70vh;
  max-height: 600px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px clamp(10px, 5vw, 80px);
  box-sizing: border-box;
}

.slide-content {
  z-index: 2;
  max-width: 100%;
  text-align: left;
}

.slide h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.slide p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.slide img {
  max-width: 40%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.ver-mas {
  background-color:  rgba(167,68,138,1);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.ver-mas:hover {
  background-color:  rgba(167,68,138,1);
}

.ver-mas.gratis {
  background-color: #ff9800;
}

.ver-mas.gratis:hover {
  background-color: #e68900;
}

.carousel-btn.left {
  left: 25px;
}

.carousel-btn.right {
  right: 25px;
} 

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 200px;
  background: rgba(0, 0, 0, 0.07); 
  color: #333;
  font-size: 36px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;

  /* Aquí el efecto de difuminado vertical con alpha */
  -webkit-mask-image:
    linear-gradient(to top, transparent, black 20%, black 80%, transparent),
    linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image:
    linear-gradient(to top, transparent, black 20%, black 80%, transparent),
    linear-gradient(to right, transparent, black 20%, black 80%, transparent);

  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  color: #0299D6;
  /* otros estilos hover */
}

.carousel-btn:active {
  transform: translateY(-50%) scale(1.3);
  transition: transform 0.1s ease;
}

/* =============================
   5. FUNCIONALIDADES
============================= */
.grid-funcionalidades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.funcionalidad {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.funcionalidad img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.funcionalidad h3 {
  font-size: 1.2em;
  margin: 20px 10px 10px;
}

.funcionalidad p {
  font-size: 0.95em;
  color: #555;
  margin: 0 15px;
}

/* =============================
   6. ¿QUIÉNES SOMOS?
============================= */
#quienes-somos {
  margin: 20px auto;
  background-color: #f0f0f0;
}

.quienes-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.quienes-container h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  color: #222;
}

.quienes-texto {
  margin: 0 20px;
  /* flex: 1 1 200px; */
}

.quienes-texto h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.quienes-texto p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
  margin-top: 15px;
}

.stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stacked .quienes-imagen img {
  max-width: 220px;
  margin-bottom: 25px;
  border: 3px solid  rgba(167,68,138,1);
  border-radius: 12px;
  padding: 4px;
  background-color: #fff;
}

.stacked .quienes-texto {
  max-width: 800px;
}

.vision-cierre {
  margin-top: 30px;
  font-size: 1.1em;
  color: #444;
  font-style: italic;
}

.vertical-layout {
  flex-direction: column;
  align-items: flex-start;
}

/* =============================
   7. LOGOS CLIENTES
============================= */
.quienes-logos {
  margin-top: 40px;
  text-align: center;
}

.quienes-logos h3 {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #333;
}

.subtitulo-clientes {
  font-size: 1em;
  color: #666;
  margin: 10px 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.logos-grid img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.logos-grid > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* o el alto deseado de la celda */
}

/* =============================
   8. FORMULARIO DE CONTACTO
============================= */
.seccion-contacto {
  padding: 60px 20px;
  background-color: #f1eaf7;
}

.contacto-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.formulario-contacto {
  flex: 1 1 400px;
  max-width: 500px;
}

.formulario-contacto h2 {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: left;
  color: #222;
}

.formulario-contacto p {
  margin-bottom: 20px;
  font-size: 1em;
  color: #555;
}

.formulario-contacto label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.formulario-contacto input,
.formulario-contacto textarea {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: none;
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(153, 45, 174, 0.2);
  font-size: 1em;
  resize: vertical;
}

.formulario-contacto button {
  margin-top: 20px;
  background-color:  rgba(167,68,138,1);
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.formulario-contacto button:hover {
  background-color: #7a26a4;
}

.imagen-contacto {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.imagen-contacto img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* =============================
   9. FOOTER
============================= */
.footer-legal {
  text-align: center;
  font-size: 10px;
  color: #555;
  line-height: 1.2;
  padding: 10px;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

.footer-legal p {
  margin: 4px 0;
}

.footer-legal strong {
  font-weight: bold;
  color: #222;
}

/* =============================
   10. DETALLE WRAPPER
============================= */
.detalle-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 40px auto;
  padding: 40px;
  max-width: 90vw;
  border-radius: 12px;
  box-sizing: border-box;
}

.detalle-wrapper p {
  text-align: center;
}

/* =============================
   11. OVERLAY
============================= */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  z-index: 10000;
}

#overlay iframe {
  width: 80%;
  height: 80%;
  border: none;
  margin: 5% auto;
  display: block;
  background: white;
  border-radius: 8px;
}

#closeOverlay {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

body {
  height: calc(100vh - 80px);
  font-family: 'Titillium Web', sans-serif;
}


/* ------------------------- FUENTES Y TIPOGRAFÍA ------------------------- */

/* Titulares con Titillium Web */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', sans-serif;
  margin: 15px;
}


h2 {
  color: #333;
  font-size: 1.5em;
}


h3 {
  color: #4d4d4d;
  font-size: 1.25em;
}



label {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


input {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}


/* Keyframes */
@keyframes glow-bg {
  0% {
    box-shadow: 0 0 8px 3px rgba(178, 34, 34, 0.4); /* Brillo sutil y suave */
  }
  50% {
    box-shadow: 0 0 15px 7px rgba(178, 34, 34, 0.5); /* Brillo más suave pero visible */
  }
  100% {
    box-shadow: 0 0 8px 3px rgba(178, 34, 34, 0.4); /* Vuelve a la sombra suave */
  }
}

blockquote.alerta {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  color: #661919; /* Rojo oscuro elegante */
  border-left: 5px solid #b22222; /* Rojo más intenso */
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #ffdddd; /* Color base del fondo */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(178, 34, 34, 0.3); /* Sombra inicial más suave */
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  animation: glow-bg 2s infinite alternate ease-in-out; /* Animación añadida aquí */
}

blockquote.alerta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffdddd;
  border-radius: 8px;
  z-index: -1;
}

blockquote.alerta cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #b22222;
  text-align: right;
  letter-spacing: 0.5px;
}

blockquote.alerta:before {
  content: "⚠ ";
  color: #b22222;
  font-weight: bold;
  margin-right: 5px;
  vertical-align: top;
  display: inline-block;
}

.parrafo-destacado p {
  color: #196685;
  padding: 15px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.parrafo-semi-destacado p {
  color: #202020;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  text-shadow: 0px 2px 2px #a7448967;
}

.span-destacado {
  font-weight: bold;
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.icon {
  margin-bottom: 10px;
  margin-right: 3px;
  margin-left: 15px;
}

.icon-destacado {
  color: #196685; 
  font-size: 24px; 
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5); 
  vertical-align: middle;
  cursor: pointer;
}

.icon-table-red {
  margin-right: 5px;
  color: #851919; 
  font-size: 16px; 
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5); 
  vertical-align: middle;
  cursor: pointer;
}
.icon-table-blue {
  margin-left: 5px;
  color: #236188; 
  font-size: 16px; 
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5); 
  vertical-align: middle;
  cursor: pointer;
}

.icon-close {
  color: rgb(255, 0, 0);
  cursor: pointer; 
  position: absolute; 
  top: 5px; 
  right: 20px;
  font-size: 24px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  cursor: pointer;
}

@keyframes glow {
  0% {
      text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
  }
  50% {
      text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
      color: #2388b0;
  }
  100% {
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
  }
}

.icon-destacado:hover {
  animation: glow 2s ease-in-out infinite;
}

.icon-destacado {
  animation: glow 2s ease-in-out infinite; /* para que se ejecute la animación de .icon-destacado cuando se pasa por sobre el div */
}

.input_icon {
  width: 90%;
  padding: 10px;
  margin: 10px 0 10px 0;
  border: 2px solid #ccc;
  border-radius: 3px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
}

/* CheckBox interruptor */
.switch input {
  display: none;
}

/* Estilos para el contenedor del interruptor */
.switch {
  display: inline-block;
  position: relative;
  width: 60px; /* Aumenté un poco el tamaño */
  height: 30px;
}

/* Estilos del fondo del interruptor */
.switch label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  background: #ff0000;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.2s;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Texto "NO" cuando está apagado */
.switch label::before {
  content: "NO";
  position: absolute;
  right: 10px;
}

/* Estilos del círculo deslizante */
.switch label::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 2px;
  transition: transform 0.3s ease, background 0.3s, box-shadow 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Cambiar el fondo y mover el interruptor cuando está activo */
.switch input:checked + label {
  background: #4caf50;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Mover el botón y cambiar el texto */
.switch input:checked + label::after {
  transform: translateX(47px);
}

/* Cambiar el texto a "SÍ" cuando está encendido */
.switch input:checked + label::before {
  content: "YES";
  left: 10px;
}

/* switch deshabilitado */
.switch.disabled label {
  background: #bbb !important; /* Fondo gris */
  color: #666 !important;      /* Texto más apagado */
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;                /* Efecto visual de "grisado" */
}

/* Círculo deslizante gris claro */
.switch.disabled label::after {
  background: #e0e0e0;
  box-shadow: none;
}

/* Opcional: desactivar transiciones si está disabled */
.switch.disabled label,
.switch.disabled label::after {
  transition: none;
}

/* CheckBox círculo */

.circle-switch input {
  display: none;
}

/* Contenedor del círculo */
.circle-switch {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
}

/* Estilo del círculo */
.circle-switch label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f8d7da;
  border-radius: 50%;
  border: 2px solid #ff0000;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  font-size: 20px;
  font-weight: bold;
  color: transparent; /* Ocultar contenido por defecto */
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

/* Estilo cuando está activado */
.circle-switch input:checked + label {
  background: #4caf50;
  border-color: #4caf50;
  color: white; /* Hacer visible el tilde */
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.6);
}

/* Icono de tilde */
.circle-switch input:checked + label::before {
  content: "✓";
}

/* BOX */
.box {
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: left;
  max-width: 80%;
  margin: 20px auto;
}

.box-title {
  font-size: 1.8rem;
  color: #196685;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2); 
}

.box-standar {
  font-size: 1.1rem;
  color: #333;
  margin: 8px 0;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.box-title {
  font-size: 1.4rem; 
  font-weight: bold; 
  color: #196685; 
  text-align: center; 
  margin-bottom: 20px; 
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); 
  padding: 10px 0; 
  border-bottom: 2px solid rgba(0, 0, 0, 0.1); 
}

.box-alert {
  font-size: 1.1rem; 
  color: #d9534f; 
  background-color: rgba(217, 83, 79, 0.15); 
  padding: 15px; 
  border-radius: 8px; 
  line-height: 1.6; 
  text-align: center; 
  font-weight: bold; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  margin-top: 20px;
}


.box-destacado {
  font-size: 1.1rem; 
  color: #13607e;
  background-color: rgba(83, 150, 180, 0.2);
  padding: 15px; 
  border-radius: 8px; 
  line-height: 1.6; 
  text-align: center; 
  font-weight: bold; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  margin-top: 20px;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4); 
}

.box-standar span {
  font-weight: bold;
  color: #555;
}

.box img {
  display: block;
  margin: 10px auto 20px auto;
  max-width: 100%;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

/* cards */

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card > img {
  height: 200px;
  width: auto;
  margin-bottom: 16px;
}

.popup-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

.welcome-message {
  margin-top: 10vh;
  text-align: center;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.6);
}

.container {
  width: 300px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  margin-top: 5vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container-iframe {
  width: 80vw;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  margin-top: 5vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.container-marco {
  width: fit-content;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  margin-top: 5vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.container-full-width {
  width: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px 0;
  margin-top: 5vh;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.container-full-width-prelogin {
  height: 100vh;
  width: 100%;
  padding: 110px 20px 20px 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.desvanecido {
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.container-background {
  width: 300px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  margin-top: 5vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.container-login {
  display: inline-flex;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
}

.container-table {
  width: 90vw;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  overflow-x: auto;
}

.container-options {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
}

.container-qr img {
display: block;

}

.container-qr {
  margin-top: 20px;
  text-align: center;
}

.container-qr img {
  display: block;
  margin: 0 auto;
}

/* container 2 columnas */

.container-2-columnas {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Estilos para las columnas */
.container-2-columnas .columna2,
.container-2-columnas .columna1 {
  flex: 1; /* Ambas columnas ocupan 50% */
  /*max-width: 50%;  Máximo 50% del ancho */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen responsiva */
.container-2-columnas .columna2 img {
  max-width: 300px;
  height: auto;
}
/************************/

.create {
  width: 80vw;
  margin: 20px auto;
}

/*********** íconos favoritos **********/
#icon-container, #shortcuts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.shortcut-wrapper {
margin: 20px;
}

.icon-wrapper, .shortcut-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon, .shortcut-icon {
  width: 50px;
  height: 50px;
}
#shortcuts-list {
  list-style-type: none;
  padding: 0;
}

/*********** íconos favoritos **********/

/* TABLAS */
/* table-container se carga en un DIV que envuelva la tabla y permite que la misma tenga scroll sobre eje X */

/* .table-container-scroll {
  max-width: 100%;
  overflow-x: auto;
} */

/* td {
  text-align: left;
  vertical-align: middle;
}

th {
  padding: 10px 0 10px 0;
  font-size: 1.2em;
} */

/*utilizar el table-container para permitir que la tabla scrolee al ancho */
.table-container-scroll {
  width: 100%;
  overflow-x: auto; 
  max-width: 100%;
  position: relative;
  box-shadow: inset 10px 0 10px -10px rgba(0, 0, 0, 0.2), 
              inset -10px 0 10px -10px rgba(0, 0, 0, 0.2);
}

/* tabla centrada sin fondo */


.table-centre {
  width: 100%;
  align-items: auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  
}

.table-centre tbody tr {
  transition: all 0.3s ease;
}

.table-centre tbody tr:hover {
  transform: scale(1.02); /* Pequeño efecto de aumento */
}

.table-centre tbody td {
  padding: 1rem;
  font-size: 1rem;
}






.table-style1 {
  width: 80vw;
  border-collapse: collapse;
  margin: 20px;
}

.table-style1.centrada td,
.table-style1.centrada th {
  text-align: center;
}

.table-style1.calendario {
  width: 90%;
}

.table-tab {
  margin: 0 auto;
}

.table-style1 td,
.table-style1 th {
  margin: 5px;
  padding: 8px;
  font-size: 1em;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.table-style2 {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.table-style2 input[type="text"],
.table-style2 input[type="number"] {
  width: 90%;
}

.table-style2 input[type="time"],
.table-style2 input[type="date"] {
  width: 80%;
}

.table-style2 input[type="checkbox"]  {
  width: auto;
}

.table-style2 select {
  width: 90%;
}

/* table-style3 */

.table-style3 {
  width: 100%;
  align-items: auto;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9);
}

.table-style3 input[type="text"],
.table-style3 input[type="number"] {
  width: 90%;
}

.table-style3 input[type="time"],
.table-style3 input[type="date"] {
  width: 80%;
}

.table-style3 input[type="checkbox"]  {
  width: auto;
}

.table-style3 select {
  width: 90%;
  margin: 10px;
}

/* table-style4 */

.table-style4 {
  width: calc(100% - 20px);
  margin: 0 10px 0 10px;
  align-items: auto;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.table-style4 thead {
  background: linear-gradient(135deg, #0299D6, #A7448A);
  color: #ffffff;
}

.table-style4 thead th {
  font-weight: 600;
  font-size: 1rem;
  padding: 5px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}

.table-style4 tbody tr {
  transition: all 0.3s ease;
  cursor: pointer; /* Cambia el cursor a 'pointer' */
}

.table-style4 tbody tr:hover {
  background-color: #f0f3ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Agrega sombra a la fila */
  transform: scale(1.02); /* Pequeño efecto de aumento */
}

.table-style4 tbody td {
  padding: 1rem;
  font-size: 1rem;
  color: #555555;
  border-bottom: 1px solid #eeeeee;
}

.table-style4 tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-style4 tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* Reglas adicionales para .table-style4.static */
.table-style4.static tbody tr {
  cursor: default; /* No cambiar el cursor */
  transition: none; /* Sin transición */
}

.table-style4.static tbody tr:hover {
  background-color: inherit; /* No cambiar el fondo */
  box-shadow: none; /* Sin sombra */
  transform: none; /* Sin transformación */
}

.table-style4 tfoot {
  cursor: pointer;
  background: rgba(108, 99, 255, 0.15); /* Color suave con transparencia */
  color: #444444;
  font-weight: bold;
  text-align: center;
  
  /* Sombra más intensa para mayor profundidad */
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
  
  /* Borde superior sutil para reforzar la separación */
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.table-style4 tfoot td {
  padding: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

/* Estilo adicional para el contenido dentro del tfoot */
.table-style4 tfoot td i {
  margin-right: 8px;
  font-size: 1.2rem;
  color: #6c63ff;
}

.table-style4 tfoot td label {
  font-size: 1rem;
  color: #555555;
}

.table-style4.nopointer tbody tr {
  cursor: default; /* Solo desactiva el cursor tipo 'mano' */
}

.table-style4.colapsable {
  display: inline-table;        /* Permite que el centrado funcione */
  table-layout: auto !important; /* Que no se fije el tamaño de columnas */
  width: auto !important;        /* Se ajusta al contenido */
  max-width: 100%;
}

/* calendar-Table */

/* Estilo base del calendario */
.calendar-style {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Cabecera del calendario (días de la semana) */
.calendar-style thead {
  background: linear-gradient(135deg, #6c63ff, #5a55d6);
  color: #ffffff;
}

.calendar-style thead th {
  font-weight: bold;
  font-size: 1rem;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  border-bottom: 2px solid #5a55d6;
}

/* Celdas del calendario */
.calendar-style tbody td {
  width: calc(); /* 7 columnas para los días de la semana */
  height: 60px;
  padding: 5px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: left;
  vertical-align: top;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

/* Destacar celda individualmente en hover */
.calendar-style tbody td:hover {
  background-color: #e0e3ff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  cursor: pointer;
}

/* Utilizar la clase no-interactivo para los calendarios que no requiera interaccion */
.calendar-style.no-interactivo tbody td:hover {
  background-color: inherit;
  box-shadow: none;
  transform: none;
  cursor: default;
}

/* Forms */

.form-1 {
  width: 95%;
  padding: 10px;
  border-collapse: separate;
  border-spacing: 10px 10px; /* espacio horizontal y vertical entre celdas */
}

.form-1 td:first-child {
  text-align: left;
  vertical-align: middle;
  width: 30%; /* espacio fijo para labels */
  padding-right: 15px;
  font-size: 0.9em;
  white-space: nowrap; /* evitar que el label haga wrap */
}

.form-1 td:last-child {
  width: 70%;
  vertical-align: middle;
  /* Este TD contendrá los inputs */
}

/* Inputs y selects con ancho completo en su contenedor */
.form-1 input.input-modern,
.form-1 select.select-modern {
  width: 100%;
  box-sizing: border-box;
  padding: 6px 10px;
  font-size: 1em;
}

/* Contenedor para inputs dobles (en lugar de tabla anidada) */
.input-double-container {
  display: flex;
  gap: 15px;
}

/* Cada input doble ocupa la mitad del espacio */
.input-double-container input.input-modern {
  width: 50%;
  box-sizing: border-box;
}

/* Ajustes para checkbox row */
.form-1 tr.terms-row td:first-child {
  text-align: right;
  padding-right: 10px;
  width: auto;
  white-space: normal;
}

.form-1 tr.terms-row td:last-child p#aceptacionTerminosYCondiciones {
  margin: 0;
  font-size: 0.9em;
}

/* Opcional: para inputs con clase dni, ajustar ancho si es necesario */
.dni {
  width: 95%;
}


/* TAB Pestañas */

/* options es para los <ul> */
.options {
  display: flex;
  width: 100%;
  height: 15%;
  list-style: none;
}

.options-newsearch {
  display: flex;
  width: 100%;
  height: 15%;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.4);
}

/* option se utiliza para los <li> */
.option {
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
  line-height: 60px;
  border-radius: 5px 5px 0 0;
  border: solid 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.option-active {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 5px -1px 7px rgba(0, 0, 0, 0.6);
}

.display-none {
  display: none;
}

.display-block {
  display: block;
}

.option-hide {
  max-height: 0;
  width: 0;
  overflow: hidden;
  /* opacity: 0; */
  display: none;
  transition: max-height 1s ease-in-out, opacity 0.5s ease-in-out;
}

.option-show {
  max-height: auto; /* Ajusta según el contenido */
  /* opacity: 1; */
  display: block;
  transition: max-height 1s ease-in-out, opacity 0.5s ease-in-out;
}

.collapsed {
  max-width: 20px !important;
  box-sizing: content-box;
  white-space: nowrap; /* Evita que el texto se ajuste automáticamente */
  overflow: hidden; /* Oculta cualquier contenido que exceda el ancho */
  text-overflow: ellipsis; /* Agrega puntos suspensivos si el texto es demasiado largo */
}

.option-newsearch {
  margin: 20px;
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
  line-height: 40px;
  border-radius: 0;
  border: solid 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: 600;
  background-color: rgba(83, 150, 180, 0.4);
}

/* los contents y content son para los <div> */

.contents {
  width: 100%;
}

.content {
  width: 100%;
  height: 100%;
  display: none;
}

.content-active {
  background-color: rgba(255, 255, 255, 0.4);
  display: block;
}

.bold {
  font-weight: 600;
  background-color: rgba(83, 150, 180, 0.4);
}

/* Estilos para la selección de idioma */

.header {
  height: 40px;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.6);
}

/* .header-alt {
  background-color: rgba(2, 154, 214, 0.3);
  box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  height: 60px;
  transition: height 0.5s ease-in-out;
} */

.header-alt {
  background-color: rgba(167, 68, 138);
  box-shadow: 0 5px 13px 0 rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  min-height: 90px;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  transition: font-size 0.5s ease-in-out;
}

.header-alt h1{
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}



.title-logo {
  height: 70px;
  transition: height 0.5s ease-in-out;
}

.contenedor-lenguaje {
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Estilos para las banderas de los idiomas */
.language-option {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 500;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.6);
}

.language-flag {
  width: 20px;
  height: 14px;
  vertical-align: middle;
  /* margin-right: 0px; */
}

.flag-icon {
  width: 20px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

.map-container {
  position: relative;
  left: auto;
  margin: 15px;
  height: 300px;
  width: auto;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Botones */

.standar-button {
  width: 300px;
  padding: 10px;
  margin: 10px;
  background-color: #196685;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.standar-button:hover {
  background-color: #2d98c2;
}

.button-container {
  background-color: rgba(83, 150, 180, 0.4);
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.button-container-small {
  margin: 10px auto;
  background-color: rgba(83, 150, 180, 0.4);
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  width: 70%;
  max-width: 400px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.button-container-small.alt {
  background-color: rgba(254, 95, 138, 0.4);
}

.button-container.alt {
  background-color: rgba(254, 95, 138, 0.4);
}

.button-container-download {
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  height: 20px;
  width: 200px;
  border-radius: 15px;
  background-color: rgba(83, 150, 180, 0.4);
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.button-container-download:hover {
  background-color: rgba(83, 150, 180, 0.4);
  height: 21px;
  width: 202px;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.3);
  padding: 15px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
}

.button-container-small.left {
  margin: 20px;
  width: 10%;
  max-width: 75px;
  border-radius: 8px;
}

.button-container-small.left i {
  margin-right: 8px;
  /*font-size: 1.2em;  ajustá según el tamaño que quieras */
  color: #2c3e50; /* o el color que quieras */
}

.button-container-short {
  margin: 10px auto;
  background-color: rgba(83, 150, 180, 0.4);
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px;
  width: 25%;
  max-width: 200px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.dropdown-button {
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 15px 25px;
  /* margin-bottom: 15px;
  margin-top: 15px; */
  box-shadow: 0px 10px 25px -15px rgba(167,38,168);
}

.dropdown-button-alt {
  display: flex;
  margin: 10px 25vw;
  align-items: center;
  padding: 5px;
  box-shadow: 0px 10px 5px -10px rgba(0, 0, 0, 0.9);
}

/* TextArea */
.textarea-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 90%; /* Ajustable según el diseño */
  max-width: 80vw; /* Ancho máximo */
  min-height: 80px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  resize: vertical;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.textarea-container:focus {
  background-color: rgba(83, 150, 180, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
  outline: none;
}

/* Estilos para el spinner */

.overlay-spinner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* Fondo gris semitransparente */
  z-index: 9998; /* Asegura que esté por encima de todo */
  justify-content: center;
  align-items: center;
}

.spinner {
  display: none;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 8px dotted #ffffffac;
  border-top: 8px dotted #3498dbc2;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  z-index: 9999;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Asegura que el contenedor tenga la altura de la pantalla */
  width: 100vw;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading {
  text-align: center;
}

/* Estilos DropDown  */

.dropdown-content {
  display: none; /* Oculto por defecto */
  position: relative;
  width: 93%;
  top: -10px;
  left: 11px;
  border-radius: 0px 0px 20px 0px;
  background-color: white;
  max-height: 200px; /* Añadir scroll si hay demasiados resultados */
  overflow-y: auto; /* Scroll vertical */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content .option {
  color: black;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-size: 0.75em;
  display: block;
  cursor: pointer;
}

.dropdown-content .option:hover {
  background-color: #f1f1f1;
  max-height:50px;
}

@keyframes glow-rojo {
  0% {
    text-shadow: 0px 0px 4px rgba(255, 0, 0, 0.4);
  }
  50% {
    text-shadow: 0px 0px 6px rgba(255, 0, 0, 0.6);
  }
  100% {
    text-shadow: 0px 0px 4px rgba(255, 0, 0, 0.4);
  }
}

.fa-trash-can {
  color: #e74c3c;
  transition: color 0.4s ease, transform 0.3s ease;
  animation: glow-rojo 2s ease-in-out infinite; /* ✨ NUEVO efecto rojo propio */
}

/* Cuando pasa el mouse, cambia a un rojo más clarito */
.fa-trash-can:hover {
  color: #ff6b6b; /* Rojo más claro al hover */
  transform: scale(1.2);
}

/* Animación latido rojo (opcional) */
@keyframes latido-rojo {
  0% { color: #e74c3c; transform: scale(1); }
  50% { color: #ff6b6b; transform: scale(1.2); }
  100% { color: #e74c3c; transform: scale(1); }
}

.fa-trash-can.latido {
  animation: latido-rojo 2s infinite;
}

/*----------------------------------*/
/* --------- RESOLUCIONES --------- */
/*----------------------------------*/

/* =============================
   12. MEDIA QUERIES
============================= */



@media (max-width: 1150px) {

  .section-wrapper {
    scroll-margin-top: 140px;
  }

   .buttonRegistro.alt.small{
    height: 22px;
    padding: 4px ;
    font-size: 11px;
    font-weight: 500;
  }

}

@media (max-width: 900px) {
  
  nav a {
    font-size: 0.85em;
  }  

  .benef-card h4 {
  font-size: 0.9em;
  transition: all 0.3s ease-in-out;
 }

}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(167,68,138,1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  nav.active {
    display: flex;
    background-color: rgba(167,68,138,1);
    
  }

  nav a {
    font-size: 1em;
  }

  .home-title {
    margin: 0 auto 0 auto;
  }

 .benef-card h4 {
  font-size: 0.8em;
  transition: all 0.3s ease-in-out;
 }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    display: none;
    background-color: rgba(167,68,138,1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    padding: 10px;
    position: absolute;
    top: calc(100% + 225px); /* debajo del nav */
    left: 0;
    z-index: 999;
  }

  .header-buttons.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* .carousel-container {
    margin: 80px auto 25px auto;
  } */

  .slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    height: auto;
  }

  .slide img {
    max-width: 30%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }

  .slide-content {
    text-align: center;
  }

  .slide h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
  }

.slide p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.detalle-wrapper.ajustado {
  padding: 10px;
  max-width: 100%;
}

.buttonRegistro.alt.small{
    height: 22px;
    padding: 5px ;
    font-size: 11px;
    font-weight: 400;
  }

.container {
    width: 100vw;
    border-radius: 0px;
    margin: 0 auto;
    padding: 0px;
    margin-top: 5vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .container-background {
    width: 100vw;
    border-radius: 0px;
    margin: 0 auto;
    padding: 0;
    margin-top: 5vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .container-iframe {
    width: 100vw;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 0px;
  }
  
  .container-table {
    width: 100vw;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    border-radius: 0px;
  }

  .button-container-short {
    max-width: 70%;
  }

  .create {
    width: 100vw;
    margin: 0 auto;
    border-radius: 0px;
  }

  .card {
    width: 90vw;
    max-width: 90vw;
    margin-right: 15px;
  }

  .table-style1 {
    width: 90vw;
  }

  .table-style1 td,
  .table-style1 th {
    padding: 5px;
    font-size: 0.7em;
    transition: 0.5s;
  }

  .table-style2 td,
  .table-style2 th {
    padding: 3px;
    font-size: 0.7em;
    transition: 0.5s;
  }

  .table-style2 input {
    margin: 3px;
  }

  .table-style2 input[type="text"],
  .table-style2 input[type="number"] {
  width: 90%;
  padding: 3px;
  }

  .table-style2 input[type="time"],
  .table-style2 input[type="date"] {
    width: 90%;
    padding: 3px;
  }

  .table-style2 select {
    width: 90%;
    padding: 3px;
  }

  .table-style4 {
    border-radius: 0;
  }

  .table-style4 tbody td {
    padding: 0.7rem;
    font-size: 0.7rem;
    color: #555555;
    border-bottom: 1px solid #eeeeee;
    border-radius: 0;
  }

  .table-style4 thead th {
    font-size: 0.6rem;
  }

  .calendar-style thead th {
    font-size: 0.75rem; /* Reducir más el tamaño del texto */
    padding: 3px;
  }

  .calendar-style tbody td {
    font-size: 0.75rem;
    height: 40px;
    padding: 3px;
  }

  .hide-on-small {
    display: none !important;
  }

  .form-1 {
    width: calc(100vw - 15px);
  }
  .standar-button,
  .standar-button[type="submit"] {
    width: 100vw;
    margin: 10px 0 10px 0;
    border-radius: 0;
  }

  .create-account {
    width: 100vw;
  }

  .dropdown-content {
    width: 91%;
    top: -3px;
    left: 5px;
    }
    
  .dropdown-content .option {
    font-size: 1.25em;
  }

  .input-modern {
    width: 95%;
    padding: 8px 4px;
    font-size: 0.7rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .input-modern::placeholder {
    font-size: 0.9rem;
  }

  .select-modern {
    width: 95%;
    padding: 8px 4px;
    font-size: 0.7rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  
}

@media (max-width: 580px) {
  .slide {
    max-height: 630px;
    gap: 30px;
  }

  .buttonRegistro.alt.small{
    height: 22px;
    padding: 5px ;
    font-size: 12px;
    font-weight: 600;
  }  

  .funcionalidad {
    max-width: 80vw;
    margin: auto;
  }

  .funcionalidad img {
    width: 50%;
  }

  h1 {
    margin: 10px;
    font-size: 1.3em;
  }

  h2 {
    margin: 10px;
    font-size: 1.1em;
  }
  
  h3 {
    margin: 10px;
    font-size: 1em;
  }

  .header-alt {
    height: 40px;
  }

  .header-alt .title {
    font-size: 1rem;
  }

  .title-logo {
    height: 50px;
  }

  .table-style1 td,
  .table-style1 th {
    padding: 2px;
    font-size: 0.6em;
    transition: 0.5s;
  }

  .table-style2 td,
  .table-style2 th {
    padding: 2px;
    font-size: 0.6em;
    transition: 0.5s;
  }

  .table-style2 input[type="text"],
  .table-style2 input[type="number"] {
  width: 90%;
  padding: 2px;
  }

  .table-style2 input[type="time"],
  .table-style2 input[type="date"] {
    width: 90%;
    padding: 2px;
  }

  .table-style2 select {
    width: 90%;
    padding: 2px;
  }

  .calendar-style thead th {
    font-size: 0.7rem;
    letter-spacing: normal;
    font-weight: normal;
    padding: 1px;
  }

  .calendar-style tbody td {
    font-size: 0.7rem;
    font-weight: normal;
    height: 35px;
    padding: 1px;
  }

  .form-1 {
    padding: 0 5px;
  }

  .form-1 label {
    font-size: 0.7em;
  }

  .dropdown-button {
    margin-left: 15px;
    margin-right: 15px;
  }

  /* CheckBox interruptor */

  /* Estilos para el contenedor del interruptor */
  .switch {
    width: 40px;
    height: 22px;
  }

  /* Estilos del fondo del interruptor */
  .switch label {
    font-size: 10px;
  }

  /* Estilos del círculo deslizante */
  .switch label::after {
    width: 16px;
    height: 16px;
  }

  /* Mover el botón y cambiar el texto */
  .switch input:checked + label::after {
    transform: translateX(35px);
  }

}

/* Resolución 1200 */
@media (max-width: 1200px) {
  

}

/* Resolución 900 */
@media (max-width: 900px) {
  .header-alt h1 {
    font-size: 1.5em;
    transition: all 0.3s ease-in-out;
  }

  .header-alt p {
    font-size: 0.75em;
    transition: all 0.3s ease-in-out;
  }
}

/* Resolucion 580 */
@media (max-width: 580px) {
  
}
/* === From PlansMin.css === */


.seccion-planes {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}


.seccion-planes h1 {
  font-size: 2em;
  margin-bottom: 10px;
}


.seccion-planes h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}


.seccion-planes p {
  font-size: 18px;
  color: #555;
  margin: 10px;
}


.seccion-planes .subtitulo {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #666;
}


.seccion-planes .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.seccion-planes .plan-card {
  background: #ffffff;
  border-radius: 0px;
  padding: 25px;
  width: 100%;
  flex: 0 0 auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}


.seccion-planes .plan-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}


.seccion-planes .plan-description {
  font-size: 1em;
  margin-bottom: 15px;
  color: #555;
}


.seccion-planes .plan-price span {
  display: inline-block;
  font-size: 1.4em;
  font-weight: bold;
  color: #222;
}


.seccion-planes .plan-toggle {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}


.seccion-planes .plan-toggle label {
  flex: 1;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.95em;
  border: 1px solid #ccc;
  margin: 0 5px;
  background: #f0f0f0;
  transition: background 0.3s ease;
  text-align: center;
}


.seccion-planes .plan-toggle input[type="radio"] {
  display: none;
}


.seccion-planes .plan-toggle input:checked + label {
  background: #6f2da8;
  color: white;
  border-color: #6f2da8;
}


.seccion-planes .plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}


.seccion-planes .plan-features li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #333;
}


.seccion-planes .cta-button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: var(--color-boton, #facc15);
  color: #1f2937;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  cursor: pointer;
  margin-top: 1.5rem; /* ✅ margen para separarlo de las leyendas */
}


.seccion-planes .cta-button:hover {
  background-color: #1f2937;
  color: var(--color-boton, #facc15);
}


.plan-actual {
  border: 3px solid #34d399 !important; /* verde esmeralda */
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.5) !important;
  position: relative;
}


:root {
   --color-etapa1: linear-gradient(to right, #c1cafd, #909bfd);
   --color-etapa2: linear-gradient(to right, #c689fc, #e7a4ff);
   --color-etapa3: linear-gradient(to right, #ffa880, #ff9f72);
   --color-etapa4: linear-gradient(to right, #FFD700, #f5ca0b);
   --color-etapa4: linear-gradient(to right, #facc15, #f59e0b); /* dorado brillante */
   --color-popular: #ff4081;
   --color-boton: #facc15;
 }

@media (min-width: 768px) {

  .seccion-planes .container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }


  .seccion-planes .plan-card {
    flex: 1 1 300px !important;
    max-width: 340px !important;
    min-height: 500px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    border-radius: 10px;
  }
}


/* --- Ajustes para tilde en opciones Mensual / Anual --- */
.seccion-planes .plan-toggle label {
  display: inline-flex;            /* texto + ✔ en la misma línea */
  align-items: center;
  justify-content: center;
  gap: 6px;                        /* espacio entre texto y ✔ */
  white-space: nowrap;             /* evita que corte a 2 líneas */
  line-height: 1.1;
  color: rgba(0,0,0,0.75);         /* gris inactivo */
}


.seccion-planes .plan-toggle label strong {
  font-weight: 800;
  font-size: 0.9em;                /* más chico para que entre */
  white-space: nowrap;
}


.seccion-planes .plan-toggle .check-span {
  opacity: 0;                      /* oculto por defecto */
  color: #fff;                     /* ✔ blanco cuando activo */
  font-weight: 800;
  font-size: 1rem;
  margin-left: 2px;
  transform: scale(0.96);
  transition: opacity .15s ease, transform .15s ease;
}


.seccion-planes .plan-toggle input[type="radio"]:checked + label {
  color: #fff;                     /* texto blanco en activo */
}


.seccion-planes .plan-toggle input[type="radio"]:checked + label .check-span {
  opacity: 1;                      /* ✔ visible */
  transform: scale(1);
}


/* ✔ dorado en plan-price (bonificados) */
.plan-price .check-span {
  color: #facc15;
}
/* === From testimonios.css === */


    :root {
      --bg: #0b1020;
      --card-bg: #131a33;
      --text: #000000;
      --muted: #000000;;
      --gap: 1.25rem;        /* espacio entre tarjetas */
      --duration: 30s;        /* velocidad del scroll (menor = más rápido) */
      --card-w: 340px;        /* ancho base de tarjeta */
      --card-h: 200px;        /* alto base de tarjeta */
      --radius: 16px;
      --accent: rgb(0, 114, 159);
    }

    .wrap {
      margin: auto;
      width: min(1500px, 100%);
      display: grid;
      gap: 16px;
    }


    .reel {
      position: relative;
      overflow: hidden; /* recorta el carrusel */
      mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, black 5%, black 95%, transparent 100%);
    }


    .track {
      display: flex;
      gap: var(--gap);
      width: max-content; /* ancho según contenido */
      will-change: transform;
      animation: scroll var(--duration) linear infinite;
      margin: 10px;
    }


    /* Pausa accesible */
    .reel:hover .track,
    .reel:focus-within .track {
      animation-play-state: paused;
    }


/* Keyframes */
@keyframes scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); } /* se basa en tener duplicado el contenido */
    }

    .testimonio-card {
      flex: 0 0 var(--card-w);
      width: var(--card-w);
      min-height: var(--card-h);
      background: linear-gradient(180deg, rgba(2,153,214, 0.4), rgba(167,68,138,0.4));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 18px 18px 16px;
      box-shadow: 3px 5px 5px rgba(0,0,0,0.25);
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 10px;
    }

    .stars { 
        font-size: 18px; 
        letter-spacing: 1.5px; 
        color: darkgoldenrod;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    .quote {
      font-size: 1.1rem;
      line-height: 1.45;
      color: var(--text);
      font-weight: 600;
    }

    .user {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: #2a355f; display: grid; place-items: center; font-weight: 700; color: #cfe8ff;
    }

    .tag {
      margin-left: auto;
      font-size: 0.85rem;
      color: var(--accent);
      font-weight: 400;
    }

    /* Responsivo */
    @media (max-width: 900px) {
      :root { --card-w: 300px; --duration: 32s; }
    }
    @media (max-width: 640px) {
      :root { --card-w: 260px; --duration: 28s; }
    }

    /* Respeto a reduce motion */
    @media (prefers-reduced-motion: reduce) {
      .track { animation: none; }
    }


/* === Inline styles from Landing_registro.html === */


      /*planes*/
      .pricing-table.full {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 10px;
        max-width: 100%;
        margin: 40px auto;
        font-family: 'Segoe UI', sans-serif;
      }

      .pricing-table.mobile{
        display: none;
      }

      .pricing-table.full .plan ul li{
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .plan {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

      .plan h3 {
        text-align: center;
        padding: 15px;
        margin: 0;
        font-size: 18px;
        font-weight: bold;
        color: #333;
      }

      .plan ul {
        list-style: none;
        margin: 0;
        padding: 0 15px;
        flex: 1;
      }

      .plan ul li {
        padding: 10px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        text-align: center;
      }

      .plan .price {
        text-align: center;
        padding: 15px;
        font-weight: bold;
        font-size: 16px;
        color: #fff;
      }

      /* Aplica a cada celda que tenga clase .check */
      .check::before {
        content: " ✔ ";
        color: #2ecc71;
        font-weight: bold;
        font-size: 16px;
      }

      /* Aplica a las no disponibles */
      .cross::before {
        content: " X ";
        font-weight: bold;
        color: #b90000;
        font-size: 16px;
      }

      /* Estilos por versión */
      .features {
        background: #f8f9fa;
      }
      .features h3 { background: #e0e0e0; }

      .free h3 { background: linear-gradient(135deg,#84d3ff,#b6eaff); color:#003366; }
      .free .price { background: #00aaff; }

      .standard h3 { background: linear-gradient(135deg,#d9a7ff,#fbc2eb); color:#3a0066; }
      .standard .price { background: #a844a1; }

      .premium h3 { background: linear-gradient(135deg,#ff9a9e,#fad0c4); color:#660000; }
      .premium .price { background: #d6336c; }

      /* Responsivo */
      @media (max-width: 1000px){
        .pricing-table.full { 
          display: grid;
        }
      }

      @media(max-width: 768px){
        .pricing-table.full {
          display: none;
        }

        .pricing-table.mobile {
          display: block;
        }

        .plan {
          margin: 10px;
        }
      }

      .plan-enterprise {
        max-width: 1000px;
        margin: 10px auto;
        padding: 0 20px;
      }

      .enterprise-box {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        padding: 40px 20px 20px 20px;
        position: relative;
        text-align: center;
        font-family: 'Segoe UI', sans-serif;
      }

      .enterprise-title {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #FFD43B; /* amarillo */
        padding: 10px 30px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 18px;
        color: #333;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }

      .enterprise-box p {
        font-size: 15px;
        line-height: 1.6;
        color: #444;
        margin: 0;
      }



      /* Beneficios */
    .beneficios {
      background:#fff
    }

    .beneficios .wrap {
      width:100%;
      margin:0 auto;
      padding:0;
    }

    .section-title {
      text-align:center;
      margin:0 0 24px;
      color:#27304a
    }

    .beneficios-grid {
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:18px
    }

    .benef-card {
      text-align: center;
      background:#f8f9ff;
      border-radius:16px;
      padding:22px;
      box-shadow: 0 8px 22px rgba(18,26,56,.06);
    }

    .benef-card i {
      font-size:22px;
      margin-right:8px;
      color:#27304a
    }

    .benef-card h4 {
      margin:0 0 8px;
      color:#27304a
    }

    .benef-card p {
      margin:0;
      color:#4a5771
    }


      @media (max-width: 1199px) {
        .contenedor-doble {
          padding: 0 !important;
        }

        .table-style1 td,
  .table-style1 th {
    padding: 5px;
    font-size: 0.8em;
    transition: 0.5s;
  }

  .table-style2 td,
  .table-style2 th {
    padding: 3px;
    font-size: 0.8em;
    transition: 0.5s;
  }

  /* table-style4 */

  .table-style4 tbody td {
    padding: 0.7rem;
    font-size: 0.7rem;
 }

  .table-style4 thead th {
    font-size: 0.7rem;
    white-space: nowrap; /* Evitar salto de línea en los encabezados */
  }

  .container-table {
    width: 90vw;
    margin: 0 auto;
    border-radius: 0px;
  }

  .dropdown-content {
    width: 93%;
    top: -5px;
    left: 7px;
  }
  
  .dropdown-content .option {
    font-size: 1em;
  }
      }

      @media (max-width: 768px) {
      .contenedor-doble {
        width: 100% !important;
      }

      .header-buttons {
        top: calc(100% + 150px);
      }

      .beneficios-grid {
        gap:0;
      }

      .benef-card {
        padding:10px;
      }

      .beneficios .wrap {
        padding:0;
      }
    }
    
    