/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#071320;
    color:#fff;
    overflow-x:hidden;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/*==========================================
HEADER
==========================================*/

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:18px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(5,15,30,.85);
    backdrop-filter:blur(12px);

    z-index:999;

}

.logo img{

    height:70px;
    padding-left: 40px;
}

.logo-build-la-rioja{

    height:300px;
}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:#fff;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:#00CFFF;

}

/*==========================================
HERO
==========================================*/

.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(rgba(5,15,30,.75),rgba(5,15,30,.85)),
    url("../img/buildlarioja/fondo.jpg") center center/cover;

}

.overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,#009dff22 0%,transparent 60%);

}

.contenido{

    position:relative;
    z-index:5;

    width:90%;
    max-width:850px;

}

.categoria{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#00CFFF22;

    border:1px solid #00CFFF;

    color:#00d4ff;

    font-size:.9rem;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero h1{

    font-size:5rem;

    font-weight:800;

    margin-bottom:20px;

}

.hero p{

    font-size:1.35rem;

    line-height:1.8;

    color:#d6d6d6;

}

.fecha{

    margin:35px 0;

    font-size:1.2rem;

}

.fecha i{

    color:#00CFFF;
    margin-right:8px;

}

/*==========================================
BOTON
==========================================*/

.btn{

    display:inline-block;

    padding:18px 45px;

    border-radius:50px;

    background:linear-gradient(90deg,#009DFF,#00D9FF);

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,180,255,.35);

}

/*==========================================
SECCIONES
==========================================*/

section{

    padding:90px 0;

}

section h2{

    font-size:2.4rem;

    margin-bottom:30px;

    text-align:center;

}

section p{

    color:#cfcfcf;

    line-height:1.9;

}

/*==========================================
INTRO
==========================================*/

.intro{

    background:#091826;

    text-align:center;

}

/*==========================================
CARDS
==========================================*/

.info{

    background:#071320;

}

.info .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.card{

    padding:40px 30px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    transition:.35s;

    text-align:center;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#00CFFF;

}

.card i{

    font-size:2.8rem;

    color:#00CFFF;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

}

/*==========================================
IMPORTANTE
==========================================*/

.importante{

    background:linear-gradient(90deg,#009DFF,#00D9FF);

    color:#fff;

}

.importante .container{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;

}

.importante i{

    font-size:3rem;

}

.importante h2{

    margin:0;
    text-align:left;
}

/*==========================================
JURADOS
==========================================*/

.jurado{

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    padding:40px 30px;

}

.jurado h3{

    margin-top:10px;

    margin-bottom:10px;

    font-size:1.8rem;

    text-align:center;

}

.jurado a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:#18c7ff;

    font-weight:600;

}

.subtitulo{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

    font-size:1.15rem;

    line-height:1.8;

}

.jurados-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.jurado img{

    width:180px;
    height:180px;

    display:block;

    margin:0 auto 25px;

    object-fit:cover;
    object-position:center;

    border-radius:50%;

    border:3px solid #18c7ff;

    box-shadow:
        0 0 0 6px rgba(24,199,255,.08),
        0 15px 35px rgba(0,0,0,.35);

    transition:.35s;

}

.jurado:hover img{

    transform:scale(1.05);

    border-color:#39d7ff;

}

/*==========================================
FAQ
==========================================*/

.faq{

    background:#071320;

}

/*==========================================
FORMULARIO
==========================================*/

.inscripcion{

    background:#091826;

}

/*==========================================
FOOTER
==========================================*/

footer{

    padding:40px;

    text-align:center;

    background:#04101b;

    color:#8e9dad;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:900px){

.hero h1{

    font-size:3.5rem;

}

nav{

    gap:18px;

}

}

@media(max-width:700px){

header{

    flex-direction:column;

    gap:20px;

}

.hero h1{

    font-size:2.6rem;

}

.hero p{

    font-size:1rem;

}

.importante .container{

    flex-direction:column;

    text-align:center;

}

.importante h2{

    text-align:center;

}

}

#form_buildlarioja{

    width:100%;
    max-width:1100px;

    margin:auto;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:60px;

    backdrop-filter:blur(12px);

}

