@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Amertha';
  src: url('/skins/page/images/Corte/FUENTES/Amertha.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.body-index::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("/skins/page/images/Corte/IMAGENES/2.jpg") no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: .6; /* opcional para aclarar */
}

.img-logo {
  width: 20vw;
}

.cuadro {
  background: var(--moradoClaro);
  border-radius: 5vw;
  width: 42vw;
  height: 55vh;
  margin: auto;
  padding: 5vh 10vh;
}

.cuadro .title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 2vw;
  text-align: center;
  line-height: 4vh;
  margin-bottom: 6vh;
}

.cuadro .login-input {
  border-radius: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 6vh;
  font-size: 1vw;   /* 👈 tamaño del texto que escribe el usuario */
  font-weight: normal;
  margin-bottom: 3vh;
}

.cuadro .login-input::placeholder {
  color: var(--moradoClaro);
  font-size: 2vw;   /* 👈 tamaño solo del placeholder */
  font-weight: bold;
  text-align: center;
  line-height: 6vh; /* 👈 lo centra verticalmente */
}

.cuadro-validar {
    background: var(--moradoClaro);
    border-radius: 50px;
    width: 100%;
    margin: auto;
    padding: 10px 20px 0px 20px;
}

.cuadro-validar-text {
    color: white;
}

.title-validar {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 2vw;
  text-align: center;
  line-height: 3vh;
  margin-bottom: 3vh;
}

.description-validar {
  color: white;
  font-weight: 200;
  font-size: 1vw;
  text-align: center;
  line-height: 2vh;
  margin-bottom: 4vh;
}

/*----input-fields------*/

.form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form .input-fields {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.form .input-fields input {
	height: 10vh;
	width: 4vw;
	outline: none;
	text-align: center;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-size: 2vw;
	color: var(--ch-black);
	border-radius: 1vw;
	border: 2.5px solid var(--ch-white);
  margin-bottom: 4vh;
}

.form .input-fields input:focus {
	border: 1px solid var(--night-rider);
	box-shadow: inset 10px 10px 10px rgba(0, 0, 0, .15);
	transform: scale(1.05);
	transition: 0.5s;
}

.contenido-interno {
  margin-top: 7vh;
  width: 53vw;
  min-height: 54vh;
  max-height: 54vh;
  display: flex;
  flex-direction: column;   /* organiza contenido en columna */
  position: relative;
}

.contenido-interno-home {
  width: 77vw;
  max-height: 65vh !important;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 4vh !important;
}

.custom-panel-home {
  background-color: #dcecf7; /* Color de fondo establecido */
  position: absolute;
  right: 0px;
  width: 38%;
  border-top-left-radius: 25%;
  border-bottom-left-radius: 25%;
  height: 100%;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.3);
  /* Asegurar que la imagen no tenga opacidad inesperada */
  background-blend-mode: normal; /* Evita mezclas que alteren los colores */
}


/* Curva */
.flechay::after {
  content: '';
  position: absolute;
  width: 15vw;
  height: 5vh;
  border-bottom: .35vw solid var(--moradoClaro);
  border-left: .35vw solid var(--moradoClaro);
  border-radius: 0px 0px 0 5vh;
  bottom: 12.5vh;
  top: 87vh;
  margin-left: .3vw;
}

/* Línea vertical */
.flechay-vertical {
  position: absolute;
  width: .3vw;
  height: 25vh;
  background-color: var(--moradoClaro);
  border-radius: 50px;
  top: 63vh;
  margin-left: .3vw;
}

/* Punta de flechax */
.flechay-punta {
  position: absolute;
  top: 61vh;
  width: 1vw;
  height: 1vw;
  border-right: .35vw solid var(--moradoClaro);
  border-bottom: .35vw solid var(--moradoClaro);
  transform: rotate(225deg);
  display: none !important;
}

.container-right {
  position: relative;
  right: 12vw;
}

/* Curva */
.flechax::after {
  content: '';
  position: absolute;
  top: 5vh;
  width: 13vw;
  height: 5vh;
  border-top: .35vw solid var(--moradoClaro);
  border-right: .35vw solid var(--moradoClaro);
  border-radius: 0 5vh 0 0;
  right: 0;
}

/* Línea vertical */
.flechax-vertical {
  position: absolute;
  top: 10vh;
  width: .3vw;
  height: 25vh;
  background-color: var(--moradoClaro);
  right: 0;
}

