@charset "utf-8";
/* CSS Document */

html{
	height:100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	background:url(../images/pattern.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: repeat;
	box-sizing: border-box;
	color: #AAA;
}

*, *::before, *::after {
	box-sizing: inherit;
}

a {
	color: #AAA;
	text-decoration: none;
}

a:link,
a:visited,
a:active {
	color: #AAA;
}

a:hover {
	color: #444;
	text-decoration: underline;
}

a:focus {
	outline: 2px solid #FFF;
	outline-offset: 2px;
}

h1, h2, h3{
	margin: 0;
	font-weight: normal;
}

/* Screen reader only class */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}


.img{
	margin:0 10px 0 40px;
	vertical-align:-50%;
	max-width: 100%;
	height: auto;
}

/* Responsive images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

#base{
	position:absolute;
	width:100%;
	height:100%;
	overflow:auto;
	margin:0;
	z-index:1;
}

#light{
	position:absolute;
	width:100%;
	height:100%;
	opacity:0.2;
	-moz-opacity: 0.2;
	filter: alpha(opacity=20);
	background: -webkit-gradient(radial, center center, 0, center center, 460, from(#CCC), to(#666));
	background: -webkit-radial-gradient(circle, #FFF, #666);
	background: -moz-radial-gradient(circle, #FFF, #666);
	background: -ms-radial-gradient(circle, #FFF, #666);
	background: radial-gradient(circle, #FFF, #666);
	z-index:0;
	pointer-events: none;
}

#corpo{
	position:relative;
	width: 100%;
	max-width: 1200px;
	margin:0 auto;
	padding: 20px;
	font-family: 'Dosis', Arial, sans-serif;
	font-size: 20px;
	text-align:center;
	color:#AAA;
	box-sizing: border-box;
}

#cabecalho {
	position:relative;
	display:block;
	margin:50px auto;
	padding: 0 20px;
}

#cabecalho img {
	margin: 0 auto;
	max-width: 350px;
	width: 100%;
	height: auto;
}

#centro {
	margin: 40px auto;
	padding: 20px;
}

.especialidade {
	margin: 0;
	font-size: 1.25em;
	line-height: 1.6;
}

.crm {
	display: block;
	margin-top: 10px;
	font-family: 'Dosis', Arial, sans-serif;
	font-weight: 700;
}

#rodape{
	position:relative;
	display:block;
	margin:100px auto 50px;
	padding: 20px;
	width: 100%;
	max-width: 1000px;
}

.contato {
	font-style: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	font-size: 1.2em;
	line-height: 1.6;
}

.contato-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

.contato-item .img {
	margin: 0;
	vertical-align: middle;
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.contato-item svg {
	fill: #7A9B7A;
}

.contato-item a {
	color: #AAA;
}

.contato-item a:hover {
	color: #444;
	text-decoration: underline;
}

.contato-item a:hover svg,
.contato-item:hover svg {
	fill: #5A7A5A;
}

/* Tablet Styles */
@media screen and (min-width: 768px) {
	#corpo {
		font-size: 22px;
	}
	
	.contato {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
	}
	
	.contato-item {
		flex-wrap: nowrap;
	}
	
	.contato-item .img {
		margin: 0 10px 0 0;
	}
	
	.especialidade {
		font-size: 1.35em;
	}
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
	#corpo {
		font-size: 20px;
	}
	
	.contato {
		flex-direction: row;
		gap: 50px;
	}
	
	.contato-item .img {
		margin: 0 10px 0 40px;
	}
	
	#cabecalho {
		margin: 50px auto;
	}
	
	#rodape {
		margin-top: 100px;
	}
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
	#corpo {
		font-size: 18px;
		padding: 15px;
	}
	
	#cabecalho {
		margin: 30px auto;
		padding: 0 15px;
	}
	
	#cabecalho img {
		max-width: 280px;
	}
	
	#centro {
		margin: 30px auto;
		padding: 15px;
	}
	
	.especialidade {
		font-size: 1.1em;
	}
	
	.contato {
		font-size: 1.1em;
		gap: 25px;
	}
	
	.contato-item {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
	
	.contato-item .img {
		width: 40px;
		height: 40px;
		margin: 0;
	}
	
	#rodape {
		margin-top: 60px;
		padding: 15px;
	}
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
	#corpo {
		font-size: 16px;
		padding: 10px;
	}
	
	#cabecalho img {
		max-width: 220px;
	}
	
	.especialidade {
		font-size: 1em;
	}
	
	.contato {
		font-size: 1em;
		gap: 20px;
	}
	
	.contato-item .img {
		width: 35px;
		height: 35px;
	}
}

/* Landscape Orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
	#cabecalho {
		margin: 20px auto;
	}
	
	#rodape {
		margin-top: 40px;
	}
}

/* Print Styles */
@media print {
	#light {
		display: none;
	}
	
	body {
		background: white;
	}
	
	#corpo {
		color: #000;
	}
	
	.contato-item a {
		color: #000;
	}
}