* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-style: normal;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.abajo {
    height: 150px;
    width: 100px;
}

.gradient-text {

  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; 
}

header .bannerDesktop {
    width: 100%;
}

header .bannerMobile {
    width: 100%;
    display: none;
}

.linea {
    width: 100%;
    background-color: white;
    height: 2px;
    opacity: 0;
}

nav {
    width: 100%;
    background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

nav ul {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    font-size: 26px;
    width: 60%;
}

nav .menuNav {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .menuNav .linkMobile {
    font-size: 22px;
    color: white;
    margin-left: 10%;
}

nav img {
    width: 50px;
    height: 50px;
    align-self: center;
    margin-right: 10%;
}

nav ul li {
    border-radius: 20px;
    padding: 12px;
    transition: all .3s;
}

nav ul li:hover {
    transform: scale(1.05);
}

nav ul li:hover ~ .linea {
    opacity: 1;
}

nav ul li a {
    color: white;
}

nav ul li a.linkMobile, nav ul li a.linkDesktop {
    font-weight: bolder;
}

main .countdownTitle{
    margin-top: 15px;
    text-align: center;
    color: #757373;
}

main .countdown {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    color: #757373;
}

main .grupo {
    line-height: 1;
}

main .grande {
    font-size: 2rem;
    font-weight: 600;
}

main section.formulario {
    max-width: 60%;
    margin: 30px auto 50px;
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid gainsboro;
    padding: 2px;
    box-shadow: -3px 3px 24px 4px rgba(0,0,0,0.50);
}

main section.formulario img {
    width: 50%;
}

main section.formulario div {
    width: 100%;
}

main section.formulario h2 {
    text-align: center;
    font-size: 32px;
}

main section.formulario form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

main section.formulario input {
    width: 70%;
    height: 40px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid gray;
    padding-left: 15px;
    margin-top: 20px;
    font-size: 20px;
}

main section.formulario .error {
    color: red;
    font-style: italic;
}

main section.formulario button, .botonAlert {
    border-radius: 20px;
    width: 240px;
    font-size: 28px;
    margin: 30px auto 0;
    border: none;
    background-color: #3482f7;
    color: white;
    padding: 8px;
    cursor: pointer;
    transition: all .3s;
}

main section.formulario button:hover {
    opacity: 0.8;
}

.tyc {
    color: #757373;
    margin-top: 15px;
}

.tycLink {
    color: #3482f7;
    text-decoration: underline;
    cursor: pointer;
}

main section.text {
    width: 80%;
    margin: 100px auto;
    text-align: center;
    font-size: 22px;
    color: #757373;
}

main section.oradores {
    display: flex;
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
}

main section.oradores h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

main section.oradores .oradoresArt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly ;
    width: 80%;
    margin: 0 auto;
}

main section.oradores .oradoresArt article {
    width: 30%;
    margin-bottom: 80px;
    transition: all .4s;
}

main section.oradores .oradoresArt article h3.verLinkedin {
    opacity: 0;
    font-size: 24px;
    text-align: center;
    margin-top: -100px;
}

main section.oradores .oradoresArt article:hover {
    transform: scale(1.1);
}

main section.oradores .oradoresArt article a .ocultarLinkedin, main section.oradores .oradoresArt article a .verLinkedin {
    transition: all .6s;
}

main section.oradores .oradoresArt article:hover > a .ocultarLinkedin{
    opacity: 0; 
}

main section.oradores .oradoresArt article:hover > a .verLinkedin{
    opacity: 1;
}

main section.oradores .oradoresArt article img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 8px -7px 11px 0px #00787e;
    margin-bottom: 5px;
}

main section.oradores .oradoresArt article h3 {
    width: 70%;
    margin: 10px auto 10px;
    color: #4B4B4B;
} 

main section.oradores .oradoresArt article span {
    color: black;
}

main section.faq {
    display: flex;
    flex-direction: column;
}

main section.faq h2 {
    text-align: center;
    font-size: 40px;
    margin: 40px;
}

main .faq .faqArticles {
    width: 70%;
    margin: 0 auto;
}

main .faq .faqArticles div.faqtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 24px;
    border-top: 1px solid gray;
    cursor: pointer;
}

