
.hero-video-box {
    height: 100vh;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    /* Asegura que esté detrás del navbar */
    z-index: 1;
}
.hero-video-box::after {
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, 0.25);
}
.hero-video-box video {
	width: 100%;
	height: 100%;
	position: absolute;

	top: 0;
	left: 0;

	object-fit: cover;
}

.hero-video-box .hero-content {
	
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Pulls the element back by half its own height and width */

	width: 100%;
	padding: 20px;
	color: white;
	text-align: center;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;


}
.hero-video-box .hero-content h1 {
	
	font-family: var(--title-font-family);
    font-size: clamp(2.8rem, 7.5vw, 5.8rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin: 0;
    max-width: 1100px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.70);
    color: white;
    margin-bottom: 30px;

}
.hero-video-box .hero-content p {
	font-family: var(--base-font-family);
    font-size: clamp(1.25rem, 3.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.48;
    max-width: 920px;
    margin: 0;
    opacity: 0.96;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 30px;

}

.hero-content .hero-buttons{
	width: fit-content;
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}


/* Responsive */
@media (max-width: 1200px) {
    
}

@media (max-width: 992px) {
    .hero-content .hero-buttons{
    	grid-template-rows: 1fr 1fr;
    	grid-template-columns: 1fr;
    	width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content .hero-buttons{
    	grid-template-rows: 1fr 1fr;
    	grid-template-columns: 1fr;
    	width: 100%;
    }
    .hero-video-box .hero-content h1 {
        font-family: var(--title-font-family);
        font-size: clamp(2.35rem, 9vw, 5rem);
        font-weight: 900;
        line-height: 1.08;
        margin: 0;
        text-shadow: 0 4px 12px rgba(0,0,0,0.6);
        color: white;
    }

    .hero-video-box .hero-content p {
        font-family: var(--base-font-family);
        font-size: clamp(1.05rem, 4.2vw, 1.3rem);
        font-weight: 500;
        line-height: 1.5;
        max-width: 820px;
        margin: 20px auto 0;
        opacity: 0.95;
        color: white;
    }
}