* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 100%;
  color: #f7f7f7;
}

:root {
  --cor-destaque: #4f61ff;
  --cor-secundaria: #4f61ff;
  --cor-p-secundario: #34375d;
  --cor-titulo: #93abff;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  display: block;
  width: 85%;
}

img {
  max-width: 100%;
}

.space-custom {
  padding-top: 6em;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

::-webkit-scrollbar {
  width: 10px;
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #787878 !important;
  border-radius: 10px;
}

/*header*/

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  background-color: #fafafa;
  box-shadow: 0px -4px 15px -1px rgb(0 0 0 / 75%);
  border-bottom: 1px solid #b0b0b069;
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
}

.li-instagram a {
  display: flex;
}

.lang-select {
  display: flex;
  align-items: center;
}

.lang-select img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cor-titulo);
  position: relative;
  z-index: 999;
  height: 30px;
  padding: 15px 0px;
}

.top-nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}

.li-instagram svg {
  fill: var(--cor-destaque);
}

.menu-social {
  gap: 20px !important;
}

.align-itens-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 75px;
  justify-content: space-between;
}

.menu-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  height: 60px;
  grid-gap: 5px;
}

.align-logo-bar {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: var(--cor-destaque);
}

.name-brand {
  font-size: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.nav-item a {
  text-decoration: none;
  font-size: 17px;
  display: flex;
  text-align: center;
  color: var(--cor-destaque);
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border-radius: 20px;
  align-items: center;
}

.nav-item a:hover {
  background-color: var(--cor-destaque);
  color: #f7f7f7;
}

.btn-whatsapp {
  text-decoration: none;
  font-size: 17px;
  display: flex;
  text-align: center;
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border-radius: 20px;
  align-items: center;
}

.second-btn {
  background-color: #f7f7f7;
  color: var(--cor-p-secundario);
  border: none;
}

.agnd-nav {
  /*padding: 10px 15px !important; */
  color: #f7f7f7 !important;
  background-image: linear-gradient(90deg, #21762d, #39b94a) !important;
}

.nav-item .agnd-nav:hover {
  background-color: var(--cor-destaque);
}

.set-logo {
  width: 80px;
}

.social-icon {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.social-icon a {
  text-decoration: none;
  color: #f7f7f7;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--cor-destaque);
}

.pulse {
  animation: animate-pulse 3s linear infinite;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, .7), 0 0 0 0 rgba(51, 204, 102, .7)
  }

  40% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 0 rgba(51, 204, 102, .7)
  }

  80% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent
  }
}

/*Intro*/

.intro {
  position: relative;
  color: #f7f7f7;
  font-size: 18px;
  min-height: 100vh;
  padding-top: 5rem;
  background: rgb(0 0 0 / 65%) url(../images/background.jpg);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
}

#intro .container {
  padding: 40px 0px;
}

.set-btn {
  display: flex;
}

.flex-div-intro {
  display: flex;
  align-items: center;
}

.introall {
  grid-gap: 30px;
}

.p-intro {
  grid-gap: 60px;
}

.p-intro p {
  font-weight: 600;
}

.span-color-h1 {
  color: var(--cor-titulo);
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 50px;
}

.div-25 {
  width: 25%;
}

.div-35 {
  width: 35%;
}

.div-50 {
  width: 50%;
}

.div-75 {
  width: 75%;
}

.div-100 {
  width: 100%;
}

.h1-intro {
  margin-bottom: 15px;
  font-size: 4rem;
}

#intro .btn-agendar-intro {
  margin-top: 30px;
}

#intro .div-100 {
  text-align: left;
}

#intro .set-btn {
  justify-content: left;
  margin-top: 3em;
  gap: 15px;
}

.btn-agendar-intro {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  padding: 5px;
  font-size: 15px;
  font-weight: bold;
  background-color: #6aaf5d;
  color: #f7f7f7;
  transition: all .3s;
  box-shadow: 3px 3px 3px 1px #0000007d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
}

.btn-agendar-intro:hover {
  background-color: #49903b;
}

.introall .div-35 .img-psi-iza {
  display: none;
}

/*ART SOBRE*/

#art-sobre .h2-sobre {
  text-align: left;
  color: var(--cor-p-secundario);
}

#art-sobre,
#sobre-wilson {
  color: var(--cor-p-secundario);
  padding-bottom: 6em;
  background-color: ghostwhite;
}

#art-sobre .flex-div-intro,
#sobre-wilson .flex-div-intro {
  gap: 30px;
}

#art-sobre .space-div-50,
#sobre-wilson .space-div-50 {
  display: flex;
  justify-content: right;
}

