:root {
	--primary-color: #621b1d;
	--accent-color: #cb960f;
}

body {
	margin: 0;
	background-color: var(--primary-color);
	color: #fff;
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 400;
	font-size: 16px;
	min-height: 100vh;
}

.logo {
	padding-top: 5vh;
}

.logo,
.circle {
	padding-bottom: 20px;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100svh;
}

.section {
	text-align: center;
}

span {
	display: block;
	font-size: 0.65em;
}

.contact.section {
	background-image: url('Assets/Img/brevemente_Amizade_barra.jpg');
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
}
.contact.section > div {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-content: center;
}

.contact.section > div .tel{
	border: solid var(--primary-color);
	border-width: 0 1px 0 0;
}

.contact.section > div .adress{
    border: solid var(--primary-color);
	border-width: 0 0 0 1px;
}

.contact.section .adress{
    text-align: left;
}

.contact.section .tel{
    text-align: right;
}

.contact.section > div > div {
	margin: 2rem 0;
	padding: 0.5rem 2rem;
}

.contact a:hover {
	color: #fff;
}

.tel span {
	font-size: 0.5em;
}


.circle .circle-content{
    position: absolute;
	color: var(--primary-color);
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	max-width: 350px;
}

h1 {
	font-size: clamp(1rem, 3vw, 1.1rem);
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.2;
}

.circle p {
    margin: 0.2em 0 0 0;
	color: #fff;
	font-size: 0.75em;
	text-transform: uppercase;
}

.contact p,
.presentation p {
	padding: 0;
	margin: 0;
}

a,
p {
	font-size: clamp(1rem, 3vw, 1rem);
	color: var(--primary-color);
	text-decoration: none;
}

.email a, .tel a{
    font-size: 1.1rem;
}

.presentation {
	padding: 25px 0 50px 0;
}

.presentation-link {
	margin: 25px 0;
}

.presentation-link a {
	color: var(--accent-color);
	font-weight: 400;
	box-shadow: inset 0 0 0 0 #ffffff;
	padding: 0px 1.25rem;
	transition:
		color 0.3s ease-in-out,
		box-shadow 0.3s ease-in-out;
	padding: 12px 20px;
	border-radius: 8px;
	background-color: var(--primary-color);
}

.presentation-link a:hover {
	color: var(--primary-color);
	box-shadow: inset 300px 0 0 0 #ffffff;
}

.logo,
.circle {
	text-align: center;
}

.circle {
	position: relative;
}

.logo img,
.circle img {
	max-width: 85%;
}

@media (max-width: 768px) {
	.contact.section > div {
		grid-template-columns: 1fr;
	}
    
    .contact.section > div > div{
        margin: 0rem;
        padding: 0.5rem;
    }
	.contact.section > div > div:not(:last-child) {
	    border: solid var(--primary-color);
	    border-width: 0 0 1px 0 !important;
	}
	
	.contact.section > div > div:last-child{
	     border-width: 0 !important;
	}
	
    .contact.section > div > div{
        text-align: center !important;
    }
    
    .contact.section{
        padding: 2rem 0;
    }
    
}
