/* ==========================================================
   HOME
========================================================== */

.hero{

    position:relative;

    min-height:calc(100vh - 90px);

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    background:url('/img/hero-atlante.webp') center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.45)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(900px,92%);

    margin:auto;

    text-align:center;

    color:#fff;

}

.hero h1{

    font-size:clamp(2.7rem,5vw,4.8rem);

    line-height:1.1;

    font-weight:700;

    margin-bottom:30px;

    text-wrap:balance;

}

.hero p{

    max-width:820px;

    margin:35px auto 0;

    font-size:1.35rem;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    text-shadow:0 3px 10px rgba(0,0,0,.45);

    font-weight:400;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn-project{

    min-width:230px;

}

.hero-buttons .btn-whatsapp{

    min-width:230px;

}
.story{

    max-width:900px;
    margin:auto;

}

.story-highlight{

    background:#0A2540;

    color:#fff;

    border-radius:14px;

    padding:25px;

    margin:50px 0 30px;

}

.story p{

    font-size:1.12rem;

    line-height:2;

    margin-bottom:25px;

}
/*==================================================
EVENTOS
==================================================*/

.event-home{

    margin:120px 0;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.event-home-image img{

    width:100%;

    border-radius:22px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.event-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:100px;

    background:#edf3fb;

    color:#0A2540;

    font-weight:600;

    margin-bottom:20px;

}

.event-home h2{

    font-size:48px;

    line-height:1.15;

    margin-bottom:25px;

}

.event-home p{

    font-size:1.15rem;

    line-height:1.9;

    color:#555;

}

.event-list{

    list-style:none;

    margin:30px 0;

    padding:0;

}

.event-list li{

    margin-bottom:12px;

    font-weight:600;

}

.event-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/*==================================================
BANNER OCÉANO
==================================================*/

.oceano-banner{

    display:block;

    margin:120px 0;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.oceano-banner img{

    display:block;

    width:100%;

    transition:.45s;

}

.oceano-banner:hover img{

    transform:scale(1.03);

    filter:brightness(1.05);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:900px){

.event-home{

    grid-template-columns:1fr;

    gap:35px;

}

.event-home h2{

    font-size:36px;

}

.event-buttons{

    flex-direction:column;

}

.event-buttons a{

    width:100%;

    text-align:center;

}

}
/*==================================================
BUSCADOR HOME
==================================================*/

.search-home{

    max-width:980px;

    margin:110px auto;

    text-align:center;

}

.search-badge{

    display:inline-block;

    background:#edf3fb;

    color:#0A2540;

    padding:10px 18px;

    border-radius:100px;

    font-weight:600;

    margin-bottom:22px;

}

.search-home h2{

    font-size:clamp(2rem,4vw,3.2rem);

    margin-bottom:20px;

}

.search-home p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:1.12rem;

}

.search-box{

    display:flex;

    margin:55px auto 35px;

    max-width:850px;

    background:#fff;

    border-radius:80px;

    padding:12px;

    box-shadow:0 18px 45px rgba(0,0,0,.10);

    border:1px solid #e9eef5;

}

.search-input{

    flex:1;

    display:flex;

    align-items:center;

    gap:18px;

    padding:0 25px;

}

.search-input svg{

    width:24px;

    height:24px;

    color:#0A2540;

    flex:none;

}

.search-input input{

    width:100%;

    border:none;

    outline:none;

    background:none;

    font-size:1.08rem;

    color:#333;

}

.search-input input::placeholder{

    color:#9aa5b5;

}

.search-box button{

    border:none;

    background:#0A2540;

    color:#fff;

    padding:18px 40px;

    border-radius:60px;

    font-weight:600;

    font-size:1rem;

    cursor:pointer;

    transition:.30s;

}

.search-box button:hover{

    background:#103761;

    transform:translateY(-2px);

}

.search-tags{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

}

.search-tags a{

    padding:10px 18px;

    background:#f5f7fb;

    border-radius:100px;

    color:#4d6075;

    font-size:.95rem;

    transition:.25s;

    cursor:pointer;

    text-decoration:none;

    display:inline-block;

}

.search-tags a:hover{

    background:#0A2540;

    color:#fff;

    transform:translateY(-2px);

}

@media(max-width:900px){

.search-box{

    flex-direction:column;

    border-radius:22px;

    padding:18px;

}

.search-input{

    padding:10px;

}

.search-box button{

    width:100%;

    margin-top:15px;

}

}

/*==================================================
RESULTADOS BUSCADOR
==================================================*/

#searchResults{

    margin-top:60px;

}

.search-empty{

    text-align:center;

    padding:60px;

    font-size:1.15rem;

    color:#666;

}