/* Punta de flechax */
.flechax-punta {
  position: absolute;
  top: 34vh;
  width: 1vw;
  height: 1vw;
  border-right: .35vw solid var(--moradoClaro);
  border-bottom: .35vw solid var(--moradoClaro);
  transform: rotate(45deg);
  right: -.35vw;
  display: none !important;
}

.social-icons-interno {
  position: absolute;
  top: 8vh;
  right: 2vw;
}

.social-icons-interno i {
	font-size: 2vw;
}

.gap-custom-1 {
  gap: .3vw;
}

.icon-home {
  max-width: 3vw;
  max-height: 6vh;
  background: var(--degrade);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s ease;
  display: grid;
  text-align: center;
  margin-right: 1vw;
}

.icon-home:hover {
  cursor: pointer;
}

.icon-home span {
  font-size: 1vw;
  display: block;
  background: var(--morado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.icon-circle {
  width: 3vw;
  height: 6vh;
  background: var(--azul);
  color: white;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  text-decoration: none;
}

.icon-circle:hover {
  background: var(--degrade);
  cursor: pointer;
}

.content-list .btn-content {
	display: flex;
	justify-content: end;
  margin-bottom: 1vh;
}

.content-list .btn-content i {
	font-size: 2vw;
  margin-right: .4vw;
}

.content-list .text-content {
  font-size: 15px;
  font-weight: 500;
  color: var(--gris);
  display: inline-block;
  line-height: 15px;
}

.content-list .btn {
  width: 17vw;
  padding: 0 .5vw 0 .5vw;
}

.content-list .btn-home {
  height: 6.5vh;
}

.content-list .btn-interno {
  height: 3.5vh;
  width: 100% !important;
}

.content-list {
	position: absolute;
  right: 2vw;
  top: 35vh;
}

.content-list-btn {
  max-height: 30vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.content-list-interno {
  top: 22vh !important;
  width: 18vw;
}

.btn-custom {
  background-color: var(--morado);
  color: white;
  font-weight: bold;
  border-radius: .7vw;
  font-size: 1.5vw;
  text-align: start;
  display: flex;
  align-items: center;
}

#btn-ingresar {
  text-align: center !important;
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

#vaciar-inputs {
  text-align: center !important;
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 1.5vw;
}

.btn-custom:hover {
  background-color: white;
  color: var(--morado);
}

.btn-custom-seccion {
  background-color: white;
  color: var(--morado);
  border: 1px solid var(--morado);
  font-weight: bold;
  border-radius: 1vw;
  padding: 5px 10px;
  font-size: 1vw;
  font-weight: 400;
}

.btn-custom-seccion {
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis;
}

.btn-custom-seccion:hover {
  background: var(--degrade) !important;
  color: white;
}

.footer-copy {
  position: absolute;
  bottom: 2.5vh;
  font-size: 1vw;
  color: var(--azulOscuro);
  font-weight: bold;
}

.footer-info {
  position: absolute;
  bottom: 2.5vh;
  font-size: 1vw;
  color: var(--azulOscuro);
  font-weight: bold;
  right: 14vw;
}

.footer-info a {
  text-decoration: none;
  color: var(--azulOscuro) !important;
}


/* Menú flotante en la misma posición */
.overlay-menu {
  position: absolute;
  top: 8vh;
  right: 14vw;
  width: 17vw;
  background-color: var(--morado);
  color: white;
  padding: .5vw 1vw 0px 0px;
  border-radius: 1vw;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  display: none;
  height: 63vh;
}

/* Clase para mostrar el menú con animación */
.overlay-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  display: block;
}

.one-content {
	position: absolute;
	left: 97.5px;
}

.cuerpo {
    width: 86vw;
    position: relative;
    height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cuerpo * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

#panel-botones {
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 100;
  margin-left: 1.5vw;
}

.custom-panel-oficina {
  position: absolute;
  right: 0px;
}

.name_login {
  color: var(--azul);
  font-size: 1vw;
  font-weight: 700;
  margin-bottom: 1.5vh;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.colorM {
	background: var(--morado);
	color: white;
}

.accordion-header {
  background: var(--morado);
  color: white;
  font-weight: bold;
  border: none;
  padding: 1vh;
  font-size: 1vw;
  border-radius: .5vw;
  margin-bottom: .8vh;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.accordion-header a:hover {
  background: white;
  color: var(--morado);
  border: 1px solid var(--morado);
}

.accordion-header:hover {
  background: white;
  color: var(--morado);
  border: 1px solid var(--morado);
}

.accordion-header.active {
  background-color: var(--morado);
  background-image: var(--degrade);
  color: #ffffff;
}


.accordion-header i {
  margin-right: 8px;
}

.welcome-bg img {
  width: 100%;
}

.accordion-content {
  display: none;
  margin-bottom: 5px;
  animation: fadeIn 0.3s ease-in-out;
  list-style: none;
  padding-left: 0px;
}

.accordion-content li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/* Botón del enlace */
.accordion-content li {
    display: flex;
}

.accordion-content li a {
    background: var(--azul);
    color: white;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5vh 1.5vh;
    border-radius: 1.2vw;
    font-size: 1vw;
    text-decoration: none;
    width: 100%;
    min-width: 0;
	margin-top: .3vh;
}

/* ÍCONO */
.accordion-content li a i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXTO */
.accordion-content li a span {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
}


/* Hover */
.accordion-content li a:hover {
    background: white;
    color: var(--azul);
    border: 1px solid var(--azul);
}

/* Ícono */
.accordion-content li a i {
    margin-right: 6px;
}

.accordion-content li .arrow-right {
  color: var(--azul);
  font-weight: bold;
  font-size: 1vw;
  margin-left: .5vw;
  line-height: 1;
}

/* El <li> se comporta como contenedor */
.nav-item {
  position: relative;
}

/* El botón ocupa el espacio disponible pero deja espacio para la flecha */
.nav-item > a.accordion-header.active {
  padding-right: 30px !important; /* deja espacio a la derecha para la flecha */
  display: inline-block;
  width: calc(100% - 25px); /* botón más pequeño para que no empuje la flecha */
  vertical-align: middle;
}

/* Flecha FUERA del botón, al costado derecho, centrada verticalmente */
.arrow-right.direct-item {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #8e44ad;
  font-weight: bold;
  font-size: 16px;
  pointer-events: none;
  line-height: 1;
}


.nav-button {
    display: block;
    width: 100%;
    background: #7e1696;
    color: white;
    font-weight: bold;
    padding: 12px;
    font-size: 1rem;
    border-radius: 10px;
    margin-bottom: 7px;
    text-align: left;
    text-decoration: none;
}

.nav-button i {
    margin-right: 8px;
}

.icon-chevron {
    margin-left: auto;
}

.titulo-principal {
    font-size: 2vw;
    font-family: 'Amertha', cursive;
    color: var(--azulOscuro);
    text-align: end;
}

.subtitle {
    color: var(--morado);
    font-weight: 500;
    font-size: 1vw;
}

.modal-dialog {
    max-width: 80% !important;
    margin: 1.75rem auto;
}

.text-colorA {
    color: var(--azulOscuro);
}

.cont-table-ahorros {
	max-height: 30vh;
	overflow-y: auto;
}

/* Formularios */
.form-custom .form-label {
    color: var(--azulOscuro);
    margin-bottom: 0px !important;
}

.form-custom .form-control, .form-select {
    border-radius: 20px;
    border: 1px solid var(--morado) !important;
}

.circle-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 2px solid var(--morado);
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: var(--morado);
  font-size: 10px;
}

input[type="radio"]:checked + .circle-option {
  background-color: var(--moradoClaro);
  color: #fff;
  border-color: var(--morado);
}

.campo-firma {
    width: 30%;
}

.btn-guardar-form {
    background: var(--azul);
    color: white;
    border-radius: 20px;
}

.btn-guardar-form:hover {
    background: white;
    color: var(--azul);
    border: 1px solid var(--azul);
}

.btn-guardar {
    width: 30%;
    background: var(--morado);
    color: white;
}

.btn-guardar:hover {
    background: white;
    color: var(--morado);
    border: 1px solid var(--morado);
}

.btn-cancelar {
    width: 30%;
    background: #ffffff;
    color: var(--morado);
    border: 1px solid var(--morado);
}

.btn-cancelar:hover {
    background: var(--morado);
    color: #ffffff;
    border: 1px solid var(--morado);
}

#form-verificar .btn-guardar,
#form-verificar .btn-cancelar {
    width: 100%;
    min-height: 48px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1.2;
}

.btn-examinar {
    background: var(--morado);
    color: white;
    border-radius: 0px !important;
}

.btn-examinar:hover {
    background: white;
    border: 1px solid var(--morado);
    color: var(--morado);
    border-radius: 0px !important;
}



/* Fuentes */

#signatureShow h1#default{
	font-size: 18px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#signatureShow h1#font-2r{
	font-size: 28px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#signatureShow h1#font-3r{
	font-size: 28px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#signatureShow h1#font-4r{
	font-size: 28px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#signatureShow h1#font-5r{
	font-size: 22px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#signatureShow h1#font-6r{
	font-size: 44px !important;
	font-weight: normal !important;
	text-decoration: underline;
}
#font-2{
	font: 402 40px 'Arizonia', Helvetica, sans-serif !important;
	color: #2b2b2b ;
}
#font-2r{
	font: 402 60px 'Arizonia', Helvetica, sans-serif !important;
	color: #2b2b2b;
}
#font-3{
	font: 400 40px'Great Vibes', Helvetica, sans-serif;
	color: #2b2b2b;

}
#font-3r{
	font: 400 60px 'Great Vibes', Helvetica, sans-serif;
	color: #2b2b2b;

}
#font-4{
	font:  40px 'Euphoria Script', cursive;
	color: #2b2b2b;

}
#font-4r{
	font:  60px 'Euphoria Script', cursive;
	color: #2b2b2b;

}
#font-5{
	font:  30px 'Homemade Apple', cursive;
	color: #2b2b2b;

}
#font-5r{
	font:  40px 'Homemade Apple', cursive;
	color: #2b2b2b;

}
#font-6{
	font:  60px 'Miss Fajardose', cursive;
	color: #2b2b2b;

}
#font-6r{
	font:  80px 'Miss Fajardose', cursive;
	color: #2b2b2b;

}
#default{
	font-family: "Myriad pro", sans-serif;

}

