/*--------------------------------------------------------------
# Padrão
--------------------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
:root{
    --corprimaria:#c20000;
    --corsecundaria: #3D3333;
}

/*--------------------------------------------------------------
# Google Fonts
--------------------------------------------------------------*/
.roboto-uniquifier {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*--------------------------------------------------------------
# Convenientes
--------------------------------------------------------------*/
.centralizar-01{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.centralizar-02{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
section {
  padding: 3% 0 0 1%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navbar-brand img{
    width: 70px;
}
.navbar-brand h1{
    font-size: 14px;
    font-weight: bold;
    color: var(--corprimaria);
}
.active{
    color: var(--corprimaria) !important;
}
.nav-link{
    color: var(--corsecundaria);
}
.nav-link:hover{
    color: var(--corprimaria);
}
.redes-sociais{
    display: flex;
    flex-direction: row;
}
.dropdown-menu a:hover{
    background-color: var(--corprimaria);
    color: white;
}

/*--------------------------------------------------------------
# Banner AAF
--------------------------------------------------------------*/
.floresta-titulo{
    margin-top: 3%;
}
#floresta-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: var(--corsecundaria);
}
#floresta-title h1::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--corprimaria);
  margin: 4px 10px;
}
#floresta-title h1::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--corprimaria);
  margin: 4px 10px;
}
#floresta-title h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--corprimaria);
}
#floresta-title h2 {
    font-size: 14px;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 2px;
    color: var(--corsecundaria);
}

/* ==============================================================
# Footer
================================================================*/
#footer{
    background-color: var(--corprimaria);
}
#footer img{
    width: auto;
    height: 70px;
}
#footer h1{
    color: white;
    font-size: 14px;
    font-weight: bold;
}
#footer h2{
    color: white;
    font-size: 12px;
}
#footer .redes-sociais a{
    font-size: 18px;
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}
#footer .redes-sociais i{
    color: white;
    font-size: 24px;
}
#footer h3{
    color: #292929;
    font-size: 12px;
    font-weight: bold;
    margin: 2%;
}
#footer a {
    text-decoration: none;
}
#footer a p{
    color: white;
    font-size: 10px;
    margin: 1%;
    line-height: 2;
    text-indent: 7%;
}
#footer a p:hover{
    font-size: 11px;
    margin: 2%;
}
#footer .col-md-2{
    margin-top: 3%;
    width: 150px !important;
}

/* ==============================================================
# Botão WhatsApp
================================================================*/
.float i{
	color:#fff;
}
.float i:hover{
	color:#25d366;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
 	font-size:30px;
	box-shadow: 2px 2px 3px #999;
  	z-index:100;
}
.float:hover{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#fff;
	color:#25d366;
	border-radius:50px;
	text-align:center;
 	font-size:30px;
	box-shadow: 2px 2px 3px #999;
  	z-index:100;
}
.my-float{
	margin-top:16px;
}

/*============================================================================
Breadcrumbs
=============================================================================*/
.breadcrumbs {
    padding: 0.1% 0;
    background: var(--corprimaria);
}
.breadcrumbs a{
    text-decoration: none;
    color: #2f2f2f;
}
.breadcrumbs li{
    color: white;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: bold;
    color: white;
}
.breadcrumbs li a:hover {
    color: white;
    transition: 2s;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs ol li+li {
    padding-left: 10px;
}
.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

/* ==============================================================
# Newsletter
================================================================*/
#newsletter{
  padding: 50px 0;
  background: #f6e2e2;
  text-align: center;
  font-size: 15px;
}

#newsletter h2 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--corprimaria);
}
#newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--corprimaria);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#newsletter form input[type=submit]:hover {
  background: var(--corsecundaria);
}
