@import url("https://use.typekit.net/dwp3plz.css");

/* Root styles */
:root {
    --black: #000000;
    --blue: #003864;
    --dark-gray: #3F4444;
    --gray: #979797;
    --light-gray: #EBEFEE;
    --light-gray-2: #F2F2F2;
    --light-gray-3: #F8F8F8;
    --orange: #FF7F32;
    --pink: #F7426C;
    --white: #ffffff;

    /* Font sizes */
    --text-xlarge: 48px;
    --text-large: 36px;
    --text-medium: 24px;
    --text-small-medium: 20px;
    --text-small: 15px;
    --text-extra-small: 12px;
}

/* Global styles */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    line-height: 1.3;
}

h1 {
    font-size: var(--text-large);
    color: var(--white);
    margin: 20px 0;
}

.text-xlarge { font-size: var(--text-text-); }
.text-large { font-size: var(--text-large); }
.text-medium { font-size: var(--text-medium); }
.text-small-medium { font-size: var(--text-small-medium); }
.text-small { font-size: var(--text-small); }
.text-extra-small { font-size: var(--text-extra-small); }

.text-black { color: var(--black); }
.text-blue { color: var(--blue); }
.text-dark-gray { color: var(--dark-gray); }
.text-gray { color: var(--gray); }
.text-pink { color: var(--pink); }
.text-white { color: var(--white); }

.bg-white { background-color: var(--white); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-light-gray-2 { background-color: var(--light-gray-2); }
.bg-light-gray-3 { background-color: var(--light-gray-3); }
.bg-gray { background-color: var(--gray); }
.bg-pink-orange-horizontal { background: #EF426F;
    background: -webkit-linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    background: linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#EF426F",
      endColorstr="#FF7F32",
      GradientType=1);
}
.bg-pink-orange-vertical { background: #EF426F;
    background: -webkit-linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    background: linear-gradient(90deg,rgba(239, 66, 111, 1) 0%, rgba(255, 127, 50, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#EF426F",
      endColorstr="#FF7F32",
      GradientType=1);
}

.m-auto { margin: auto; }
.d-flex { display: flex; }
.m-0 { margin: 0; }
.m-1 { margin: 5px; }
.m-2 { margin: 10px; }
.m-3 { margin: 20px; }
.m-4 { margin: 40px; }

.p-0 { padding: 0; }
.p-1 { padding: 5px; }
.p-2 { padding: 10px; }
.p-3 { padding: 20px; }
.p-4 { padding: 40px; }
.p-x-1 { padding-right: 1rem; padding-left: 1rem;}
.p-x-2 { padding-right: 2rem; padding-left: 2rem;}
.p-x-3 { padding-right: 3rem; padding-left: 3rem;}
.p-x-6 { padding-right: 6rem; padding-left: 6rem;}
.p-y-1 { padding-top: 1rem; padding-bottom: 1rem;}
.p-y-2 { padding-top: 2rem; padding-bottom: 2rem;}
.p-y-3 { padding-top: 3rem; padding-bottom: 3rem;}
.p-y-4 { padding-top: 4rem; padding-bottom: 4rem;}
.p-y-6 { padding-top: 6rem; padding-bottom: 6rem;}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/*FONT FAMILY*/
.font-family-arial {
    font-family: Arial, Helvetica, sans-serif;
}
.font-family-roboto-condensed {
    font-family:"roboto-condensed";
}
.font-family-poppins {
    font-family:"poppins";
}
.font-family-helvetica-neue-lt-pro {
    font-family: "helvetica-neue-lt-pro",sans-serif;
}

.font-light { font-weight: 200; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-book { font-weight: 700; }
.font-bold { font-weight: 900; }

.font-normal { font-style: normal; }
.font-italic { font-style: italic; }
.font-uppercase { text-transform: uppercase; }
.font-lowercase { text-transform: lowercase; }
.font-capitalize { text-transform: capitalize; }

.text-decoration-underline { text-decoration: underline; }
.text-decoration-none { text-decoration: none; }

.br-4 { border-radius: 4px; }
.br-12 { border-radius: 12px; }
.br-15 { border-radius: 15px; }
.br-25 { border-radius: 25px; }

/*FIX TEMPLATE*/
.container-fluid.middle-content {
    padding: 0;
    margin: 0;
}
.footer {
    margin: 0;
}
#pre-login-section .not-logged {
    padding-top: 50px;
    padding-bottom: 50px;
}

/*HERO*/
#hero {
    padding: 6rem 0 0 0;
    background-position: center;
    height: 550px;
    align-items: flex-end;
    display: flex;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-color: black;
}

