:root {
    --colp: #21244c;
    --cols: #79ba3f;
}

.nav-link {
    background-color: #747474 !important ;
    border-radius: 0 !important;
    font-weight: bold;
    color: white;
}
.nav-link.active,
.nav-link:hover {
    background-color: var(--cols) !important ;
    color: white;
}

body {
    background-color: #f6f9fc; /* Verde menta muy claro, casi blanco */
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
        0px 2px 5px 0px rgba(50, 50, 93, 0.1),
        0px 1px 1.5px 0px rgba(0, 0, 0, 0.07) !important;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-header {
    background-color: var(--colp);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 20px;

    text-align: center;
    color: #333;
}
.card-header h4 {
    font-size: 1.5em;
    font-weight: bold !important;
    color: white;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 2em;
    color: #333;
}

.pricing-card-title {
    font-size: 3em;
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding: 0;
    color: #666;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table {
    margin-top: 50px;
    border-collapse: collapse;
    width: 100%;
}

.table th,
.table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    text-align: center;
}

.table th {
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    color: #333;
}

.table td {
    background-color: rgba(255, 255, 255, 0.5);
    color: #666;
}

.text-e-primary {
    color: var(--colp);
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/

#hero {
  /* background: linear-gradient(rgba(15, 91, 58, .8), rgba(0, 0, 0, 0.8)), url(../img/event.png) center top / cover no-repeat; */
  color: black;
  text-align: center;
  padding: 80px 0;
  position: relative;
}


#hero .logo-evento {
    max-width: 45rem;
    margin: 0 auto 20px;
    display: block;
}

#hero .logo-organizador {
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
}

#hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

 .btn-boletos {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-boletos i {
    transform: rotate(-45deg);
    will-change: transform;
    display: inline-block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/*--------------------------------------------------------------
# PRICING
--------------------------------------------------------------*/
#pricing h2 {
    font-weight: bold;
    font-size: 10vw;
    color: var(--colp);
    text-transform: uppercase;
    text-align: center;
}

#pricing .card-title {
    font-size: 10vw;
}
#pricing .card-price {
    font-size: 6vw;
}

@media (min-width: 992px) {
    #pricing h2 {
        font-size: 5vw;
        text-align: start;
    }
    #pricing .card-title {
        font-size: 4vw;
    }
    #pricing .card-price {
        font-size: 2vw;
    }
}


.btn-minus,
.btn-plus {
  background-color: #5740eb;
  color: white;
  height: 2rem; /* Asegura que el alto y ancho sean iguales para la forma circular */
  width: 2rem;
  border: none;
  border-radius: 50%; /* Esto hace que el botón sea completamente circular */
  display: inline-flex; /* Usa flexbox para centrar el contenido */
  align-items: center; /* Centra el contenido verticalmente */
  justify-content: center; /* Centra el contenido horizontalmente */
  font-size: 1rem; /* Ajusta esto según necesites para el tamaño del signo más y menos */
  cursor: pointer; /* Cambia el cursor a un puntero para indicar que es clickeable */
}



/*-------------- Talleres y Sesiones ------------------*/

.ticket {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.ticket-date {
    background-color: #f8f8f8;
    padding: 1rem;
    text-align: center;
    border-right: 1px dashed #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 70px;
}

.ticket-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.ticket-date .month {
    font-size: 1rem;
    color: #555;
}

.ticket-info {

    padding: 1rem;
}

.ticket-title {
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
}



.ticket .badge {
    font-size: 0.8rem;
    padding: 0.3em 0.6em;
    border-radius: 10px;
    /* position: absolute;
    top: .5rem;
    left: 5rem; */
}


.card-disabled {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