.icon-container {
	position: absolute;
	top: 0;
	transform: translate(0%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	background-color: var(--morado);
	border-radius: 50%;
	box-shadow: 5px 5px 5px 10px rgba(255, 255, 255, 0.1);
	z-index: 1;
}

.icon-container i {
	font-size: 30px;
	color: white !important;
}

.card-succes p {
	font-size: 15px;
}

.card-succes {
	width: 100%;
	max-width: 400px;
	border: 1px solid var(--morado);
	padding-top: 20px; /* Espacio para el ícono */
	position: relative;
}

.card-succes .card-body {
	min-height: auto !important;
}

.btn-success-card {
	background-color: var(--morado);
	border-color: var(--morado);
    color: white;
    width: 50%;
    margin: auto;
}

.btn-success-card:hover {
    color: var(--morado);
	background-color: white;
	border-color: var(--morado);
    width: 50%;
    margin: auto;
}

/* Eventos */

/* Línea de tiempo vertical */
.timeline-meses {
  border-left: none;
  border-right: 4px solid var(--morado);
  padding-left: 0;
  padding-right: 10px;
  text-align: right;
}

.mes-timeline {
  position: relative;
  margin: 1rem 0;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
}

.mes-timeline::before {
  content: '';
  position: absolute;
  left: auto;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--morado);
  border-radius: 50%;
}