main .faq .faqArticles .distinto {
    border-bottom: 1px solid gray;
}

main .faq .faqArticles div.faqtitle:hover {
    background-color: #ebe7f3;
}

main .faq .faqArticles span.icon {
    margin-right: 20px;
    font-size: 35px;
}

main .faq .faqArticles p {
    color: #4B4B4B;
    font-size: 20px;
    padding: 40px;
}

main .faq .faqArticles p.pais {
    padding: 0;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

main .faq .faqArticles p.pais img {
    width: 20px;
    margin-right: 5px;
}

main .faq .faqArticles .contenidoCro h3 {
    padding: 0 40px;
    text-decoration: underline;
    font-size: 22px;
}

main .faq .faqArticles .noPadding {
    padding-top: 0;
}

table {
    background-color: transparent;
    width: 80%;
    margin: 0 auto;
    margin-block-end: 15px;
    font-size: 1.1em;
    border-spacing: 0;
    border-collapse: collapse;
}

.centrar {
    text-align: center;
}

.fondoTabla {
    background-color: rgb(242, 240, 240);
}

main .faq .faqArticles table td {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}

main .faq .faqArticles table tr:hover {
    background-color: rgb(242, 240, 240);
}

main .faq .faqArticles .contenidoCro a {
    color: black;
}

.oculto {
    display: none !important; 
}

.mostrar {
    display: block !important;
}

footer {
    padding: 100px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-evenly;
    background-image: linear-gradient(to bottom, #94dc9e, #cafee0, #e1f7ea, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #e0e2f7, #d0c9f8, #abaef4);
}

footer a {
    width: 10%;
}

footer a img {
    width: 100%;
}

.title {
    font-family: lato;font-family: "Lato", sans-serif;font-size: .9rem;
    font-size: 1.3rem;
}

@media(max-width: 1000px) {
    nav ul {
        width: 75%;
    }

    nav ul li {
        font-size: 22px;
    }
}

@media(max-width: 700px) {
    header .bannerDesktop {
        display: none;
    }
    
    header .bannerMobile {
        display: block;
    }

    nav {
        height: auto;
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    nav ul li {
        font-size: 22px;
        margin-left:7%;
    }

    nav ul li:hover {
        transform: scale(1);
    }

    nav ul li:hover ~ .linea {
        opacity: 0;
    }

    nav .linkDesktop {
        display: none;
        font-weight: bolder;
    }

    nav .menuNav {
        display: flex;
    }

    main .countdown {
        gap: .8rem;
    }

    main .countdownTitle h2{
        font-size: 16px;
    }

    main .grande {
        font-size: 1rem;
    }

    main section.formulario {
        max-width: 90%;
        margin-top: 0;
    }

    main section.formulario h2 {
        font-size: 24px;
    }

    main section.formulario img {
        display: none;
    }

    main section.formulario input {
        width: 90%;
    }

    main section.formulario button, .botonAlert {
        width: 200px;
        font-size: 22px;
    }

    main section.text {
       width: 90%;
       font-size: 18px;
    }

    main section.oradores .oradoresArt {
        flex-direction: column;
        width: 90%;
    }

    main section.oradores .oradoresArt article {
        width: 100%;
    }

    main section.oradores .oradoresArt article h3.verLinkedin {
        opacity: 1;
        margin-top: 0px;
    }

    main section.oradores .oradoresArt article:hover > a .ocultarLinkedin{
        opacity: 1; 
    }

    main section.oradores .oradoresArt article h3 {
        margin: 10px auto 10px;
    } 

    main .faq .faqArticles {
        width: 85%;
    }

    main section.faq h2 {
        font-size: 32px;
    }

    main .faq .faqArticles p {
        font-size: 18px;
        padding: 20px;
    }

    main .faq .faqArticles .faqtitle h3 {
        font-size: 20px;
    }
    table {
        width: 100%;
    }

    main .faq .faqArticles .contenidoCro h3 {
        text-align: center;
    }

    footer {
        flex-wrap: wrap;
        background-image: linear-gradient(to bottom, #94dc9e, #cafee0, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #d0c9f8, #abaef4);
    }
    
    footer img {
        width: 33%;
        margin: 0 0 50px;
    }
}
