:root {
--primaria: #492740;
--secundaria: #2E1928;
--bg-light: #F5F0F4;
}

section{
  scroll-margin-top: 70px;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
}

.grecaptcha-badge {
    display: none !important;
}

body {
font-family: 'Montserrat', sans-serif;
background-color: #fff; 
}

/**MENU**/
.header-transparent {
background: transparent;
position: absolute;
top: 0;
width: 100%;
z-index: 100;
transition: all 0.3s ease;
}

.header-solid, .header-scrolled {
background: var(--primaria);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: fixed;
top: 0;
width: 100%;
z-index: 999;
transition: all 0.3s ease;
}

/**MENU**/
#main-header {
padding: 20px 0px;
position: sticky;
top: 0;
z-index: 9999;
background-color: <?=$is_home ? 'transparent': '#492740' ?>;
transition: background-color 0.3s ease;

.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width:  90%;
  margin: 0 auto;
}

nav#navbarMenu {
  display: flex;
  gap: 2rem;

  ul.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;

    li.menu-item {
      a {
        text-decoration: none;
        font-weight: 400;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: #fff;
        transition: color 0.3s ease;

        &:hover,
        &.current-menu-item {
          color: var(--bg-light);
        }
      }
    }

    li.contato {
      a{
      font-weight: 700;

      }
    }
  }
}

.botoes {
    display: flex;
    gap: 15px;
    align-items: center;
	.tradutor{
		display: block;
		a.glink {
			text-decoration: none;
			color: #fff;
			font-weight: 300;
		}
		a.glink.gt-current-lang {
			font-weight: 700;
			color: var(--bg-light);
		}
	}
}

#mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 10001;
  flex-shrink: 0;

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
    content: '';
    left: 0;
  }

  .navbar-toggler-icon::before {
    top: -10px;
  }

  .navbar-toggler-icon::after {
    top: 10px;
  }

  .navbar-toggler-icon span {
    top: 0px;
  }

  &.open {
    .navbar-toggler-icon::before {
      transform: rotate(45deg);
      top: 0px;
          background-color: var(--bg-light);

    }

    .navbar-toggler-icon::after {
      transform: rotate(-45deg);
      background-color: var(--bg-light);
      top: 0px;
    }

    span.navbar-toggler-icon span{
    background-color: transparent;

    }
  }
}
 #mobile-toggle[aria-expanded="true"] .navbar-toggler-icon::before, .navbar-toggler-icon::after{
    position: absolute;
            width: 25px;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
            content: '';
            left: 0;
  }
  #mobile-toggle[aria-expanded="true"] .navbar-toggler-icon{
    background: transparent;
  }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  background-color: var(--primaria);
  padding: 20px 5vw;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  z-index: 10000;

  &.show {
    display: flex;
  }

  .navbar-brand {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }

	.tradutor{
		margin-top: 40px;
		a.glink {
			text-decoration: none;
			color: #fff;
			font-weight: 300;
		}
		a.glink.gt-current-lang {
			font-weight: 800;
			color: var(--bg-light);
		}
	}

  ul.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    li.menu-item a {
      font-size: 1.1rem;
      color: #fff;
      text-decoration: none;

      &:hover,
      &.current-menu-item {
        color: var(--bg-light);
      }
    }
  }
}

svg {
  width: auto;
  height: 60px;
  filter: invert(1);
}

}

/**HERO**/
.hero {
  height: 100vh;
  padding: 200px 50% 100px 5%;
  background: var(--primaria);
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: -100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
    h1 {
      color: #fff;
      margin: 0;
      font-family: "Prata", serif;
      font-size: clamp(3rem, 1rem + 2vw, 3.5rem);
      line-height: 1.2;
      letter-spacing: -0.5px;
    }
    &:after{
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      right: 0;
      top: 0px;
      bottom: 0;
      background: url(../img/topo.png) no-repeat right center;
      background-size: auto 130%;
      opacity: .1;
    }
}

