/* CSS Document */
/* Fonte MuseoModerno*/
@font-face {
	font-family: MuseuModerno;
	src: url("../../fontes/MuseoModerno.ttf");
}

/* Formatação Body*/
body {
	font-family: MuseoModerno, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	background: #f3f3f3;
}

/* Formatação H e p */
h1, h2, h3, h4, h5, h6, p {
	color: #6b7266;
}

/********** Formataçao das sections e divs com id **********/

/* Formatação link em destaque */
#home #navprincipal .home a, 
#eu #navprincipal .eu a, 
#procedimentos #navprincipal .procedimentos a, 
#antes #navprincipal .antesDepois a, 
#blog #navprincipal .blog,
#contato #navprincipal .contato a
{
	color: #6c7367;
	font-weight: bold;
}

/* Formatação ids */
#secaoUm {
	background: #dfe3ce;
	margin-top: 110px;
}

#secaoBlog {
	background: #f3f3f3;
	margin-top: 130px;
}

#servicos {
	padding: 40px 0 13px 0;
}

#outrosServicos {
	background: #dfe3ce;
	margin-bottom: 40px;
}

#endereco {
	background: #f4f4f4;
	border-top: 1px solid #f4f4f4;
	padding: 13px 0;
}

#fotoAtendimento {
	background: #dfe3ce;
	margin-bottom: 13px;
}


/********** Início formataçao das sections e divs com class **********/

.WhatsAppFixo {
	position: fixed;
	bottom: 15px;
	right: 20px;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	z-index: 100;
	
	animation-name: pulsar;
	animation-duration: 1.3s;
	animation-timing-function: ease-out;
	animation-delay: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-fill-mode: none;
	animation-play-state: running;
}

/* Início do start para animation-name pulsar */
@keyframes pulsar {
	0% {
		width: 50px;
	}
	100% {
		width: 57px;
	}
}
/* Fim do start para animation-name pulsar */

.formateOutrosServicos {
	margin-top: 13px;
}

.hCentro {
	text-align: center;
}

p.margemNegativa {
	margin-top: -7px;
}

.btn-custom {
	color: white;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	transition: background 0.4s, color 0.4s;
	padding: 10px 15px;
}

.btn-verde {
	background: #ff007f;
}

.btn-custom:hover {
	background: #008000;
	color: #ffffff;
}

.h4antesdepois {
	text-align: center;
}

.avatar {
	border: 1px solid #6c7266;
	border-radius: 50%;
}

.fundoFotosAntesDepois {
	padding: 20px;
	background: #dfe3ce;
	border-radius: 30px;
}

.card {
  border-radius: 20px;
}

.dataPublicacao {
	font-size: 13px;
}

.modalContentSucesso{
	background: #6c7266;
	border-radius: 15px;
}

.modalContentValidar {
	border-radius: 15px;
}

.creditoFotos {
	font-size: 10px;
}

.rodape {
	font-size: 12px;
}

/********** Fim formataçao das sections e divs com class **********/

/********** Início do Media queries **********/

/* Dispositivos X-Small (celulares retrato, menos de 576px)
Nenhuma consulta de mídia para `xs`, pois este é o padrão no Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 375px) { }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { }

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { }

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { }


/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.h1TopoReduzido {
		font-size: 35px;
	}
	
	.h1Reduzido {
		font-size: 25px;
	}
	
	.h3Reduzido {
		font-size: 23px;
	}
	
	.h4Reduzido {
		font-size: 20px;
	}
	
	.tagPReduzido {
		font-size: 0.9375em;
	}
	
	p.agendar a {
		font-size: 13px;
	}
	
	.tamanhoWhatsApp {
		width: 40px;
	}
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
	.h1Reduzido {
		font-size: 33px;
	}
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
	p.agendar a {
		font-size: 13px;
	}
	
	.h1Reduzido {
		font-size: 27px;
	}
	
	.h3Reduzido {
		font-size: 20px;
	}
	
	.h4Reduzido {
		font-size: 20px;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	
}

/********** Fim do Media queries **********/


/********** Início configuração aviso cookies **********/

.cookies-msg {
	width: 80%;
	background-color: #d1e6d1;
	position: fixed;
	bottom: 5%;
	left: 50%;
	transform: translate(-50%);
	border-radius: 15px;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	display: none;
}

.cookies-msg.mostrar {
	display: block;
}

.cookies-msg .cookies-txt {
	padding: 10px 20px 0;
}

/********** Fim configuração aviso cookies **********/



