/*==========================
CUMBRE 2026
==========================*/

:root{
--azul:#005C99;
--verde:#2E6B45;
--arena:#E8D6B0;
--celeste:#4FAEDB;
--gris:#f6f7f9;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Open Sans',sans-serif;
color:#444;
background:#fff;
overflow-x:hidden;
}

h1,h2,h3,h4,h5{
font-family:'Montserrat',sans-serif;
font-weight:700;
}

section{
padding:80px 0;
}

/**************** MENU ****************/

.menu{
transition:.35s;
background:rgba(0,70,120,.75);
backdrop-filter:blur(10px);
}

.menu.scrolled{
background:#005C99;
box-shadow:0 5px 20px rgba(0,0,0,.20);
}

.navbar-brand{
font-weight:800;
letter-spacing:1px;
}

.nav-link{
font-weight:600;
margin-left:12px;
}

.nav-link:hover{
color:#FFD54A !important;
}

/**************** HERO ****************/

.hero{

height:100vh;

background:url("../img/hero.jpg");

background-position:center;

background-size:cover;

position:relative;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(rgba(0,45,90,.78),rgba(0,45,90,.70));

}

.textoHero{

position:relative;

z-index:5;

color:white;

}

.textoHero h1{

font-size:4.3rem;

font-weight:800;

color:white;

}

.textoHero p{

font-size:1.3rem;

max-width:850px;

margin:auto;

color:white;

}

/**************** DATOS ****************/

.datos{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:40px;

}

.datos div{

background:rgba(255,255,255,.15);

padding:15px 22px;

border-radius:50px;

backdrop-filter:blur(5px);

color:white;

font-weight:600;

}

.datos i{

color:#FFD54A;

margin-right:8px;

}

/**************** CONTADOR ****************/

.contador{

display:flex;

justify-content:center;

gap:20px;

margin-top:50px;

flex-wrap:wrap;

}

.contador div{

width:105px;

height:105px;

background:white;

border-radius:15px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

box-shadow:0 10px 30px rgba(0,0,0,.20);

}

.contador span{

font-size:2rem;

font-weight:800;

color:var(--azul);

}

.contador small{

text-transform:uppercase;

font-size:.75rem;

}

/**************** FRANJA ****************/

.franja{

background:var(--azul);

color:white;

}

.franja i{

font-size:2.6rem;

margin-bottom:15px;

display:block;

color:#FFD54A;

}

.franja h5{

color:white;

font-size:1.35rem;

margin-top:15px;

margin-bottom:5px;

}

.franja p{

color:white;

margin:0;

font-size:.95rem;

opacity:.9;

}

/**************** TIMELINE ****************/

.timeline{

max-width:900px;

margin:auto;

}

.timeline .item{

display:flex;

margin-bottom:25px;

align-items:flex-start;

}

.timeline .hora{

width:110px;

background:var(--azul);

color:white;

padding:12px;

text-align:center;

font-weight:bold;

border-radius:12px;

margin-right:20px;

}

.timeline .contenido{

background:white;

padding:20px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

flex:1;

}

/**************** CARDS ****************/

.hotel,
.restaurante{

border:none;

border-radius:18px;

overflow:hidden;

transition:.35s;

}

.hotel:hover,
.restaurante:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.card-img-top{

height:240px;

object-fit:cover;

}

.precio{

display:block;

font-size:1.7rem;

font-weight:800;

color:#0a8d39;

margin-top:5px;

margin-bottom:15px;

}

/**************** BOTONES ****************/

.btn-primary{

background:#005C99;

border:none;

}

.btn-primary:hover{

background:#2E6B45;

}

.btn-success{

background:#2E6B45;

border:none;

}

.btn-success:hover{

background:#005C99;

}

.btn-warning{

font-weight:700;

}

/**************** FARO ****************/

.alert-success{

font-size:1.1rem;

}

/**************** FOOTER ****************/

footer{

background:#005C99 !important;

}

footer h3{

color:white;

}

footer p{

margin-bottom:6px;

}

/**************** RESPONSIVE ****************/

@media(max-width:992px){

.hero{

height:auto;

padding:170px 0 100px;

}

.textoHero h1{

font-size:2.8rem;

}

}

@media(max-width:768px){

.textoHero h1{

font-size:2.2rem;

}

.datos{

flex-direction:column;

}

.contador{

gap:12px;

}

.contador div{

width:80px;

height:80px;

}

.timeline .item{

flex-direction:column;

}

.timeline .hora{

width:100%;

margin-bottom:10px;

}

.card-img-top{

height:200px;

}

}