@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #a68a68;
  --primary-color-dark: #403027;
  --text-dark: #333333;
  --text-light: #5a5750;
  --extra-light: #f1f1f1;
  --black: #000000;
  --white: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
}

section {
  padding: 1rem 1rem;
  margin: 0 auto;
}

/* ///////////////////// navbar /////////////////////// */

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

nav {
  background-color: #a68a68;
  width: 100%;
  left: 0;
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* /////////////////////// navbar ///////////////////////// */

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  left: 0;
  height: 75px;
  z-index: 9;
}

@media (max-width: 575px) {
  nav {
    height: 30px;
  }
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #a68a68;
}

.nav__logo .logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}

.nav__logo .logo span {
  color: #f7901b;
  font-size: 1.3rem;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #a68a68;
  transition: transform 0.5s;
  z-index: -1;
  color: #fff;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 500;
  color: black;
  white-space: nowrap;
  font-size: 1.1rem;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  display: inline-block;
  padding: 5px 9px;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--text-dark);
  border-radius: 100%;
}

.socials a:hover {
  background-color: var(--primary-color);
}

.nav__btns .btn:hover i {
  color: var(--text-dark);
}

.nav__links a:hover {
  color: #f7901b;
}

/* /////////////////////// header content /////////////////////// */

header {
  padding-top: 5rem;
  display: grid;
}

.header-img img {
  position: relative;
  isolation: isolate;
  margin: 0 auto;
  margin-top: -5rem;
  width: 500px;
  height: 500px;
  margin-left: -2rem;
}

@media (max-width: 768px) {
  .header-img img {
    margin: 0 auto;
    width: 500px;
    height: 500px;
  }

  .header-img::before {
    margin-top: 7rem;
  }
}

.header-img img {
  width: 100%;
  height: auto;
}

.header-img::before {
  width: 100%;
  height: auto;
}

.header-content {
  padding-block: 2rem 5rem;
  padding-inline: 1rem;
}

.header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 5.5rem;
}

.header-content h1 span {
  color: #f7901b;
}

.header-btn .btn {
  margin-block: 2rem;
  text-align: center;
  font-family: "Poppins";
  font-weight: 600;
}

