/*GENERAL*/
html {
 scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #F6F6F6;
}

section {
  width: 100%;
  display: inline-block;
}

iframe{
  max-width: 100%;
}


/*WHATS BUTTON */
a#whats-float-button {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9999;
}

a#whats-float-button img {
  width: 64px;
}
/*MENU*/
nav#menu {
  transition: 0.3s linear;
  position: fixed;
  display: inline-block;
  width: 100%;
  top: 20px;
  z-index: 999999999;
  background: transparent;
  right: 0;
}


nav#menu ul {
  margin: 0;
  padding: 15px;
  list-style: none;
}

nav#menu ul li {
  width: 13%;
  float: left;
  text-align: center;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-left: 15px !important;
}

nav#menu ul li a {
  font-family: 'Montserrat';
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

nav#menu ul li:hover {
  border-bottom: 3px solid #B00D15;
  transition: 0.1s linear;
  margin: 0;
}

nav#menu ul li.link-logo:hover{
  border-bottom: 3px solid #fff !important;
}

nav#menu.active {
  transition: 0.3s linear;
  position: fixed;
  display: inline-block;
  width: 100%;
  top: 0;
  z-index: 9999;
  background: #fff;
  right: 0;
}

li.link-logo a img {
  width: 200px;
}

nav#menu ul li.link-logo:hover {
  border-bottom: 0 !important;
}

nav#menu.active >ul>li>a img {
  filter: invert(1);
  width: 200px;
}

nav#menu.active ul {
  width: 1236px;
  margin: 0 auto;
}

nav#menu.active ul li a {
  color: #000;
}

nav#menu.active {
  padding-top: 10px;
  padding-bottom: 20px;
}

nav#menu.active >ul>li>a img {
  filter: invert(0);
  width: 200px;
}


.formatted-content{
  width: 1236px;
  max-width: 100%;
  margin: 0 auto;
}

/*SLIDER*/

.slider-mark-mobile {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100vh;
  background: rgba(1,1,1,0.6);
  top: 0;
  z-index: 9;
  align-items: center;
  justify-content: center;
}

.slider-mark-mobile img {
  display: none;
}


.full-size{
  width: 70% !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

img#down-arrow {
  display: none;
  position: absolute;
  bottom: 90px;
  left: 43%;
  z-index: 99999;
  padding: 0px;
  margin: 0px;
  animation:down-arrow-animate 1.5s infinite;
  transition:0.3s cubic-bezier(0.42, 0, 0.64, 0.16);
}

@keyframes down-arrow-animate {
  0%   {
    bottom:90px; 
    opacity:1; 
    transition:0.3s linear;
  }

  100%  {
    bottom:76px; 
    opacity:0.8; 
    transition:0.3s linear;
  }

  60%  {
    bottom:54px; 
    opacity:0.6; 
    transition:0.3s linear;
  }
  90%  {
    bottom:48px; 
    opacity:0.4; 
    transition:0.3s linear;
  }
  100% {
    bottom:40px; 
    opacity:0.2; 
    transition:0.3s linear;
  }
}

/*TITLE SECTIONS*/

h2.secao-titulo img {
  width: 80px;
  margin-right: 15px;
  border-right: 3px solid #b11319;
  padding-right: 20px;
}

h2.secao-titulo {
  font-family: 'Montserrat';
  display: flex;
  align-items: center;
  color: #b11319;
  font-size: 28px;
}

h2.secao-titulo {
  margin-top: 80px;
  margin-bottom: 0;
}

/*ApresentaÃ§Ã£o*/

div#apresentacao-content {
  font-family: 'Lato';
  /* padding: 20px 100px; */
  font-size: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

/*AtuaÃ§Ã£o*/

div#atuacao-boxes {
  display: block;
  width: 1103px;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.atuacao-box {
  height: 200px;
  background: #c4122d;
}

.atuacao-box img {
  width: 80px;
  filter: invert(1);
}

.atuacao-box p {
  color: #fff;
  font-size: 18px;
  font-family: 'Lato';
  word-break: break-word;
  font-weight: 600;
  padding: 5px;
}

.dark-red {
  background: #b01028 !important;
}

