/* 0. Configurações Gerais
----------------------------*/
html, body {width: 100%; position: relative; padding: 0; margin: 0;}
html {scroll-behavior: smooth;}
body {font-family: 'Quicksand', sans-serif;}

p:last-child {margin: 0;}
i {font-style: italic;}
b {font-weight: bold;}
a {color: inherit;}
a, button {transition: .4s ease-in-out; -webkit-transition: .4s ease-in-out;}
a:hover {text-decoration: none; color: #72160D;}
button:focus {outline: none;}
img {width: 100%; height: auto; object-fit: contain; vertical-align: middle;}

h1, h2, h3, h4, h5, h6, p, a, i, b, span, em, small {-webkit-font-smoothing: antialiased;}
h1 {font-size: 26px;}
h2, h3, h4, h5, h6 {font-size: 20px;}
p {font-size: 16px; line-height: 1.5;}

.section {padding: 65px 0;}

.titulo {font-weight: 900; text-align: center; text-transform: uppercase; padding-bottom: 0.25rem; position: relative;}
.titulo::before {content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 2px; width: 150px; background: #B91000; border-radius: 10px;}

.btn {font-weight: 600; text-transform: uppercase; padding: 0.375rem 1rem;}
.btn.default {background: #B91000; color: #FFF;}
.btn.default:hover {box-shadow: 0 0 5px 0 #B91000;}

.whatsapp {position: fixed; bottom: 15px; right: 15px; z-index: 9;}
.whatsapp a {display: flex; display: -ms-flexbox; width: 75px; height: 75px; background: #25D366; border-radius: 100%; padding: 15px; position: relative; box-sizing: border-box;}
.whatsapp a::before, .whatsapp a::after {content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: transparent; border: 5px solid #25D366; border-radius: 100%; animation: growingCircle 1s infinite; z-index: -1;}
.whatsapp a::after {animation-delay: .6s;}
.whatsapp a:hover {opacity: .75;}
.whatsapp a img {width: 100%; height: 100%; object-fit: contain; object-position: center; margin-left: 2px;}

@keyframes growingCircle {
	from {width: 100%; height: 100%;}
	to {width: 125%; height: 125%;}
}

/* 1. Navbar
--------------*/
.navbar {background: #72160D; color: #FFF; transition: .4s ease-in-out; -webkit-transition: .4s ease-in-out;}
.navbar.scrolled {background: rgba(114, 22, 13, .85); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .4);}
.navbar .navbar-toggler {color: #FFF;}
.navbar .navbar-brand {padding: 0;}
.navbar .navbar-brand .brand {width: auto; height: 110px;}
.navbar .navbar-nav .nav-item {text-align: center;}
.navbar .navbar-nav .nav-item .nav-link {text-transform: uppercase;}
.navbar .navbar-nav .nav-item .nav-link:hover {color: inherit; opacity: .75;}

/* 2. Footer
--------------*/
footer {background: #B91000; color: #FFF; padding: 5px 0;}
footer p {font-size: 12px;}
footer a {font-weight: 900;}
footer a:hover {color: inherit; opacity: .75;}

#info .box{border: solid 3px #72160D; border-radius: 20px; padding: 20px;}
#info .box h1 {color: #B91000;}

/* MODAL */
#myModal .modal-title {font-size: 20px; font-weight: 600; text-transform: uppercase; color: #72160D; text-align: center;}
#myModal .modal-body p {text-align: justify;}
#myModal .modal-body h2 {color: #666;}