/* GERAL */
body {
	font-family: "Inter", sans-serif;
}
.py-6 {
	padding: 90px 0;
}
.fw-900 {
	font-weight: 900;
}

/* AJUSTE PARA FONT DISPLAY */
@font-face {
	font-family: "Inter";
	font-display: swap;
}

/* HERO */
.hero-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background: #000;
}
.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#player {
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.5s ease;
}
.hero-logo {
	width: 250px;
	object-fit: contain;
}

/* IMAGENS DE FUNDO COM OVERLAY */
.bg-img-about {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("img/fundo_factory.jpg");
	background-size: cover;
	background-attachment: fixed;
}
.bg-img-diff {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("img/fundo_diff.jpg");
	background-size: cover;
	background-attachment: fixed;
}
.bg-img-form {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("img/fundo_topo.png");
	background-size: cover;
}

/* SERVIÇOS E DIFERENCIAIS */
.offer-item i {
	font-size: 3rem;
	color: #ffc107;
	margin-bottom: 15px;
	display: block;
}
.offer-item p {
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

.diff-card {
	padding: 30px;
	border-radius: 15px;
	border-left: 5px solid rgba(255, 255, 255, 0.2);
	height: 100%;
	transition: 0.3s;
}
.diff-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #fff;
}
.diff-card p {
	font-size: 0.9rem;
	margin: 0;
	opacity: 0.9;
}
.diff-card:hover {
	border-left-color: #f04b33;
	transform: translateY(-5px);
}

.bg-blue {
	background: #002d5b;
}
.bg-teal {
	background: #1d4d4f;
}
.bg-gold {
	background: #8a6d00;
}
.bg-red {
	background: #7a1a1a;
}
.bg-logix {
	background: #f04b33;
}

/* PRATICA */
.prat-card {
	background: #111;
	padding: 30px;
	border-radius: 20px;
	border-bottom: 4px solid #f04b33;
	height: 100%;
}
.prat-card p {
	font-size: 0.9rem;
	margin: 0;
	opacity: 0.9;
}
.prat-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #fff;
}
.prat-card:hover {
	border-bottom: 6px solid #7a1a1a;
	transform: translateY(-5px);
}

/* DEPOIMENTOS */
.testi-card {
	background: #111;
	padding: 30px;
	border-radius: 20px;
	border-bottom: 4px solid #ffc107;
	height: 100%;
}

/* FORMULÁRIO - CORREÇÃO DE ACESSIBILIDADE */
.form-box {
	background: #000;
	border: 1px solid #333;
}
.lp-input {
	background: #fff !important;
	border-radius: 10px !important;
	border: none !important;
	padding: 12px !important;
	color: #000 !important;
	font-weight: 600;
}

/* COR VERDE OTIMIZADA PARA CONTRASTE (Padrão AA) */
.btn-success-lp {
	background-color: #198754;
	color: #fff;
	border: none;
	border-radius: 50px;
	transition: 0.3s;
}
.btn-success-lp:hover {
	background-color: #157347;
	transform: scale(1.05);
	color: #fff;
}
/* DEPOIMENTOS / RESULTADOS REAIS */
.testi-card {
	background: #111;
	padding: 30px;
	border-radius: 20px;
	/* Define uma borda inicial sutil em todos os lados para a transição funcionar */
	border: 1px solid rgba(255, 255, 255, 0.1);
	/* Mantém o detalhe da borda amarela embaixo que você já tinha */
	border-bottom: 4px solid #ffc107;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testi-card:hover {
	transform: translateY(-10px);
	/* Agora a borda muda de cor em todos os lados */
	border-color: #ffc107;
	box-shadow: 0 15px 35px rgba(255, 193, 7, 0.15);
}

.img-container {
	height: 450px; /* Aumentamos para caber melhor os prints de celular */
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
	background-color: #000; /* Fundo preto para as sobras laterais não ficarem brancas */
	display: flex;
	align-items: center;
	justify-content: center;
}

.img-container img {
	width: 100%;
	height: 100%;
	/* MUDANÇA AQUI: contain mostra a imagem inteira sem cortar nada */
	object-fit: contain;
	transition: transform 0.6s ease;
}

/* O zoom continua funcionando, mas agora dentro do modo contain */
.testi-card:hover .img-container img {
	transform: scale(1.1);
}

.chat-quote p {
	line-height: 1.6;
	margin-top: 15px;
}