.atuacao-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:0.2s linear;
}

div#atuacao-boxes div.d-all {
  padding: 35px;
  margin: 0 auto;
}

.atuacao-box:hover {
 background:#fff!important;
 transition:0.2s linear;
 cursor:pointer;
}
.atuacao-box:hover p {
  color: #000 !important;
}

.atuacao-box:hover img {
  filter: invert(0) !important;
}

/*Equipe*/

div#equipe-boxes-grid .d-1of4 {
    min-height: 415px;
}

.popupS-content {
  width: 90% !important;
  position: relative;
  z-index: 99999999;
}

.popupS-layer.popupS-open {
  width: 100% !important;
  margin: 0 auto !important;
}

button#popupS-button-ok {
  width: 100%;
  background: #b11319;
  border: 1px solid #000;
  font-size: 18px;
  font-family: 'Montserrat';
  color: #fff;
  height: 40px;
  transition: 0.3s linear;
  cursor: pointer;
}

button#popupS-button-ok:hover {
  transition: 0.3s linear;
  background: #fff;
  color: #b11319;
  font-weight: bold;
  border: 2px solid #b11319;
}

.equipe-box-thumbnail img {
  width: 100%;
  height:auto;
  object-fit: cover;
}

div#equipe-boxes {
  display: block;
  width: 1103px;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

div#equipe-boxes div.d-all {
  padding: 35px;
  margin: 0 auto;
}

.equipe-box-nome {
  background: #b01028;
  padding: 10px;
  color: #fff;
  font-size: 22px;
}

.equipe-box {
  cursor: pointer;
  background: #b01028;
  margin-top: 20px;
  box-shadow: 5px 5px 3px 0px rgba(0, 0, 0,0.5);
}

.equipe-box-nome p {
  margin: 0;
  font-size: 18px;
  font-family: 'Lato';
}

.equipe-box-thumbnail {
  position: relative;
}

.equipe-box-info {
  transition: .3s linear;
  position: absolute;
  background: rgba(0,0,0,0.6);
  display: flex;
  width: 100%;
  top: 0;
  height: 98.9%;
  opacity: 0;
}

.equipe-box-info img {
  object-fit: none;
  filter: invert(1);
  z-index: 99999;
}

.equipe-box-thumbnail:hover .equipe-box-info {
  opacity: 1;
  transition: .3s linear;
}

.profile-image, .profile-info {
  text-align: center;
}

.profile-image img {
  border: 3px solid #b01028;
  background: #b01028;
}

h2.profile-adv-name {
  font-family: 'Lato' !important;
  font-size: 18px;
}

.profile-info {
  font-family: 'Lato';
}

.profile p {
  font-family: 'Montserrat';
  word-break: break-word;
}

.profile h2 {
  font-family: 'Lato';
}

/*Acompanhe-nos*/

h2#no-posts {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-family: 'Montserrat';
    margin: 100px auto;
    color: #fff;
}

div#insta-logo a {
  width: 20%;
  float: left;
  text-align: center;
}

div#insta-logo {
  display: flex;
  justify-content: center;
}

div#insta-logo * {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 20px;
}

div#insta-logo img {
  width: 64px;
  margin-right: 20px;
  margin-bottom: 0;
}

div#insta-logo a {
  color: #fff;
  text-decoration: underline;
}
section#acompanhe {
  background: #b01028;
}

h2.secao-titulo.titulo-centro.logo-branco{
  justify-content: center;
  color: #fff;
}

h2.secao-titulo.logo-branco{
  color: #fff;
}

.logo-branco img {
  border-color: #fff;
  filter: brightness(100);
}

/*Contato*/

section#contato{
  background: #000;
  color: #fff;
  font-family: 'Lato';
  padding-bottom: 50px;
}

form#contato-form-sender {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

form#contato-form-sender input, form#contato-form-sender textarea {
  width: 60%;
  height: 40px;
  margin-top: 10px;
  color: #fff;
  background: #000;
  border: 0;
  border-bottom: 1px solid #fff;
}

form#contato-form-sender textarea{
  height:200px !important;
  border:1px solid #fff;
  margin-top:30px;
}