/**ESCRITORIO**/
.escritorio{
  padding: 80px 0;
    & .conteudo{
      padding: 0 10%;
      display: flex;
      flex-direction: row;
      gap: 70px;
      & .triangulos{
        width: 30%;
        display: flex;
        flex-direction: row;
        position: relative;
        z-index: 800;
        .triangulo-fixo{
          width: 75%;
          margin: 0 0 0 auto;
          display: block;
        }
        .triangulo-animado{
          width: 75%;
          position: absolute;
          animation: fadeInOut 3s ease-in-out infinite;
        }
      }
      .textos{
        width: 70%;
      }
      & h2{
        font-size: 2.5rem;
        margin: 0 0 20px;
        font-family: "Prata", serif;
        font-weight: 400;
        color: var(--primaria);
        line-height: 1.2;
        & strong{
          font-weight: 700;
        }
      }
      & p{
        font-size: 1rem;
        line-height: 1.5;
        margin: 15px 0;
        width: 95%;
        font-weight: 400;
        & strong{
          color: var(--primaria);
          font-weight: 600;
        }
      }
    }
  & .escritorio-carousel{
    position: relative;
    margin-top: -50px;
    & img{
      aspect-ratio: 16/9;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }
    .owl-nav {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none; 
      padding: 30px;
      & button.owl-prev, button.owl-next{
        background: none;
        border: none;
        font-size: 1.5rem;
        color: white; 
        cursor: pointer;
        pointer-events: auto; 
        padding: 0 1rem;
        transition: opacity 0.3s ease;
      }
    }
  }
}

/*EQUIPE**/
.equipe {
padding: 80px 0 80px 5%;
  & h2.head{
    font-size: 3rem;
    margin: 0 0 20px;
    font-family: "Prata", serif;
    font-weight: 400;
    color: var(--primaria);
    line-height: 1.1;
    display: flex;
    gap: 15px;
    flex-direction: row;
    &:before{
      content: '';
      display: block;
      background: url(../img/elementos.svg) no-repeat;
      background-size: contain;
      width: 50px;
      height: 80px;
    }
  }
  & .profissional{
    aspect-ratio: 3/4;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    & img{
      aspect-ratio: 3/4;
      border-radius: 15px;
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: .3s;
    }
    & .nome{
      aspect-ratio: 3/4;
      border-radius: 15px;
      width: 100%;
      height: auto;
      padding: 40px 0px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      position: absolute;
      top: 0;
      background: #000000;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
      & h3{
        color: #fff;
        font-weight: 500;
        margin: 0 auto 5px;
        line-height: 1.1;
        font-size: 1.4rem;
        text-align: center;
        font-family: "Prata", serif;
      }
      & button{
        background: transparent;
        border: 0;
        outline: 0;
        color: #fff;
        font-weight: 300;
        font-size: .75rem;
        text-transform: uppercase;
      }
    }
  }
  & .modal{
    z-index: 99999;
    .modal-dialog{
      max-width: 100%;
      margin: 0;
      .modal-content {
          width: 100%;
          background-color: #fff;
          border: 0;
          border-radius: 0;
          outline: 0;
          & .modal-header{
            border-bottom: 0;
          }
          .btn-close{
              background: transparent;
              color: var(--primaria);
              font-size: 2rem;
              opacity: 1;
            &.btn-close:focus {
              outline: 0;
              box-shadow: unset;
              opacity: 1;
            }
          }
          .modal-body{
            padding: 0px 7% 40px;
            & img{
              width: 100%;
              height: auto;
              display: block;
              border-radius: 15px;
            }
            & h2{
              font-size: 2rem;
              margin: 0 0 10px;
              font-family: "Prata", serif;
              font-weight: 400;
              color: var(--primaria);
              line-height: 1.2;
              & strong{
                font-weight: 700;
              }
            }
            & h3{
              font-weight: 400;
              font-size: 1rem;
              color: var(--primaria);
              margin: 0 0 10px;
            }
            & p{
              font-size: .95rem;
              line-height: 1.5;
              margin: 5px 0; 
            }
            & a{
              color: var(--primaria);
            }
      }
    }
  }
}
  & .equipe-carousel{
    position: relative;
    .owl-nav {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none; 
      padding: 30px;
      & button.owl-prev, button.owl-next{
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #fff; 
        cursor: pointer;
        pointer-events: auto; 
        padding: 0 1rem;
        transition: opacity 0.3s ease;
        &:hover{
          color: var(--primaria);
        }
      }
    }
    .owl-nav.disabled{
      display: none;
    }
    .owl-stage {
      transform: translateX(-100px);
      padding-left: 0 !important;
      padding-right: 100px; /* ajuste o valor conforme quiser */
    }
 }

}

