/*============== HERO VIDEO FULL ==============*/

.hero-video-banner{
position:relative;
width:100%;
height:60vh; /* altura portada */
min-height:650px;
overflow:hidden;
}


/* video fondo */
.hero-bg-video{
position:absolute;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;
}


/* capa oscura encima del video */
.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}


/* contenido encima */
.hero-content{
position:relative;
z-index:2;

max-width:1200px;
height:100%;

margin:auto;
padding:0 8%;
margin-left:15px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:flex-start;
}


.hero-content h1{
font-size:72px;
line-height:1.08;
max-width:750px;
color:#fff;
margin-bottom:25px;
font-weight:700;
}

.hero-content p{
font-size:22px;
line-height:1.7;
max-width:700px;
color:#fff;
margin-bottom:40px;
}


.hero-btn{
display:inline-block;
background:#7b2121;
color:#fff;
text-decoration:none;

padding:18px 42px;
border-radius:1px;

font-size:18px;
font-weight:600;

transition:.3s;
}

.hero-btn:hover{
background:#4d0505;
transform:translateY(-3px);
}



/*========= responsive =========*/

@media(max-width:991px){

.hero-video-banner{
height:80vh;
min-height:560px;
}

.hero-content{
align-items:center;
text-align:center;
}

.hero-content h1{
font-size:52px;
}

.hero-content p{
font-size:20px;
}

}


@media(max-width:576px){

.hero-video-banner{
height:75vh;
min-height:500px;
}

.hero-content h1{
font-size:36px;
}

.hero-content p{
font-size:17px;
}

.hero-btn{
padding:15px 32px;
font-size:16px;
}

}