/* Colores */
.mes-timeline.con-evento {
  background: var(--morado);
  color: white;
}

.mes-timeline.sin-evento {
  background: white;
  color: var(--morado);
  border: 1px solid var(--morado);
}

.mes-activo {
    background: var(--degrade) !important;
}

/**/
.ticket-evento {
	background: white;
	border-left: 2px dashed  var(--morado);
    border-right: 2px dashed  var(--morado);
	display: flex;
	flex-direction: row;
	height: 100%;
}

.evento-img-wrapper {
	width: 200px;
	min-height: 100%;
	overflow: hidden;
	border-right: 1px solid #eee;
}

.img-evento-ticket {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contenido-ticket {
	flex-grow: 1;
	background: white;
}

.fecha-ticket {
	width: 80px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #eee;
}

.fecha-ticket .dia {
	font-size: 28px;
	font-weight: bold;
	color: var(--morado);
	line-height: 1;
}

.fecha-ticket .mes {
	text-transform: uppercase;
	font-size: 14px;
	color: #888;
	line-height: 1;
}

.text-morado {
	color: var(--morado);
}

.suponer-img-eventos {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: var(--morado);
    border-radius: 8px;
    padding: 15px 30px;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: white;
    opacity: 0.8;
}

.enlace-salir {
  text-decoration: none;
  color: white;
}

/* Menú flotante en la misma posición */
.overlay-menu {
  position: absolute;
  top: 8vh;
  right: 14vw;
  width: 17vw;
  background-color: var(--morado);
  color: white;
  padding: .5vw 1vw 0px 0px;
  border-radius: 1vw;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  display: none;
  height: 63vh;
}

/* Clase para mostrar el menú con animación */
.overlay-menu.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  display: block;
}

