:root {
    --primary: #049ee3;
    --secondary: #FDEA12;
    --brown: #3E3618;
    --gray: #CEFDF6;
    --green-light: #0CF4D0;
    --green: #00953f;
    --orange: #FFBB04;
    --red: #e20819;
    --yellow: #feec00;
    --blue: #049ee3;
}

@font-face {
    font-family: 'Futura';
    src: url(../fonts/FuturaLT.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaBold';
    src: url(../fonts/FuturaLT-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}

.font-futura {
    font-family: 'Futura';
}

.font-futura-bold {
    font-family: 'FuturaBold';
}

.main {
    overflow-x: hidden;
    width: 100%;
}

.font-primary {
    font-family: 'Futura';
}

.font-secondary {
    font-family: 'Urban';
}

nav {
    background-color: var(--green) !important;
    color: #fff !important;
}

    nav a {
        color: #fff !important;
    }

        nav a:hover {
            color: var(--secondary) !important;
        }

body {
    font-family: 'Futura';
    background-color: #fff;
    color: #fff;
    /* background-image: url('../img/bg_desktop.jpg'); */
}

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: #fff !important;
}

#banner {
    background-image: url(../img/back-blue.png);
}

    #banner p {
        max-width: 60%;
        font-size: 1.3rem;
    }

#experiencias {
    background-image: url(../img/fondo-colores.png);
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.container-days {
    width: 50%;
}

.days {
    background-color: #8e8e8e74;
    border-radius: 50px;
}

    .days .selected {
        background-color: var(--primary);
        border-radius: 50px;
        position: relative
    }

.events {
    display: none;
}

    .events.selected {
        display: flex;
    }

.item-day {
    cursor: pointer;
}


.container-gender {
    width: 50%;
}

.genders {
    background-color: #8e8e8e74;
    border-radius: 50px;
}

    .genders .selected {
        background-color: var(--primary);
        border-radius: 50px;
        position: relative
    }

.item-gender {
    cursor: pointer;
}

.conference img {
    position: absolute;
    right: -30px;
    top: -50px;
    width: 200px;
}

.conference {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 50px;
}

    .conference.green {
        background-color: var(--green);
    }

    .conference.orange {
        background-color: var(--orange);
    }

    .conference.red {
        background-color: var(--red);
    }

    .conference.yellow {
        background-color: var(--yellow);
    }

    .conference.blue {
        background-color: var(--blue);
    }

#accesos {
    background-color: var(--green);
    padding-top: 100px;
    padding-bottom: 100px;
}

.acceso-card {
    background-color: #fff;
    color: #000;
    border: #000 solid 1px;
    margin-right: 20px;
    margin-bottom: 20px;
}

    .acceso-card span {
        color: var(--blue);
    }

    .acceso-card b {
        font-family: 'FuturaBold';
    }

    .acceso-card h4 {
        color: var(--blue);
    }

.footer {
    background-color: var(--green);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

    .footer a {
        color: #fff;
        text-decoration: none;
    }

    .footer .icon-rrss img {
        width: 1.5rem;
        margin-right: 1.5rem;
        transition: transform 0.3s ease;
    }


.scale {
    transition: transform 0.3s ease;
}

    .scale:hover {
        transform: scale(1.1);
    }

.footer .icon-rrss img:hover {
    transform: scale(1.1);
}

.footer .links a {
    font-size: 1rem;
}

    .footer .links a:hover {
        color: var(--secondary);
    }

    .footer .links a:not(:last-child)::after {
        content: "|";
        margin: 0 8px;
    }

.modal {
    color: var(--primary);
    text-align: center;
    font-family: 'Futura';
}

.modal-content {
    border-radius: 0px !important;
}

.modal a {
    color: var(--primary);
    text-decoration: none;
}

.modal a {
    color: var(--primary);
    text-decoration: none;
}

.modal h3 {
    font-size: 2rem;
}

.hidden {
    display: none;
}

.register-container {
    background-color: var(--orange);
}

.form-container {
    padding-left: 10rem;
    padding-right: 10rem;
}

form hr {
    color: #fff;
    line-height: 2px;
}

.register-decorator {
    margin-top: 0px;
    margin-left: 3rem;
    position: absolute;
    height: 100px;
    z-index: -1;
}

.disclaimer-form {
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .8rem;
    color: #000;
    /* font-size: .5rem; */
}

    .disclaimer-form .info {
        background-color: var(--gray);
    }

    .disclaimer-form img {
        width: 50%;
    }

.form-floating label {
    color: #000;
}

.btn-blue {
    background-color: var(--primary);
    color: #fff;
    font-size: 1.3rem;
}


#menuModal .modal-content {
    position: relative;
}

    #menuModal .modal-content .top {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 150px;
    }

    #menuModal .modal-content .bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 200px;
    }

    #menuModal .modal-content .right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        max-width: 70px;
    }

.item-menu {
    color: #000 !important;
}

.normal {
    color: #000;
}

.back-tank-you {
    background-image: url(../img/back_gracias.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

#tengo_folio {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
}

/* --------------------------------------- MEDIA QUERY ----------------------------------------------------- */
/* Estilos para monitores muy grandes */
@media (min-width: 1601px) {
    .mobile-only {
        display: none !important;
    }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media screen and (min-width: 1201px) {
    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos grandes (laptops y desktop) */
@media (min-width: 993px) and (max-width: 1200px) {

    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos medianos (tabletas en modo horizontal) */
@media (min-width: 769px) and (max-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos medianos (tabletas en modo vertical) */
@media (min-width: 577px) and (max-width: 768px) {
    /* Estilos para tabletas */
}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/

@media (max-width: 576px) {

    .desktop-only {
        display: none !important;
    }

    .footer .icon-rrss img {
        width: 1rem;
        margin-right: .5rem;
    }

    .footer .links a {
        font-size: .8rem;
    }

    #banner p {
        max-width: 100%;
    }

    .container-days {
        width: 100%;
    }

    .acceso-card {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .form-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .item-gender {
        padding: 10px;
    }

    .back-tank-you {
        background-position: left;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .register-decorator {
        margin-left: 0rem;
        height: 50px;
    }
}

/* --------------------------------------- END MEDIA QUERY ----------------------------------------------------- */