#art-sobre .space-div-50 img,
#sobre-wilson .space-div-50 img {
  width: 500px;
  border-radius: 10px;
}

#art-sobre .color-special {
  color: var(--cor-secundaria);
}

#art-sobre .bottom-div-flex {
  flex-direction: row-reverse;
  /* margin-top: 10em; */
}

#art-sobre .alignment-h2 {
  color: var(--cor-secundaria);
}

#art-sobre .bottom-div-flex .space-div-50 {
  justify-content: left;
}

#sobre-wilson p {
  margin-bottom: 15px;
}

#sobre-wilson .space-div-50 {
  flex-direction: column;
  align-items: end;
  text-align: center;
}

#sobre-wilson .name-profissional {
  margin-bottom: 0;
  margin-top: 15px;
}

.p-bottom-sobre-wilson {
  font-size: 16px;
  color: #6e6e6e;
  font-style: italic;
  margin-top: 30px;
}

/*index sobre*/

.h2-sobre {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#sobre {
  color: var(--cor-p-secundario);
  padding-bottom: 6em;
  background-image: url(../images/bg-points.jpg);
  background-position: center;
  background-repeat: repeat;
}

#sobre h2 {
  margin-bottom: 1rem;
}

#sobre .h2-sobre {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--cor-destaque) !important;
  margin-left: 40px;
}

#sobre .h2-sobre::before {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-right: 0.5rem;
}

#sobre .h2-sobre::after {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-left: 0.5rem;
}

#sobre .btn-agendar-intro {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#sobre .flex-div-intro .space-div-50 {
  display: flex;
  justify-content: center;
}

.name-bottom-foto {
  text-align: center;
  width: 400px;
  margin-top: 3rem;
}

.name-profissional {
  font-weight: bold;
  font-size: 23px;
}

.right-side-sobre {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  grid-gap: 2rem;
}

.about-profissional {
  width: 400px;
  border-radius: 50%;
  box-shadow: 5px 5px 13px -1px rgb(96 96 96 / 75%);
  height: 100%;
}

.card-sobre {
  background-color: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 4px 4px 9px -3px #B4B4B4;
  border: 1px solid #e0e0e0;
}

/*algumas atuacoes*/

.title-atuacoes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 5px 12px 5px 13px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: var(--cor-destaque);
  border-radius: 20px;
  background-color: transparent;
  color: var(--cor-destaque);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 105px;
}

#atuacoes {
  color: var(--cor-p-secundario);
  background: #fafafa;
  padding-bottom: 6em;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

#atuacoes .icons-svg-atuacoes {
  width: 200px;
  fill: var(--cor-p-secundario);
}

#atuacoes .btn-agendar-intro {
  background-image: linear-gradient(90deg, #21762d, #39b94a) !important;
}

#atuacoes .set-btn {
  margin-top: 3rem;
}

#atuacoes>.set-size-img {
  text-align: right;
}

#atuacoes .flex-div-intro {
  grid-gap: 20px;
  margin-top: initial;
}

#atuacoes .h2-sobre {
  color: var(--cor-secundaria);
  text-align: center;
}

#atuacoes h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

#atuacoes .right-img {
  display: flex;
  place-content: center;
}

#atuacoes .set-size-img {
  display: flex;
  place-content: center;
}

#atuacoes .set-size-img img {
  width: 500px;
  object-fit: cover;
  box-shadow: 3px 3px 10px rgb(104 104 104);
  border-radius: 20px;
  max-height: 800px;
}

#atuacoes .reverse-flex {
  flex-direction: row-reverse;
  margin-top: 6em;
  margin-bottom: 6em;
}

.title-atuacoes2 {
  width: 105px;
}

/*Areas de atuacao*/

.atuacao-cards {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  box-shadow: 1px 1px 10px 2px #d9d9d9;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #444666;
  min-height: 430px;
}

.icon-background {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  padding: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#57597c), to(#2f314e));
  background-image: linear-gradient(180deg, #57597c, #2f314e);
  box-shadow: none;
  color: #fff;
  text-align: center;
}

.h2-indicacoes {
  color: var(--cor-p-secundario);
  text-align: center;
  margin-bottom: 3rem;
}

#indicacoes .flex-div-intro {
  grid-gap: 30px;
  display: flex;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 50px;
}

#indicacoes .p-indicacoes {
  margin-bottom: 15px;
  color: var(--cor-p-secundario);
}

#indicacoes .set-btn {
  justify-content: center;
  margin-top: 6rem;
}

#indicacoes .atuacao-cards h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