/* Encabezado del menú */
.menu-header {
  display: flex;
  justify-content: end;
  align-items: center;
  font-weight: bold;
  font-size: 2vw;
  margin-bottom: 2vh;
}

.menu-header i {
  border: .1vw solid white;
  border-radius: 1.5vw;
  width: 2vw;
  height: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cerrar */
#close-menu {
  cursor: pointer;
  font-size: 1vw;
  margin-left: 1vw;
}

/* Items del menú */
.menu-items {
  list-style: none;
  padding: 0;
	text-align: end;
}

.menu-items li {
  margin: 1vh 0;
}

.menu-items a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.5vw;
  display: flex;
  justify-content: end;
}

.menu-items a:hover {
	color: var(--azul);
}

.menu-items a.active {
  color: var(--azul);
}

@media (max-width: 575.98px) {

  .welcome-bg {
    display: none !important;
  }

  .flecha-y {
    display: none;
  }
  
  .linea-abajo-movil {
    display: block !important;
  } 

  /* Curva */
  .flechay::after {
    content: '';
    position: absolute;
    width: 35vw;
    height: 22vh;
    border-bottom: 1vw solid var(--moradoClaro); /* mismo grosor */
    border-left: 1vw solid var(--moradoClaro);
    border-radius: 0 0 0 5vh; /* curva */
    top: 64vh;
    z-index: -100000;
  }

  .flechay-punta {
    top: 68vh;
    width: 3vw;
    height: 3vw;
    border-right: 1vw solid var(--moradoClaro);
    border-bottom: 1vw solid var(--moradoClaro);
    margin-right: 1vw;
    left: 3vw;
    z-index: 1;
  }

  .panel-icons {
    width: 100vw;
    margin-top: 2vh;
  }
  
  .panel-icons {
    width: 100vw;
    margin: 2vh 4vw;
    gap: 2vh 1vh;              /* espacio vertical entre filas */
    flex-wrap: wrap;       /* 🔹 permite saltar línea */
    justify-content: center;
    padding: 3vw;
    border-radius: 3vw;
    z-index: 1;
  }

  .panel-icons a {
    flex: 1 1 30%;         /* 🔹 cada ítem ocupa ~30% → caben 3 por fila */
    display: flex;
    justify-content: center;
  }

  .panel-icons .item {
    width: 100%;
    text-align: center;
  }

  .panel-icons .icon {
    font-size: 6vw;        /* iconos grandes */
  }

  .panel-icons .text {
    font-size: 4vw;        /* texto grande */
  }

  .img-logo {
    width: 50vw;
    position: relative;
    z-index: 1;
  }
  
  .custom-panel-home {
    display: none;
  }

  .linea-arriba-movil {
    display: block !important;
  } 

  .flechax::after {
    top: 2vh;
    right: 5vw;
    width: 35vw;
    height: 19vh;
    border-top: 1vw solid var(--moradoClaro);
    border-right: 1vw solid var(--moradoClaro);
    border-top-right-radius: 8vw; /* curva redondeada */
  }
  
  .flechax-punta {
    right: 4vw;
    top: 20.5vh;
    border-right: 1vw solid var(--moradoClaro);
    border-bottom: 1vw solid var(--moradoClaro);
    width: 3vw;
    height: 3vw;
	display: none !important;
  }

  .list-circle .rounded-circle {
    height: 1.5vh;
    width: 2vw;
    margin-bottom: .5vh;
  }

  .footer-copy {
    display: none;
  }

  .footer-copy-movil {
    display: flex !important;
    position: absolute;
    bottom: 0vh;
    gap: 10vw;
    left: 0;
    height: 14vh;
    z-index: -1;
    padding: 0vw 5vw;
  }

  .footer-text-movil {
    font-size: 3vw;
    margin-top: 8vh;
    color: var(--azulOscuro);
    font-weight: 700;
  }
  
  .social-icons-interno-footer .icon-circle {
    width: 9vw;
    height: 4.5vh;
  }

  .social-icons-interno-footer {
    position: initial;
    margin-top: 8vh;
  }

  .social-icons-interno-footer i {
    font-size: 6vw;
  }

  .custom-panel-interno-movil {
    display: block !important;
    position: absolute;
    right: 0px;
    top: 10px;
  }

  .container-right {
    right: 6vw;
  }

  .social-icons-interno {
    top: 2vh;
  }

  .social-icons-interno .icon-circle{
    width: 10vw;
    height: 5vh;
  }

  .social-icons-interno i {
    font-size: 6vw;
  }

  .icon-home {
    max-width: 10vw;
    margin-right: 3vw;
  }

  .icon-home span {
    font-size: 4vw;
  }

  .overlay-menu {
    top: 3.5vh;
    right: 8vw;
    width: 60vw;
    height: 55vh;
    padding: 1vw 3vw 0 0;
    border-radius: 6vw;
  }

  .menu-header {
    font-size: 8vw;
  }

  .menu-header span {
    margin-right:1vw;
  }

  .menu-header i {
    border: 0.1vw solid white;
    border-radius: 6vw;
    width: 9vw;
    font-size: 5vw;
  }

  .menu-items a {
    font-size: 5vw;
  }

  .contenido-interno {
    margin-top: 5vh;
    width: 85vw;
    min-height: 50vh;
    max-height: 50vh;
    margin-left: 2vw;
  }

  .cuadro {
    width: 75vw;
    height: 40vh;
    padding: 5vh 3vh;
  }

  .cuadro .title {
    font-size: 8vw;
    margin-bottom: 3vh;
  }

  .cuadro .login-input {
    border-radius: 8vw;
    font-size: 4vw;
  }

  .cuadro .login-input::placeholder {
    color: var(--moradoClaro);
    font-size: 6vw;   /* 👈 tamaño solo del placeholder */
    font-weight: bold;
    text-align: center;
    line-height: 4vh; /* 👈 lo centra verticalmente */
  }

  .btn-custom {
    border-radius: 3vw;
    font-size: 5.5vw;
  }

  #btn-ingresar {
    height: 5vh;
  }

  .title-validar {
    font-size: 6vw;
    margin-bottom: 2vh;
  }

  .description-validar {
    font-size: 4vw;
    margin-bottom: 2vh;
  }

  .cuadro-validar-custom {
    height: 60vh !important;
  }

  .form .input-fields {
    gap: 2px;
  }
  
  .form .input-fields input {
    width: 9vw;
    height: 8vh;
    font-size: 10vw;
  }

  #vaciar-inputs {
    font-size: 6vw;
  }

  .custom-panel-oficina {
    display: none;
  }

  .custom-panel-oficina-movil {
    display: block !important;
    position: absolute;
    right: 0px;
    top: 1vh;
  }

  #open-menu {
    display: flex !important;
  }

  .nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-list.show {
    max-height: 100%;
  }

  .name_login {
    font-size: 4vw;
  }

  .accordion-header {
    font-size: 5vw;
    border-radius: 4.5vw;
    margin-bottom: 0.4vh;
  }

  .contenido-interno-home {
    max-height: 68vh !important;
    border-bottom-right-radius: 5vw;
    border-bottom-left-radius: 5vw;
  }

  .accordion-content li a {
    font-size: 4vw;
    margin-top: .3vh;
    border-radius: 5vw;
  }

  .titulo-principal {
    font-size: 6vw;
  }

  .subtitle {
    font-size: 4vw;
  }

  .accordion-content li .arrow-right {
    font-size: 5vw;
  }
	