section#contato a {
  text-decoration: none;
  color: #fff;
}

input[type="text"]::placeholder, input[type="email"]::placeholder,textarea::placeholder {
  font-size: 18px;
  color: #fff;
}

textarea::placeholder{
  padding: 5px;
}

form#contato-form-sender button {
  width: 61%;
  margin-top: 30px;
  height: 40px;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s linear;
}

form#contato-form-sender button:hover {
  transition: 0.3s linear;
  background: #fff;
  color: #000;
}

div#form-contato {
  margin-top: 60px;
}


/*FOOTER*/

div#footer {
  background: #b01028;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}


/*ATUACAO POPUP*/

.atuacao-popup img {
  width: 64px;
}

.atuacao-popup > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

p.atuacao-popup-text {
  font-size: 18px;
  font-family: 'Lato';
}

h2.atuacao-popup-title {
  font-size: 24px;
  font-family: 'Montserrat';
}

/* SWIPER */

:root {
  --swiper-theme-color: #b11319 !important;
}

/*acompanhenos*/
div#acomapanhe-nos img {
  width: 90%;
  margin-top: 30px;
  padding: 5%;
  height: 350px;
  object-fit: cover;
}

div#mySidebar, div#mobile-menu {
  display: none;
}

div#apresentacao-content p {
  width: 80%;
}

/* MOBILE GRID STYLES */
@media (max-width: 767px) {
  a#whats-float-button {
    display: none;
  }
  /*Slider*/
  img#down-arrow {
    display: block !important;
  }
  .slider-mark-mobile {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100vh;
    background: rgba(1,1,1,0.6);
    top: 0;
    z-index: 9;
    align-items: center;
    justify-content: center;
  }

  .slider-mark-mobile img {
    display: initial;
  }
  /*Menu*/
  div#mobile-menu.active {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
  }

  img.logo-branco.logo-menu-mobile.inverted {
    /* filter: invert(1); */
    width: 42px;
  }

  div#mySidebar{
    display: block;
    background: #b11319;
  }

  div#mySidebar a {
    font-size: 22px;
    font-family: 'Lato';
    text-decoration: none;
    color: #fff;
  }

  div#acomapanhe-nos img {
    height: 200px;
  }
  
  img.logo-branco.logo-menu-mobile {
    /* filter: brightness(100); */
    width: 150px;
  }

  div#mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 0px;
  }

  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .sidebar a:hover {
    color: #f1f1f1;
  }

  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 42px !important;
    margin-left: 50px;
  }

  .openbtn {
    font-size: 48px;
    cursor: pointer;
    background-color: #b11319;
    color: white;
    padding: 0px 15px;
    border: none;
  }

  .openbtn:hover {
    background-color: #444;
  }

  #mobile-menu {
    transition: margin-left .5s;
    padding: 16px;
    height: 60px;
    background: #b11319;
  }
  nav#menu {
    display: none;
  }


  /*Titulos*/
  h2.secao-titulo {
    justify-content: center;
  }

  /*Equipe*/

  .popupS-content {
    max-width: 100% !important;
    width: 80% !important;
    margin: 0 auto;
    padding: 40px 0 !important;
    he
  }

  .popupS-layer.popupS-open {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0;
  }

  .equipe-box-thumbnail:hover .equipe-box-info {
    display: none;
  }

  #equipe-boxes-grid{
    display: inline-flex;
    max-width: 100%;
    flex-direction: row;
    overflow: scroll;
    padding: 30px 0 !important;
  }

  .equipe-box-thumbnail img {
    width: 200px;
    height: 250px;
  }

  div#equipe-boxes-grid .m-all {
    margin-right: 20px;
  }

  .equipe-box-nome {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .first-of-the-list{
    margin-left: 30px;
  }



  /*Footer*/
  div#footer {
    text-align: center;
  }

  /*Apresentação*/
  div#apresentacao-content p {
    width: 80%;
  }

  div#apresentacao-content {
    padding: 30px 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /*Contato*/

  form#contato-form-sender input, form#contato-form-sender textarea{
    width: 80%;
  }


  #maps-and-contact{
    padding: 25px;
  }

  form#contato-form-sender button{
    width: 80%;
  }

  /*Atuação*/
  div#atuacao-boxes {
    width: 80%;
    margin: 30px 0;
  }

  /*Acompanhenos*/

  div#insta-logo {
    display: block;
  }

  div#insta-logo a {
    width: 100%;
    text-align: center;
  }

  section#acompanhe h2 {
    font-size: 22px;
  }

  .m-all {
    float: left;
    width: 100%;
    padding-right: 0; 
  }
  .m-1of2 {
    float: left;
    width: 50%; 
  }
  .m-1of3 {
    float: left;
    width: 33.33%; 
  }
  .m-2of3 {
    float: left;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    width: 25%; 
  }
  .m-2of4 {
    float: left;
    width: 50%; 
  }
  .m-3of4 {
    float: left;
    width: 75%;
  } 
}