#banner-contato {
  background: rgb(0 0 0 / 70%) url(../images/banner-contato.jpg);
  color: #fff;
  padding: 6em 0px;
  margin-top: 6em;
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.flexing-banner {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.h2-banner-contact {
  margin-bottom: 3rem;
}

.wave-bottom {
  position: absolute;
  left: 0%;
  right: 0%;
  z-index: 1;
  width: 100%;
  height: 5vw;
}

.content-cards {
  padding: 25px;
}

#banner-contato .btn-agendar-intro {
  margin-top: 2rem;
}

#banner-contato .btn-agendar-intro {
  background-image: linear-gradient(90deg, #21762d, #39b94a) !important;
}

#banner-contato .btn-agendar-intro:hover {
  background-color: initial;
}

/*Contato index*/

.contact-canal {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #232323;
}

.contact-canal svg {
  fill: var(--cor-p-secundario);
  width: 24px !important;
  margin-right: 5px;
}

#form-contato {
  background: white;
}

#form-contato .div-50 {
  padding-right: 30px;
  padding-left: 30px;
}

#form-contato iframe {
  max-width: 100%;
  border: 0;
  width: 100%;
  bottom: 0;
  position: relative;
}

.h3-psico-nome {
  color: var(--cor-p-secundario);
  margin-bottom: 1em;
}

.list-contacts {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

#form-contato .flex-div-intro {
  align-items: initial;
}

#form-contato .h2-sobre {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--cor-destaque) !important;
  justify-content: center;
}

#form-contato .h2-sobre::before {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-right: 0.5rem;
}

.div-redes {
  display: flex;
  place-content: center;
}

#form-contato form {
  display: flex;
  place-content: center;
  background-color: #f1f1f1;
  padding-top: 30px;
  border-radius: 20px;
}

#form-contato .h2-sobre::after {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-left: 0.5rem;
}

.h2-contato {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--cor-p-secundario);
}

.form-index {
  position: relative;
  border-radius: 30px;
  background: #fbfbfb;
  box-shadow: 5px 5px 10px #d3d3d3;
}

.form-index h2 {
  margin-bottom: 10px;
  color: var(--cor-p-secundario);
}

.sec-formulario .flex-div-intro {
  justify-content: center;
}

.form-p {
  padding-top: initial !important;
  font-size: initial !important;
  padding-bottom: initial !important;
  margin-bottom: 15px;
}

.form-inner {
  padding: 0px 0px 40px 0px;
  text-align: center;
  /*margin-bottom: 3rem;*/
  width: 100%;
}

.form-inner input,
.form-inner textarea {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  background: #fafafa;
  font-family: 'Rubik', sans-serif;
}

.form-inner textarea {
  resize: none;
}