.firma-wrapper {
      flex-direction: column;
      align-items: stretch !important;
  }
  .firma-wrapper label {
      margin-bottom: 0.3rem;
  }
  .firma-wrapper .form-control {
      width: 100%;
  }
  .firma-wrapper .btn {
      width: 100%;
      margin-top: 0.5rem;
      margin-left: 0px !important;
  }
  .btn-guardar,
  .btn-cancelar {
    width: 100% !important;
  }
  .title-movil-code {
    font-size: 12px;
  }

  .description-movil-code {
    font-size: 12px;
  }

}

.campos-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 80vh; /* Alto visible (ajustable) */
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Pantallas pequeñas */
@media (max-width: 768px) {
  #campos > .col-7,
  #campos > .col-5 {
      width: 100% !important;
  }

  #campos span.color-verde {
      display: block;
  }

  #campos .file-document {
      width: 100%;
  }
  .iframe-container {
    height: 100vh;
  }
}

/* ════════════════════════════════════════════
   BOLETERÍA — FESFA (formulario + confirmación)
   ════════════════════════════════════════════ */

:root {
  --bol-pink: #c9006e;
  --bol-pink-dark: #a8005c;
  --bol-navy: #1e2a44;
  --bol-text: #2c2c2c;
  --bol-muted: #616160;
  --bol-border: #e8e8e8;
  --bol-note-bg: #e8f4fc;
  --bol-note-text: #1565c0;
  --bol-card-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.grisTitle {
  color: var(--bol-navy);
}

/* ── Formulario /oficina/boleteria ── */
#contenido_general > .titulo-principal:first-child {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bol-navy);
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0;
}