@media (min-width: 768px) and (max-width: 1029px) {
  /*Whats button */
  a#whats-float-button {
    display: none;
  }
  /*Menu*/
  div#mobile-menu.active {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
  }

  img.logo-branco.logo-menu-mobile.inverted {
    /* filter: invert(1); */
    width: 42px;
  }

  div#mySidebar{
    display: block;
    background: #b11319;
  }

  div#mySidebar a {
    font-size: 22px;
    font-family: 'Lato';
    text-decoration: none;
    color: #fff;
  }

  div#acomapanhe-nos img {
    height: 200px;
  }

  img.logo-branco.logo-menu-mobile {
    /* filter: brightness(100); */
    width: 180px;
  }

  div#mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 0px;
  }

  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .sidebar a:hover {
    color: #f1f1f1;
  }

  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 42px !important;
    margin-left: 50px;
  }

  .openbtn {
    font-size: 48px;
    cursor: pointer;
    background-color: #b11319;
    color: white;
    padding: 0px 15px;
    border: none;
  }

  .openbtn:hover {
    background-color: #444;
  }

  #mobile-menu {
    transition: margin-left .5s;
    padding: 16px;
    height: 60px;
    background: #b11319;
  }
  nav#menu {
    display: none;
  }

  .equipe-box-thumbnail:hover .equipe-box-info {
    display: none;
  }

  #equipe-boxes-grid{
    display: inline-flex;
    max-width: 100%;
    flex-direction: row;
    overflow: scroll;
    padding: 30px 0 !important;
  }

  .equipe-box-thumbnail img {
    width: 200px;
    height: 250px;
  }

  div#equipe-boxes-grid .m-all {
    margin-right: 20px;
  }

  .equipe-box-nome {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .first-of-the-list{
    margin-left: 30px;
  }

  .formatted-content {
    width: 836px;
  }


}

@media (min-width: 768px) and (max-width: 1029px) {
  .t-center{
    text-align: center;
  }
  .t-all {
    float: left;
    width: 100%;
    padding-right: 0; 
  }
  .t-1of2 {
    float: left;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    width: 25%; 
  }
  .t-3of4 {
    float: left;
    width: 75%; 
  }
  .t-1of5 {
    float: left;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    width: 60%; 
  }
  .t-4of5 {
    float: left;
    width: 80%; 
  } 
}

@media (min-width: 1030px) {
  .d-all {
    float: left;
    width: 100%;
    padding-right: 0;
  }

  .d-1of2 {
    float: left;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    width: 23%;
    margin-left: 2%;
  }
  .d-3of4 {
    float: left;
    width: 75%; 
  }
  .d-1of5 {
    float: left;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    width: 40%; 
  }
  .d-3of5 {
    float: left;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    width: 28.5714286%; 
  }
  .d-3of7 {
    float: left;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    width: 85.7142857%; 
  }
  .d-1of8 {
    float: left;
    width: 12.5%; 
  }
  .d-1of9 {
    float: left;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    width: 10%; 
  }
  .d-1of11 {
    float: left;
    width: 9.09090909091%; 
  }
  .d-1of12 {
    float: left;
    width: 8.33%; 
  } 
}

.last-col {
  float: right;
  padding-right: 0 !important; 
}