/* ===== PADRÃO TORRE (ADAPTAÇÃO) ===== */

/* HERO 2 COLUNAS COM VÍDEO */
.hero-two-columns {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero-two-columns::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.5;
}

.hero-two-columns .container {
	position: relative;
	z-index: 2;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	height: 600px;
	border-radius: 22px;
	overflow: hidden;
	background: #0b0f1a;
	box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.hero-image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(220,20,60,0.12) 50%, transparent 70%);
	animation: shimmer 3s infinite;
	pointer-events: none;
}

.hero-image-wrapper video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-content-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding-left: 40px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	color: #ffffff;
	padding: 12px 26px;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 22px;
	box-shadow: 0 10px 30px rgba(220,20,60,0.38);
}

.hero-title {
	font-size: 3.1rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin-bottom: 18px;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
	background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.86);
	line-height: 1.85;
	margin-bottom: 0;
	font-weight: 300;
}

.hero-seo-links {
	margin-top: 22px;
	color: rgba(255,255,255,0.75);
}

.hero-seo-links a {
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.18);
}

.hero-seo-links a:hover {
	color: #fff;
	border-bottom-color: rgba(220,20,60,0.55);
}

/* BARRA DE AÇÕES (BOTÕES) */
.mv-action-bar {
	padding: 26px 0 10px;
}

.mv-action-card {
	background: rgba(255,255,255,0.92);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(0,0,0,0.12);
	padding: 22px;
	margin-top: -42px;
	position: relative;
	z-index: 3;
}

.mv-action-card .btn {
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 800;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.mv-btn-primary {
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border: none;
	box-shadow: 0 12px 30px rgba(220,20,60,0.30);
}

.mv-btn-primary:hover {
	filter: brightness(1.05);
}

.mv-btn-ghost {
	background: #ffffff;
	border: 1px solid rgba(15,52,96,0.18);
	color: #0f3460;
	box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.mv-btn-ghost:hover {
	border-color: rgba(220,20,60,0.35);
	color: #0f3460;
}

/* CARDS DE BENEFÍCIOS */
.mv-features {
	padding: 35px 0 10px;
}

.mv-feature-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 28px 26px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.08);
	height: 100%;
	border: 1px solid rgba(15,52,96,0.08);
}

.mv-feature-icon {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(220,20,60,0.10);
	color: #DC143C;
	font-size: 22px;
	margin-bottom: 16px;
}

.mv-feature-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: #1b1b1b;
	margin-bottom: 10px;
}

.mv-feature-card p {
	margin: 0;
	color: rgba(0,0,0,0.70);
	line-height: 1.75;
}

/* COMPARATIVO (VISUAL PREMIUM) */
.mv-compare {
	background: linear-gradient(135deg, #0b0f1a 0%, #101827 50%, #0f3460 100%);
	padding: 80px 0;
}

.mv-compare .mv-compare-title {
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.6px;
}

.mv-compare .mv-compare-lead {
	color: rgba(255,255,255,0.82);
	line-height: 1.85;
}

.mv-compare-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 22px 70px rgba(0,0,0,0.25);
	height: 100%;
}

.mv-compare-card .mv-compare-cover {
	height: 210px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.mv-compare-card .mv-compare-cover::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.62) 100%);
}

.mv-compare-card .mv-compare-body {
	padding: 22px 22px 24px;
}

.mv-compare-kicker {
	color: rgba(255,255,255,0.70);
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 0.85rem;
	margin-bottom: 10px;
}

.mv-compare-name {
	color: #fff;
	font-weight: 900;
	font-size: 1.35rem;
	margin-bottom: 14px;
}

.mv-compare-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mv-compare-list li {
	color: rgba(255,255,255,0.85);
	line-height: 1.65;
	margin: 0 0 10px;
	padding-left: 28px;
	position: relative;
}

.mv-compare-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: rgba(220,20,60,0.95);
	font-weight: 900;
}

/* RESPONSIVO */
@media (max-width: 991px) {
	.hero-two-columns { padding: 110px 0 60px; }
	.hero-content-wrapper { padding-left: 0; margin-top: 24px; }
	.hero-title { font-size: 2.4rem; }
	.hero-image-wrapper { height: 420px; }
	.mv-action-card { margin-top: -26px; }
}

@media (max-width: 576px) {
	.hero-two-columns { padding: 100px 0 55px; }
	.hero-title { font-size: 2.05rem; }
	.hero-image-wrapper { height: 360px; border-radius: 18px; }
	.mv-action-card { padding: 18px; }
	.mv-action-card .btn { width: 100%; justify-content: center; }
}
