body {
	font-family: 'Montserrat', Arial, verdana, sans-serif;
	background-color: white;
}

h1 {
	color: #212733;
}

a {
	text-decoration: none;
}

#cabecalho {
	background-color: #212733;
	/* Cor de fundo cinza escuro */
}

#cabecalho .row {
	display: flex;
	justify-content: space-between;
}

#cabecalho .col-md-4 {
	color: #fff;
	/* Cor do texto branca */
	display: flex;
	align-items: center;
	/* Alinha o conteúdo verticalmente */
	font-size: 16px;
	/* Tamanho do texto */
}

#cabecalho .col-md-4 i {
	font-size: 28px;
	/* Aumenta o tamanho dos ícones */
	margin-right: 8px;
	/* Espaçamento entre o ícone e o texto */
}

#cabecalho .col-md-4 .bi-whatsapp,
#cabecalho .col-md-4 .bi-instagram {
	font-size: 32px;
	/* Aumenta o tamanho dos ícones do Instagram e WhatsApp */
	margin-right: 10px;
	/* Espaçamento entre os ícones */
}

#atendimento {
	background-color: #2b3240;
}

/* Ocultar o horário em telas médias */
@media (max-width: 992px) {
	#cabecalho .col-md-4:nth-child(2) {
		display: none;
		/* Esconde o horário */
	}
}

/* Ocultar 'Fale conosco' e o número de telefone em telas pequenas */
@media (max-width: 768px) {
	#cabecalho .col-md-4:nth-child(1) {
		display: none;
		/* Esconde 'Fale conosco' e o número */
	}

	#cabecalho .col-md-4:nth-child(3) {
		display: flex;
		/* Exibe apenas os ícones das redes sociais */
		justify-content: center;
	}
}

/* Garante que a cor dos links fique preta */
.navbar-nav .nav-link,
.navbar-nav .nav-link:visited,
.navbar-nav .nav-link:active {
	color: black !important;
}


.navbar-toggler-icon {
	filter: invert(1);
}

.card {
	border: 0;
	background-color: #212733;
	color: white;
	margin-top: -20px;
	/* Mantém o efeito de sobreposição */
	position: relative;
	/* Posiciona o card em relação ao seu contêiner */
	z-index: 10;
	/* Garante que o card ficará acima dos elementos anteriores */
	border-radius: 0;
	min-height: 300px;
	max-height: 300px;
}

.col-md-3 {
	margin-bottom: 80px;
}

.card-img {
	width: 25%;
	margin-top: -35px;
	border-right: 4px solid white;
	border-bottom: 4px solid white;
	border-radius: 50%;
	background-color: #212733;
	padding: 10px;
}

.card-servicos {
	margin-bottom: 20px;
	text-align: left;
	text-align: justify;
}

#rodape {
	background-color: #212733;
	color: white;
}

#rodape li {
	list-style-type: none;
}

#servicos {
	position: relative;
	background: url('../img/capa1.png') no-repeat center center/cover;
	background-attachment: fixed;
	padding: 100px 0;
	z-index: 1;
	color: black;
}

#servicos::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	/* Ajuste a opacidade aqui */
	z-index: -1;
}

.servico-card {
	background-color: black;
	padding: 20px;
	color: white;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 250px;
}

.servico-icon {
	width: 50px;
	height: 50px;
	margin-right: 15px;
}

.servico-texto {
	flex: 1;
}

.btn-fale-conosco {
	background-color: transparent;
	color: black;
	border: 2px solid black;
	padding: 10px 20px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-fale-conosco:hover {
	background-color: white;
	color: black;
}

.video-section {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.video-section video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.content {
	position: relative;
	z-index: 2;
	font-size: 2rem;
	font-weight: bold;
}

.content p {
	font-size: 1.3rem;
}

#carouselExampleFade .carousel-inner img {
	height: 400px;
	/* Ajuste a altura conforme necessário */
	object-fit: cover;
	/* Garante que a imagem cubra o espaço sem distorcer */
}

#sobre {
	background-color: #212733;
	color: white;
	padding-top: 40px;
}

footer {
	color: black;
}

/*Início página de contatos*/
.contatos-section,
.agenda-section,
.sobre-section,
.lgpd-section,
.servicos-section {
	color: black;
}

/*Fim página de contatos*/

.breadcrumb-section {
	position: relative;
	background: url(../img/capa1.png) center/cover no-repeat;
	padding: 50px 0;
}

.breadcrumb-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	/* Escurece a imagem */
}

.container {
	position: relative;
	z-index: 1;
	/* Garante que o conteúdo fique sobre o overlay escuro */
}

.breadcrumb {
	justify-content: center;
	background: transparent;
}

.breadcrumb-item a {
	color: black;
	text-decoration: none;
	font-weight: bold;
}

.breadcrumb-item.active {
	color: black;
	font-weight: bold;
}

/* Fomatando links da página de serviços
*/
.area-menu-servicos li {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 70px;
	padding-left: 3px;
	border-right: 2px solid #38a7bb;
}

.area-menu-servicos a {
	font-size: 18px;
	color: black;
	text-decoration: none;
}

.area-menu-servicos li:hover {
	color: white;
	background: #ccc;
}