#hero-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

#hero-copy .fecha {
    position: relative;
    left: -100px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}
#hero-copy .fecha hr {
    margin: 0;
    width: 50px;
    margin-right: 20px;
}

#hero-copy .titulo {
    margin: 30px 0;
    text-transform: uppercase;
    margin-bottom: 80px;
}

#hero-copy a:active, 
#hero-copy a:focus, 
#hero-copy a:hover, 
#hero-copy a {
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    margin: 0;
}

/*AGENDA*/
.agenda {
    display: grid;
    overflow: hidden;
}

.horarios .cronograma {
    display: grid;
    grid-template-columns: 18% 41% 41%;
    margin: 0 20px;
}

.horarios .cronograma:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
}

.cronograma .hora, .cronograma .topico, .cronograma .detalle {
    padding: 18px 0;
}

/*EVENTO*/
.cards {
    justify-content: space-between;
    gap: 20px;
}

.card {
    align-items: anchor-center;
    gap: 20px;
}

.card .wrapper-icono {
    overflow: hidden;
}

.card .icono {
    vertical-align: middle;
    width: 100%;
    height: auto;
    max-width: 90px;
}

/*ORADORES*/
.orador {
    width: 100%;
    min-height: 270px;
}
.orador .perfil {
    width: 120px;
    height: auto;
    border-radius: 50%;
}
.orador .nombre {
    align-items: anchor-center;
    gap: 10px;
}
.oradores .lista-conferencias {
    display: flex;
    gap: 20px;
}

.grid-conferencias {
    display: flex;
    gap: 20px;
}

.grid-conferencias .conferencia-nacional ,
.grid-conferencias .conferencia-internacional {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.grid-legales {
    display: grid;
    grid-template-columns: 25% 60% 15%;
    grid-template-rows: auto;
    grid-template-areas:
    "logo texto-legal codigo-qr";
    align-items: center;
}

.grid-legales .logo {
    grid-area: logo;
}

.grid-legales .texto-legal {
    grid-area: texto-legal;
}

.grid-legales .codigo-qr {
    grid-area: codigo-qr;
}
.grid-legales .texto-legal ,
.grid-legales .texto-legal .legal-link {
    font-family: helvetica-neue-lt-pro;
}

.grid-legales .texto-legal .legal-link {
    font-weight: 700;
}

#pm-code {
    margin: 0;
    padding: 20px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

/*EVENTO*/
.video-evento {
    border-radius: 0 0 12px 12px;
    overflow: hidden; 
}


/*ANIMATIONS START*/
.anim-show {
    view-timeline-name: --image;
    view-timeline-axis: block;
    animation-timeline: --image;
    animation-name: show;
    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
}
@keyframes show {
	from {
		opacity: 0;
		scale: 55%;
	}
	to {
		opacity: 1;
		scale: 100%;
	}
}
/*ANIMATIONS END*/

@media (max-width: 992px) {
    .cards {
        flex-direction: column;
        margin: 20px 0;
    }
    .horarios .cronograma {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr auto;
        margin: 0 20px;
    }
    .conferencias .grid-conferencias{
        display: grid;
    }
    .grid-legales {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: repeat(3,auto);
        grid-template-areas:
            "logo"
            "texto-legal"
            "codigo-qr";
        align-items: center;
        justify-content: center;
        justify-items: center;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    #hero {
        padding: 6rem 0 0 0;
        background-position: right;
        height: 540px;
        align-items: flex-end;
        display: flex;
        background-size: cover !important;
        background-repeat: no-repeat;
        background-color: black;
    }
    .orador {
        width: auto;
    }
    .oradores .lista-conferencias {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
}