#contenido_general > .form-custom {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--bol-card-shadow);
  border: 1px solid var(--bol-border);
  padding: 1.75rem 1.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

#contenido_general .form-custom .form-label,
#contenido_general .form-custom .label-boleteria {
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--bol-navy);
  text-transform: none;
  letter-spacing: 0;
}

#contenido_general .form-custom .form-control,
#contenido_general .form-custom .form-select {
  border-radius: 8px !important;
  border: 1px solid #d5d5d5 !important;
  background: #fff;
  font-size: .9rem;
  color: var(--bol-text);
  min-height: 42px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

#contenido_general .form-custom .form-control:focus,
#contenido_general .form-custom .form-select:focus {
  border-color: var(--bol-pink) !important;
  box-shadow: 0 0 0 3px rgba(201, 0, 110, .12);
}

#contenido_general .form-custom .form-control:disabled {
  background: #f5f5f5;
  color: var(--bol-muted);
}

#contenido_general .form-custom .form-check-input {
  border-color: var(--bol-pink);
}

#contenido_general .form-custom .form-check-input:checked {
  background-color: var(--bol-pink) !important;
  border-color: var(--bol-pink) !important;
}

#contenido_general .form-custom .form-check-label {
  color: var(--bol-text);
  font-size: .9rem;
}

#contenido_general .form-custom .col-lg-4 > .card {
  border: 1px solid var(--bol-border);
  border-radius: 12px;
  box-shadow: none;
  background: #fafafa;
  overflow: hidden;
}

#contenido_general .form-custom .col-lg-4 > .card > .card-body {
  padding: 1.25rem;
}

#contenido_general .form-custom .col-lg-4 .col-12.text-center,
#contenido_general .form-custom .col-lg-4 .col-12[align="center"] {
  background: var(--bol-pink);
  border-radius: 12px;
  padding: 1.1rem 1rem !important;
  margin-top: .5rem;
  text-align: center !important;
}

#contenido_general .form-custom .col-lg-4 .col-12.text-center .form-label,
#contenido_general .form-custom .col-lg-4 .col-12.text-center .grisTitle,
#contenido_general .form-custom .col-lg-4 .col-12.text-center #txttotal {
  color: #fff !important;
  font-weight: 600;
}

#contenido_general .form-custom .col-lg-4 .col-12.text-center #txttotal {
  font-size: 1.75rem !important;
  line-height: 1.2;
  margin-top: .25rem;
}

#contenido_general .form-custom .subtitle {
  color: var(--bol-navy);
  font-size: .9rem;
  font-weight: 500;
}

#contenido_general .form-custom .auto-boleteria {
  background: #f9f9f9;
  border: 1px solid var(--bol-border);
  border-radius: 12px;
  box-shadow: none;
  padding: 1.25rem 1.5rem;
  color: var(--bol-muted);
  font-size: .85rem;
  line-height: 1.55;
}

#contenido_general .form-custom .auto-boleteria strong {
  color: var(--bol-navy);
}

#contenido_general .form-custom .alert-info {
  background: var(--bol-note-bg);
  border: 1px solid #bee3f8;
  color: var(--bol-note-text);
  border-radius: 8px;
  font-size: .875rem;
}

#contenido_general .form-custom .alert-danger {
  border-radius: 8px;
  font-size: .875rem;
}

#contenido_general .form-custom .botones-acciones {
  padding-top: .5rem;
}

#contenido_general .form-custom .btn-boleteria.btn-guardar {
  width: auto;
  min-width: 180px;
  padding: .65rem 2rem;
  border-radius: 8px;
  background: var(--bol-navy) !important;
  border: 1px solid var(--bol-navy) !important;
  color: #fff !important;
  font-family: "Exo 2", system-ui, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
}

#contenido_general .form-custom .btn-boleteria.btn-guardar:hover {
  background: var(--bol-pink) !important;
  border-color: var(--bol-pink) !important;
  color: #fff !important;
}