@media (max-width: 575px) {
  .header-btn .btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.header-btn .btn:hover {
  color: #f7901b;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  display: inline-block;
  padding: 5px 9px;
  font-size: 1.125rem;
  color: white;
  background-color: var(--text-dark);
  border-radius: 100%;
}

.socials a:hover {
  color: var(--text-dark);
}

.section-description {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  line-height: 1.75rem;
}

@media (max-width: 575px) {
  .section-description {
    font-size: 1rem;
  }

  .header__content h1 {
    font-size: 2.5rem;
  }
}

/* /////////////////////// media queries navbar /////////////////////// */

@media (width > 798px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #a68a68;
    width: 100%;
    left: 0;
    z-index: 1000;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    font-size: 1.4rem;
  }

  .nav__logo .logo span {
    color: var(--primary-color);
    font-size: 1.5rem;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links a {
    color: #000000;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
    color: #000000;
  }

  .nav__links a:hover {
    color: #ffa946;
  }

  .nav__btns {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav__btns .btn {
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    background-color: transparent;
  }

  .nav__btns .btn:hover {
    color: var(--primary-color);
  }

  .header__content .socials {
    justify-content: flex-start;
  }
}

/* /////////////////////// media queries header content /////////////////////// */

@media (width > 768px) {
  header {
    padding-top: 0;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, calc(1200px / 2))
      minmax(0, calc(1200px / 2))
      minmax(0, 1fr);
    align-items: center;
  }

  .header-img {
    grid-column: 3/5;
  }

  .header-content {
    grid-area: 1/2/2/3;
    padding-block: 5rem;
  }

  .header-content :is(h1, .section-description, .header-btn) {
    text-align: left;
  }

  .header-content .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 458px) {
  .header-img::before {
    max-width: 400px;
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background-color: var(--extra-light);
  width: 100%;
}

.about .about-banner {
  margin-bottom: 20px;
}

.about-banner {
  max-width: 350px;
  max-height: 400px;
}

.about-banner img {
  width: 100%;
  height: 100%;
  margin-top: -5rem;
}

@media (max-width: 458px) {
  .about-banner img {
    margin-top: -2rem;
    margin-bottom: 10rem;
  }

  .about-content {
    margin-top: 8rem;
  }
}

.about .section-text,
.about-item:not(:last-child) {
  margin-bottom: 25px;
}

.about-subtitle {
  color: #f7901b;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-list {
  margin-bottom: 35px;
}

.about-title,
.item-title {
  color: var(--text-dark);
}

.about-text {
  margin: 2rem 0;
}

.item-text,
.about-text {
  color: var(--text-light);
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-item .item-icon {
  background-color: var(--primary-color-dark);
  color: var(--white);
  font-size: 25px;
  padding: 15px;
  width: 110px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-item .item-title {
  margin-bottom: 10px;
}

/*-----------------------------------*\
      #MEDIA QUERIES
  \*-----------------------------------*/

@media (min-width: 575px) {
  .container {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  :root {
    --fs-1: 4.5rem;
  }

  .container {
    max-width: 720px;
  }

  .h2 {
    --fs-1: 3.5rem;
  }

  .btn {
    font-size: unset;
    padding: 15px 30px;
  }

  .btn-list {
    gap: 20px;
  }

  .btn-item-link .img {
    width: 150px;
  }
}

@media (min-width: 992px) {
  :root {
    --section-padding: 100px;
  }

  .container {
    max-width: 960px;
  }

  .btn-item-link .img {
    width: 185px;
  }

  :is(.about, .about-2, .app) .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .about-banner,
  .app-banner {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-1: 5rem;
  }

  .container {
    max-width: 1180px;
  }

  .section-text {
    --fs-4: 1.5rem;
  }

  .h2 {
    --fs-1: 4rem;
  }

  .h3 {
    --fs-2: 2.2rem;
  }
}

/* ///////////////////////////// menu //////////////////////////////// */

.menu {
  position: relative;
  isolation: isolate;
}

.menu-header {
  font-size: 2.8rem;
  color: var(--text-dark);
}

.menu-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 1rem 0;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.menu::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 450px);
  background-color: #2a1d1c;
  z-index: -1;
}

.menu__container .section__header {
  margin-bottom: 1rem;
}

.menu__container a {
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s;
}

.menu__container a:hover {
  color: var(--primary-color-dark);
}

.menu__grid {
  display: grid;
  gap: 2rem 1rem;
}

.menu__card {
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 20px 5px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.menu__card img {
  max-width: 100%;
  height: auto;
}

.menu__card:hover {
  transform: translateY(-1rem);
}

.menu__card__content {
  padding: 1rem;
  background-color: var(--white);
}

.menu__card__content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.menu__card__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7901b;
}

/* ///////////////////////// media queries menu /////////////////////////// */

@media (min-width: 540px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .menu__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu__grid {
    gap: 1.5rem;
  }

  .menu__card__content {
    padding: 1.5rem;
  }
}

/* ////////////////////////// banner /////////////////////// */

.banner__container {
  display: grid;
  gap: 2rem;
  background-image: url("assets/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
}

.banner__content {
  padding: 5rem 1rem;
}

.banner__header {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 2.5rem;
  max-width: 550px;
  font-weight: 800;
}

.banner__content p {
  margin: 1rem 0;
  color: var(--white);
  line-height: 2.2rem;
  text-align: start;
  font-weight: 600;
  max-width: 1150px;
}

.banner__btn {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.banner__btn .btn {
  color: var(--primary-color);
  background-color: var(--white);
  font-weight: 600;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  font-size: 1.1rem;
}

.banner__btn .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.banner__image {
  position: relative;
  isolation: isolate;
  height: 100%;
}

/* ////////////////////////// media queries banner /////////////////////// */

@media (max-width: 768px) {
  .banner__container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("imagens/header-bg.jpg");
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .banner__container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, calc(var(--max-width) / 2))
      minmax(0, 1fr);
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("imagens/header-bg.jpg");
    background-size: cover;
  }

  .banner__content {
    padding: 5rem 1rem;
    grid-column: 2 / 3;
  }

  .banner__header,
  .banner__content p {
    text-align: left;
  }

  .banner__btn {
    justify-content: flex-start;
  }

  .banner__image {
    grid-column: 3 / 5;
    overflow: hidden;
  }

  .banner__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%;
  }
}

/* //////////////////////// contato //////////////////////// */

.contact {
  background-color: var(--extra-light);
}

.main-container {
  width: 100%;
  height: 100%;
  padding: 30px 0;
  min-height: auto;
}

.contact-header {
  text-align: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: calc(var(--order) * 0.1s);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-header h1 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  max-width: 1000px;
  margin: 20px auto;
  gap: 15px;
  padding: 15px;
}

.contact-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.contact-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin: 10px 0;
  color: #333;
}

.contact-card p {
  color: #666;
  margin: 0;
}

.whatsapp-image {
  width: 180px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.contact-card:hover {
  transform: translateY(-20px);
  transition: 0.3s ease;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.2);
}

.whatsapp-card:hover {
  transform: translateY(-5px);
  transform: scale(1.2);
  transition: 0.3s ease;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-card {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transition: all 0.6s ease-in-out 0.4s;
}

.whatsapp-card h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.whatsapp-card p {
  color: #666;
  margin-bottom: 30px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.whatsapp-button i {
  margin-right: 10px;
}

/* ///////////////////// media queries contato ///////////////////// */

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/*//////////////////////////// testemonials //////////////////////////*/

.testemonials_container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.project-title {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.Testemonials-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f7901b;
}

.testimonials-final {
  text-align: center;
  margin-bottom: 2rem;
  margin: 5rem;
}

.testimonials-final p {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--text-light);
}

.testimonials-final h4 {
  font-family: "poppins";
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  width: auto;
}

.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.card span i {
  font-size: 2.5rem;
  color: gold;
}

.card p {
  font-size: 1rem;
  font-weight: 500;
}

.card hr {
  width: 40px;
  margin: auto;
  color: var(--text-light);
}

.card img {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--primary-color);
}

.card .name {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.card .name:hover {
  color: var(--primary-color);
}

.footer h4 {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}

.footer p {
  max-width: 450px;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}

/* //////////////////// media queries testemonials ///////////////////// */

@media (width < 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (width < 600px) {
  .testimonials__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* /////////////////////// footer ////////////////////////// */

footer {
  background-color: var(--extra-light);
  padding: 2rem 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.footer__col {
  text-align: center;
  flex: 1;
}

.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color 0.3s;
  font-size: 1.1rem;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  display: inline-block;
  padding: 5px 9px;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--text-dark);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.socials a:hover {
  background-color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
}

/*//////////////// media queries - footer /////////////////////*/

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__col {
    text-align: left;
  }

  .footer__links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .footer__col .socials {
    justify-content: flex-end;
  }
}

/* /////////////////////////////// scrool to top /////////////////////////////// */

.top-link {
  transition: all 0.25s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 3em 3em 0;
  border-radius: 50%;
  padding: 0.25em;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
}

.show {
  visibility: visible;
  opacity: 1;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.top-link i {
  font-size: 20px;
  text-decoration: none;
  color: #000;
}

.top-link {
  text-decoration: none;
}

.screen-reader-text {
  position: absolute;
  clip-path: inset(50%);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  clip: rect(1px, 1px, 1px, 1px);
}

&:focus {
  display: block;
  top: 5px;
  left: 5px;
  z-index: 100000;
  clip-path: none;
  background-color: #eee;
  padding: 15px 23px 14px;
  width: auto;
  height: auto;
  text-decoration: none;
  line-height: normal;
  color: #444;
  font-size: 1em;
  clip: auto !important;
}

/* /////////////// mediaqueries scroll /////////////// */

@media (max-width: 600px) {
  .top-link {
    width: 40px;
    height: 40px;
    bottom: -1em;
    right: -1.5em;
  }

  .top-link i {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .top-link {
    width: 35px;
    height: 35px;
    bottom: -1em;
    right: -1.5em;
  }

  .top-link i {
    font-size: 16px;
  }
}

@media (max-width: 300px) {
  .top-link {
    width: 30px;
    height: 30px;
    bottom: -1em;
    right: -1.5em;
  }

  .top-link i {
    font-size: 14px;
  }
}