.form-inner label {
  color: var(--cor-p-secundario);
  float: left;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-submit {
  padding: 10px 15px !important;
  margin: 0 auto;
  margin-top: 20px;
  cursor: pointer;
}

/*Modal succes*/

.modal {
  background-color: #ffffff;
  border: 2px solid #a5a5a5;
  border-radius: 20px;
  top: 30%;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 20px;
  box-shadow: 4px 4px 10px 1px #433e3b73;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  color: var(--cor-p-secundario);
}

.p-modal {
  padding: 10px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: var(--cor-p-secundario);
}

.msg-success p {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

/*Footer*/

.footer {
  background-color: #e9e9e9;
  padding: 30px 0px;
  text-align: center;
  color: var(--cor-p-secundario);
  margin-top: -6px;
}

.name-maweb {
  text-decoration: none;
  color: #2b4b80;
}

/*Faq*/

.faq-area .title-sobre:after {
  background: #fff;
  border-radius: 0 0 20px 20px;
  content: "";
  height: -webkit-fill-available;
  left: 0;
  margin: 0 2px 2px;
  position: absolute;
  top: 0;
  width: -webkit-fill-available;
  z-index: -1;
}

.faq-area .thumb {
  text-align: center;
}

.faq-accordion {
  margin-top: 20px;
}

.faq-accordion .active .svg-drop {
  transform: rotate(90deg);
}

.faq-area .h2-sobre {
  text-align: center;
  color: var(--cor-p-secundario);
}

.faq-area .accordion {
  color: #f7f7f7;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  background: #49989b;
  border: 0;
  box-shadow: 0 4px 20px rgba(8, 12, 36, .08);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
}

.faq-area .active {
  background: #226063;
  color: #fff;
}

.faq-area .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-area .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-area .panel p {
  color: var(--cor-p-secundario);
}

.box-faq {
  border: 1px solid #efefef;
  box-shadow: 1px 1px 10px 2px #d9d9d9;
}

/* #perguntas-freq {
  background: url(../images/background-custom.jpg);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

/*Responsivo*/

@media only screen and (min-width: 1600px) {
  .atuacao-cards {
    min-height: 485px;
  }
}

@media only screen and (max-width: 1080px) {
  .set-logo {
    width: 65px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 25px;
    margin-right: 45px;
  }

  .intro {
    background-attachment: initial;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .h2-sobre {
    text-align: center !important;
  }

  #intro .div-100 {
    text-align: center;
  }

  #intro .set-btn {
    margin-top: 20px;
    gap: 20px;
  }

  #art-sobre {
    padding-bottom: 3em;
  }

  #sobre-wilson {
    padding-bottom: 3em;
  }

  #sobre-wilson .flex-div-intro {
    margin-bottom: initial !important;
    margin-top: initial !important;
  }

  .last-p-wilson {
    margin-bottom: initial !important;
  }

  .menu-nav {
    position: fixed;
    left: -100%;
    top: 75px;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    opacity: 0;
    height: auto;
    background-color: #ffffff;
    padding: 30px 0px;
  }

  .list-contacts {
    place-items: center;
  }

  .menu-nav.active {
    left: 0;
    border-top: 1px solid #a4914c;
    border-bottom: 1px solid #a4914c;
    margin-left: unset;
    box-shadow: unset;
    top: 75px;
    height: auto;
    opacity: 1;
    overflow: auto;
  }

  #indicacoes .flex-div-intro {
    justify-content: center;
    margin-bottom: initial;
  }

  .div-75,
  .div-50,
  .div-25,
  .atuacao-cards,
  .form-index {
    width: 100%;
    text-align: center;
  }

  .atuacao-cards {
    max-width: 575px;
    min-height: initial;
  }

  h1 {
    font-size: 2.0rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 1.0rem !important;
  }

  .list-contacts a {
    font-size: 1.0rem !important;
  }

  .set-btn {
    justify-content: center !important;
    margin-bottom: 0px;
    flex-direction: column;
    place-items: center;
  }

  #atuacoes .set-btn {
    margin-bottom: 30px;
    margin-top: 30px;
  }

  #art-sobre .flex-div-intro {
    margin-top: initial !important;
  }

  #art-sobre .bottom-div-flex {
    margin-bottom: initial;
    margin-top: 3em !important;
  }

  .flex-div-intro,
  #atuacoes .reverse-flex {
    flex-direction: column !important;
    margin-top: 3em !important;
    margin-bottom: 3em;
  }

  #atuacoes .icons-svg-atuacoes {
    width: 160px;
    margin: 10px 0px;
  }

  .space-custom {
    padding-top: 3em;
  }

  #sobre {
    padding-bottom: 3em;
  }

  #sobre .flex-div-intro {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  #sobre .flex-div-intro .space-div-50 {
    margin-top: 1em;
  }

  .title-atuacoes {
    margin: 0 auto;
    margin-bottom: 15px;
  }

  #atuacoes {
    padding-bottom: 3em;
  }

  #atuacoes .last-etapa {
    margin-bottom: initial !important;
  }

  #sobre .h2-sobre {
    place-content: center;
    margin-left: initial;
  }

  .about-profissional {
    max-width: 500px;
    width: 100%;
    height: 100%;
  }

  .name-profissional {
    margin-top: 25px;
  }

  #indicacoes {
    padding-bottom: 3em;
  }

  #banner-contato {
    margin-top: 3em;
  }

  .sec-formulario .flex-div-intro {
    grid-gap: 20px;
  }

  #art-sobre .space-div-50 {
    justify-content: center;
  }

  #art-sobre .bottom-div-flex .space-div-50 {
    justify-content: center;
  }

  .boxes-sobre {
    flex-direction: column;
  }

  #perguntas-freq {
    padding-top: initial;
  }

  #form-contato .div-50 {
    padding-left: initial;
    padding-right: initial;
  }

  #form-contato .form-inner {
    padding: 20px;
  }

  #footer {
    padding-top: 2rem;
  }

  #footer .flex-div-intro {
    align-items: center;
    text-align: center;
    grid-gap: 25px;
  }

  #intro .div-75 {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .align-itens-header {
    height: 75px;
  }

  #banner-contato {
    padding: 3em 0px;
  }

  .sec-emergencia {
    margin-top: initial;
  }

  .name-bottom-foto {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: initial;
  }
}

@media only screen and (max-width: 600px) {
  .name-brand {
    font-size: 25px;
  }
}