#contenido_general .form-custom #detail_boleta {
  display: block;
  margin-top: .35rem;
  color: var(--bol-muted);
  font-size: .85rem;
}

#contenido_general .cont-boleteria .alert-primary {
  background: var(--bol-note-bg);
  border-color: #bee3f8;
  color: var(--bol-note-text);
  border-radius: 12px;
}

/* ── Confirmación (confirmacion3) ── */
#contenido_general .content-dashboard {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--bol-card-shadow);
  border: 1px solid var(--bol-border);
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}

#contenido_general .detalle-boleteria {
  margin-top: 0;
  padding: 0;
}

#contenido_general .detalle-boleteria > .container,
#contenido_general .detalle-boleteria > .container-fluid {
  max-width: 100%;
  padding: 0;
}

#contenido_general .detalle-boleteria .row:first-of-type .alert-info {
  background: var(--bol-note-bg);
  border: none;
  border-bottom: 1px solid #bee3f8;
  border-radius: 0;
  color: var(--bol-note-text);
  font-size: .9rem;
  padding: .85rem 1.25rem;
  margin: 0;
}

#contenido_general .detalle-boleteria .row:first-of-type .alert-info img {
  display: none;
}

#contenido_general .detalle-boleteria::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: url(/skins/page/images/Fondo-Imagen.jpg) center center / cover no-repeat;
}

#contenido_general .detalle-boleteria > .container > .row:not(:first-of-type),
#contenido_general .detalle-boleteria > .container-fluid > .row:not(:first-of-type) {
  padding: 0 1.5rem;
}

#contenido_general .detalle-boleteria .card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: auto;
  background: transparent;
}

#contenido_general .detalle-boleteria .card-header {
  background: transparent;
  border: none;
  padding: 1.25rem 0 .75rem;
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bol-navy);
}

#contenido_general .detalle-boleteria .card-header i {
  color: var(--bol-muted);
  font-size: 1rem;
}

#contenido_general .detalle-boleteria .card-body {
  padding: 0 0 1rem;
  font-size: .875rem;
  line-height: 1.65;
}

#contenido_general .detalle-boleteria .card-body > div {
  margin-bottom: .35rem;
}

#contenido_general .detalle-boleteria .card strong {
  color: var(--bol-navy);
  font-weight: 600;
}

#contenido_general .detalle-boleteria .detail-bol {
  color: var(--bol-muted);
}

#contenido_general .detalle-boleteria .row > .col.ps-0 {
  border-left: 1px solid var(--bol-border);
}

#contenido_general .detalle-boleteria .col-md-12.text-center[style*="border-top"] {
  border-top: none !important;
  margin: 0 1.5rem 1rem !important;
  padding: 0 !important;
  background: var(--bol-pink);
  border-radius: 12px;
  padding: 1.25rem 1rem !important;
}

#contenido_general .detalle-boleteria .col-md-12.text-center[style*="border-top"] .grisTitle {
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 500;
  margin-bottom: .25rem;
}

#contenido_general .detalle-boleteria .col-md-12.text-center[style*="border-top"] .grisTitle + .grisTitle,
#contenido_general .detalle-boleteria .col-md-12.text-center[style*="border-top"] span.grisTitle[style*="40px"] {
  color: #fff !important;
  font-size: 2rem !important;
  font-weight: 700;
}

#contenido_general .detalle-boleteria .col-md-12.p-0.mb-1.mt-4 .alert-info,
#contenido_general .detalle-boleteria .col-md-12.p-0.mb-5 .alert-bol {
  background: var(--bol-note-bg);
  border: none;
  border-radius: 0 0 16px 16px;
  color: var(--bol-note-text);
  font-size: .875rem;
  padding: .9rem 1.25rem;
  margin: 0;
  text-align: center;
}

#contenido_general .detalle-boleteria .alert-bol {
  background: var(--bol-note-bg);
  color: var(--bol-note-text);
  box-shadow: none;
  font-weight: 500;
}

#contenido_general > .titulo-principal .fa-ticket {
  color: var(--bol-pink);
}

@media (max-width: 991px) {
  #contenido_general .form-custom {
    padding: 1.25rem 1rem;
  }

  #contenido_general .detalle-boleteria .row > .col.ps-0 {
    border-left: none;
    border-top: 1px solid var(--bol-border);
    margin-top: .5rem;
    padding-top: .5rem !important;
  }

  #contenido_general .detalle-boleteria::before {
    height: 140px;
  }
}
