/* Branta Claud - Hero (imagen o video YouTube) */
.bc-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	width: 100%;
}

.bc-hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bc-hero-video-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.bc-hero-video-wrap .bc-hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 */
	min-height: 100%;
	min-width: 177.78vh; /* 16:9 */
	transform: translate(-50%, -50%);
	border: none;
}

.bc-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.bc-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bc-hero-content {
	max-width: 560px;
}

/* Logo en esquina del hero */
.bc-hero-logo.bc-hero-logo-corner {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bc-hero.bc-hero-logo-bottom-left .bc-hero-logo.bc-hero-logo-corner {
	right: auto;
	left: 1.5rem;
}

.bc-hero-logo img {
	display: block;
	max-width: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 767px) {
	.bc-hero-logo.bc-hero-logo-corner {
		bottom: 1rem;
		right: 1rem;
	}
	.bc-hero.bc-hero-logo-bottom-left .bc-hero-logo.bc-hero-logo-corner {
		left: 1rem;
	}
	.bc-hero-logo img {
		max-width: 160px;
	}
}

.bc-hero-title {
	margin: 0 0 0.25em;
	font-weight: 700;
	line-height: 1.2;
}

.bc-hero-subtitle {
	margin: 0 0 0.75em;
	font-size: 1.1em;
	opacity: 0.95;
}

.bc-hero-description {
	margin: 0 0 1.5em;
	line-height: 1.5;
	opacity: 0.9;
}

.bc-hero-btn {
	display: inline-block;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.bc-hero-btn:hover {
	opacity: 0.9;
	transform: translateY(1px);
}