/**AREAS**/
.areas{
  padding: 80px 7%;
  background: var(--bg-light);
  & h2{
    font-size: 2.5rem;
    margin: 0 0 15px;
    font-weight: 300;
    line-height: 1.2;
    font-family: "Prata", serif;
    color: var(--primaria);
    text-align: center;
    & strong{
      font-weight: 700;
    }
  }
  & p.intro{
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.5;
  }
.accordion-button {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    position: relative;
    padding: 25px 25px 25px 45px;
    border-radius: 15px 15px;
}

.accordion-item:not(:first-of-type), .accordion-item:last-of-type .accordion-button.collapsed, .accordion-item:first-of-type .accordion-button {
    border-radius: 15px;
}
.accordion-button:not(.collapsed){
  box-shadow: unset;
}
.accordion-button:focus {
    border: 0;
    box-shadow: unset;
}

.accordion-item {
    color: #000;
    background-color: #fff;
    border: 0;
    margin: 15px 0;
    border-radius: 15px;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button::before {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    content: "\f078";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--primaria); 
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
  border: 0;
    padding: 0 25px 25px;
    color: #000;
    & p{
      margin: 5px 0;
    }
}
  .cards{
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    .card {
        width: calc(50% - 30px);
        aspect-ratio: 4 / 3; 
        background: #fff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
        border: solid 1px var(--primaria);
        box-sizing: border-box;
        transition: background 0.3s ease, transform 0.5s ease;
        cursor: pointer;
      .card-content {
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: 100%;
      }
      h3 {
          font-size: 1.5rem;
          font-weight: bold;
          line-height: 1.1;
          color: var(--primaria);
          font-family: "Prata", serif;
          margin-bottom: 8px;
      }
      img {
        height: 80px;
        display: block;
        margin: 0 auto 15px;
      }
      .more {
          font-size: 0.7rem;
          margin: 0;
          transition: opacity 0.3s ease;
          text-transform: uppercase;
          & i{
            color: var(--primaria);
          }
      }
      .description {
          font-size: 0.9rem;
          color: white;
          margin-top: 0px;
          opacity: 0;
          max-height: 0;
          overflow: hidden;
          transition: opacity 0.3s ease, max-height 0.5s ease;
      }
      &:hover{
        background: var(--primaria);
        h3 {
            color: white;
        }
        .more, img {
            opacity: 0; 
            height: 0;
        }
        .description {
            opacity: 1;
            max-height: 100%;
        }
      }
    }
  }
}

/**ATALHOS**/
.atalhos{
  background: url(../img/atalhos.png) no-repeat right center var(--primaria);
  background-size: auto 100%;
  padding: 70px 10%;
  a{
      text-decoration: none;
      color: #000;
  }
  .box{
    aspect-ratio: 16/9;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    height: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
    h2 {
        font-size: 1.3rem;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.1;
        color: var(--primaria);
        font-family: "Prata", serif;
        margin-bottom: 8px;
        text-align: center;
    }
    .more {
        font-size: 0.7rem;
        margin: 0;
        transition: opacity 0.3s ease;
        text-transform: uppercase;
        & i{
          color: var(--primaria);
        }
    }
    &:hover{
      background: var(--bg-light);
    }
 

  }
}

/**CONQUISTAS**/
.conquistas{
  padding: 60px 0;
  img{
    filter:grayscale(100%);
    transition: .3s;
    &:hover{
      filter: grayscale(0%);
    }
  }
}