.form-section{

    margin-bottom:55px;

    padding-bottom:40px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.form-section:last-child{

    border:none;

}

.form-section h3{

    color:#00CFFF;

    margin-bottom:30px;

    font-size:1.5rem;

}

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.campo{

    display:flex;

    flex-direction:column;

}

.campo label{

    margin-bottom:10px;

    font-weight:600;

    color:#d9e6f2;

}

#form_buildlarioja input,
#form_buildlarioja select,
#form_buildlarioja textarea{

    width:100%;

    background:#102334;

    border:1px solid #294962;

    color:#fff;

    padding:15px 18px;

    border-radius:12px;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

}

#form_buildlarioja input:focus,
#form_buildlarioja select:focus,
#form_buildlarioja textarea:focus{

    outline:none;

    border-color:#00CFFF;

    box-shadow:0 0 0 4px rgba(0,207,255,.15);

}

textarea{

    min-height:140px;

    resize:vertical;

}

.check{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:20px;

    font-size:.95rem;

}

.check input{

    width:20px !important;

    height:20px;

    margin-top:2px;

    flex-shrink:0;

}

.enviar{

    width:100%;

    margin-top:20px;

    border:none;

    font-size:18px;

    cursor:pointer;

}


.bases{

    background:#102334;

    border:1px solid #294962;

    border-radius:15px;

    max-height:280px;

    overflow-y:auto;

}

.bases-contenido{

    padding:30px;

}

.bases h4{

    color:#00CFFF;

    margin:25px 0 10px;

}

.bases h4:first-child{

    margin-top:0;

}

.bases ul{

    margin-left:20px;

}

.bases li{

    margin-bottom:12px;

    color:#d9e6f2;

}

.bases p{

    color:#d9e6f2;

    line-height:1.8;

}

.logo-footer {
    height:80px;
}


.div-center {
    display: flex; 
    justify-content: center;
}

.align-left{

    max-width:900px;

    margin:0 auto;

    text-align:left;

    line-height:2;

}

.hero-top{

    display:flex;
    flex-direction:column;
    align-items:center;

}


/*==================================================
CHOICES.JS
==================================================*/

.choices{
    margin:0;
    width:100%;
}

.choices__inner{

    background:#102334 !important;
    border:1px solid #294962 !important;
    border-radius:12px !important;

    color:#fff;

    min-height:56px;

    padding:8px 12px !important;

}

.choices.is-focused .choices__inner{

    border-color:#00CFFF !important;

    box-shadow:0 0 0 4px rgba(0,207,255,.15);

}

.choices__list--multiple{

    display:flex;
    flex-wrap:wrap;
    gap:8px;

}

.choices__list--multiple .choices__item{

    background:#009DFF !important;
    border:none !important;

    color:#fff;

    border-radius:30px;

    padding:6px 12px;

    font-size:14px;

}

.choices__input{

    background:transparent !important;
    color:#fff !important;

}

.choices__input::placeholder{

    color:#9db0c2;

}

.choices__list--dropdown,
.choices__list[aria-expanded]{

    background:#102334 !important;

    border:1px solid #294962 !important;

    border-radius:12px;

    margin-top:8px;

}

.choices__list--dropdown .choices__item{

    color:#fff;

    padding:12px 16px;

}

.choices__list--dropdown .choices__item--selectable.is-highlighted{

    background:#00CFFF22 !important;

}

.choices__list--dropdown .choices__item--disabled{

    color:#8ca4b7;

}

.choices[data-type*=select-multiple] .choices__button{

    border-left:1px solid rgba(255,255,255,.25);

}

.choices__input{
    min-width: 220px !important;
    width: 220px !important;
}