/**CONTATO**/
.faleconosco {
padding: 80px 5%;
background: var(--bg-light);
& h2{
  font-size: 2.5rem;
  margin: 0 0 20px;
  font-weight: 300;
  font-family: "Prata", serif;
  color: var(--primaria);
  line-height: 1.2;
}
& p{
  font-weight: 400;
  width: 100%;
  margin: 5px 0;
  & a{
    transition: .3s;
    text-decoration: none;
    color: #000;
    &:hover{
      color: var(--primaria);
    }
  }
  & strong{
    color: var(--primaria);
    font-weight: 700;
  }
}
& .separator{
  width: 100%;
  height: 20px;
}
& span.titulo{
  color: var(--primaria);
  font-weight: 700;
  font-size: 1.2rem;
}
& .formulario{
  background: #fff;
  padding: 30px 30px 10px;
  width: 90%;
  margin: 15px 0 15px auto;
  border-radius: 10px;
  & p{
    width: 100%;
  }
  & label{
    width: 100%;
    margin: 5px 0;
    & input, textarea{
      width: 100%;
      padding: 15px;
      border: 0;
      border-radius:10px;
      background: var(--bg-light);
      border: solid 1px var(--bg-light);
      transition: .3s;
      max-height: 150px;
      outline: 0;
      &:focus{
        border-color: var(--primaria);
      }
    }
  }
  & input[type="submit"]{
      background: var(--primaria);
      width: 100%;
      padding: 15px;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      font-weight: 700;
      border: 0;
      outline: 0;
      border-radius: 10px;
      transition: .3s;
      &:hover{
        background: var(--secundaria);
      }
  }
  & .wpcf7-spinner{
    height: auto;
  }
}
}

/**RODAPE**/
.rodape{
padding: 80px 5% 60px;
border-top: solid px var(--primaria);
z-index: 100000;
position: relative;
background: #fff;
svg {
  width: auto;
  height: 70px;
}
& .menu{
  ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  & li{
    line-height: 40px;
    a{
      text-decoration: none;
      text-transform: uppercase;
      font-size: .9rem;
      color: #000;
      transition: .3s;
      &:hover{
        color: var(--primaria);
      }
    }
  }
  & li.contato{
    font-weight: 700;
    a{
      color: var(--primaria);
    }
  }
  }
}
& .redes{
  margin-left: 40px;
  display: flex;
  gap: 7px;
  flex-direction: row;
  & .rede{
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    background: var(--primaria);
    transition: .3s;
    &:hover{
      background: var(--secundaria);
    }
  }
}
}
& .copy{
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 5%;
font-size: .9rem;
font-weight: 300;
color: var(--texto-claro);
z-index: 100000;
position: relative;
background: #fff;
& img{
  height: 1.2rem;
  width: auto;
}
}

.social-floating {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fab-btn.whatsapp {
  background-color: #25D366;
}

.fab-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@media (max-width: 480px) {
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

@media (min-width: 1580px) {
  #main-header {
    .container {
      max-width: 85%;
    }
    & nav#navbarMenu {
      & ul.nav {
          & li.menu-item {
              a {
                font-size: 1rem;
              }
            }
      }
    }
  }
  .hero{
    height: 100vh;
    padding: 200px 48% 100px 10%;
    & h1{
      font-size: 4rem;
    }
  }
  .escritorio {
    padding: 100px 0;
      & .conteudo {
        & h2 {
          font-size: 3rem;
        }
        & p {
        font-size: 1.3rem;
        }
      }
      & .escritorio-carousel{
        margin-top: -200px;
      }
  }
  .equipe {
    padding: 100px 0 100px 10%;
    & h2.head {
      font-size: 4rem;
    }
  }
  .areas {
      padding: 90px 15%;
      & h2 {
        font-size: 3rem;
      }
      & p.intro{
        font-size: 1.4rem;
      }
      & .cards {
        & .card {
          .description {
              font-size: 1rem;
          }
        }
      }
  }
  .faleconosco {
    padding: 80px 10%;
    & h2 {
        font-size: 3.5rem;
    }
    & p {
      font-size: 1.2rem;
    }
  }
  .atalhos{
    padding: 100px 10%;
    & .box {
      h2 {
          font-size: 1.5rem;
      }
    }
  }
  .rodape {
    padding: 80px 10% 60px;
  }
  & .copy {
    padding: 30px 10%;
  }
}

@media (max-width: 1024px) {
  #main-header {
    padding: 20px 5vw;
    nav#navbarMenu {
      display: none !important;
    }
    #mobile-toggle {
      display: block;
    }
    .botoes{
      display: flex;
      gap: 15px;
    }
    .container {
      gap: 1rem;
      max-width: 100%;
      padding: 0;
    }
    svg{
      width: auto;
      height: 50px;
  }
  }
  .hero{
    background-size: cover;
    background-attachment: unset;
    height: 50vh;
    padding: 175px 5% 100px 5%;
        &:after {
      background-size: contain;
    }
  }
  .escritorio {
    padding: 60px 0;
    & p{
      width: 100%;
    }
    & .escritorio-carousel{
      margin-top: 30px;
    }
  }
  .areas {
    padding: 60px;
      & .cards {
        .card{
          aspect-ratio: 3 / 4;
        }
      }

  }
  .atalhos{
    padding: 60px;
  }
  .faleconosco{
    padding: 60px;
    & .formulario{
      width: 100%;
    }
  }
  .rodape {
    padding: 50px 30px 50px;
    svg {
        width: auto;
        max-height: 50px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }
    & .menu {
      ul {
        justify-content: center;
      }
    }
    & .redes {
        margin-left: 0;
        margin-top: 30px;
        justify-content: center;
    }
  }
}

@media (max-width: 768px) {
  & .hero{
    h1{
      font-size: 2.2rem;
      line-height: 1.5;
    }
  }
  .escritorio {
      & .conteudo {
          padding: 0 60px;
          align-items: flex-start;
          gap: 20px;
          & .triangulos {
            width: 15%;
          }
          .textos {
              width: 85%;
          }
      }
  }
  .areas {
    & .cards {
      .card {
      width: 100%;
      aspect-ratio: 16/9;
      padding: 30px;
        .description {
            font-size: 0.9rem;
        }
        h3 {
            font-size: 1.2rem;
            line-height: 1.4;
        }
      }
    }
  }
  .atalhos {
    .box {
      margin: 15px 0
    }
  }
  .faleconosco{
    padding: 60px;
    & .formulario {
        margin: 30px 0 0;
    }
  }
  .rodape {
    padding: 50px 30px 50px;
    svg{
        width: auto;
        max-height: 35px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }
    & .menu {
      ul {
        justify-content: center;
      }
    }
    & .redes {
        margin-left: 0;
        margin-top: 30px;
        justify-content: center;
    }
  }
}

@media (max-width: 480px) {
  #main-header {
    svg {
        width: auto;
        height: 40px;
    }
	  .botoes{
		  .tradutor{
			  display: none;
		  }
	  }	  
  }
  .hero {
    height: 70vh;
    padding: 105px 30px 30px 30px;
    & h1{
      font-size: 1.6rem;
    }
    &:after {
      background-size: cover;
    }
  }
  .escritorio {
    padding: 40px 0px;
    & .conteudo {
      padding: 0 30px;
      flex-direction: column;
      & .triangulos {
        width: 35px;
        position: absolute;
        right: 30px;
      }
      .textos {
          width: 100%;
          & h2 {
            font-size: 2rem;
            margin: 0px;
          }
        }
    }
  }
  .equipe {
    padding: 40px 0 40px 30px;
    & h2.head{
      font-size: 2rem;
      margin: 0 auto 20px;
    }
    & .modal {
      & .modal-dialog {
          & .modal-content {
              .modal-body {
                  padding: 0px 20px 30px;
                  & img{
                    margin-bottom: 15px;
                  }
                  a{
                    color: var(--primaria);
                  }
              }
          }
      }
    }
  }
  .areas {
    padding: 40px 30px;
    & h2{
      font-size: 2rem;
      margin: 0 auto 5px;
    }
    & p.intro {
      margin: 0 auto 30px;
      font-size: .9rem;
    }
    & .cards {
        .card {
            width: 100%;
            aspect-ratio: 3 / 4;
            padding: 25px;
            h3 {
              font-size: 1rem;
            }
            .description {
                font-size: 0.8rem;
                margin: 0;
            }
        }
    }
  }
  .atalhos{
    padding: 30px;
  }
  .conquistas {
    padding: 40px 0;
  }
  .faleconosco {
    padding: 40px 30px;
    & h2{
      font-size: 2.2rem;
    }
  }
  .rodape {
    padding: 40px 30px 20px;
    svg {
      max-height: 70px;
    }
    & .menu {
      display: none;
    }
    & .redes{
      margin-top: 5px;
    }
  }
  .copy{
    flex-direction: column;
  }
}