@font-face {
  font-family: "autography";
  src: url("../fonts/Autography.otf") format("opentype"),
    url("../fonts/FontsFree-Net-Acumin-Pro-Book.ttf") format("truetype");
}

@font-face {
  font-family: "fonteTexto";
  src: url("../fonts/FontsFree-Net-Acumin-Pro-Book.ttf") format("truetype");
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

html {
  scroll-padding-top: 130px;
}

body {
  background-color: #ded5ca;
}

.bg-primary-color {
  background-color: #858a75;
}

.bg-secondary-color {
  background-color: #ded5ca;
}

.bg-dark-color {
  background-color: #050505;
}

.black-color {
  color: #050505;
}

.primary-color {
  color: #050505;
}

.secondary-color {
  color: #ffffff;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 285px;
  }

  #logo {
    font-size: 1.25em;
    /* Reduz ainda mais o tamanho em telas menores */
  }

  #logoImage {
    height: 1.5em;
  }
}

/* Navbar */
#navbar {
  border-bottom: 1px solid #858a75;
}

#navbar a:hover {
  color: #050505;
}

.navbar-brand {
  display: flex;
}

.navbar-brand img {
  height: 3em;
}

.navbar-brand span {
  font-family: "autography";
  font-size: 1.7em;
  margin-left: 0.5em;
}

#navbar-items .navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

#navbar-items a {
  font-family: "fonteTexto";
  font-size: 1em;
}

#navbar-items .nav-item {
  margin: 0 1em;
}

/* Sobre Mim */
section#sobre {
  padding: 3em 0;
}

section#sobre h1 {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

section#sobre h1:before {
  width: 125px;
  border-top: 2.5px solid #050505;
  content: "";
  position: absolute;
  bottom: -0.35em;
}

section#sobre p {
  font-family: "fonteTexto";
  font-size: 1.1em;
  margin-bottom: 1.25em;
}

section#sobre span {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1em;
}

section#sobre a {
  padding: 0.5em 1.25em;
  border-width: 2.5px;
}

section#sobre img {
  border-radius: 5%;
}

#sobrebtn .btn-outline-dark:hover {
  background-color: #858a75;
  color: white;
  border-color: #858a75;
}

@media (max-width: 768px) {
  #sobre {
    font-size: 0.8em;
    position: relative;
    padding-bottom: 25em;
  }

  #sobreimagem {
    position: relative;
  }

  #sobreimagem img {
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  #sobretexto {
    position: relative;
    top: 60%;
    left: 0;
    width: 100%;
    padding: 1em;
    z-index: 2;
  }
}

/* abordagem */
section#abordagem {
  padding: 0em 0;
}

section#abordagem h1 {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

section#abordagem h1:before {
  width: 125px;
  border-top: 2.5px solid #050505;
  content: "";
  position: absolute;
  bottom: -0.35em;
}

section#abordagem p {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1.25em;
}

section#abordagem span {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1em;
}

section#abordagem a {
  padding: 0.5em 1.25em;
  border-width: 2.5px;
}

section#abordagem img {
  border-radius: 5%;
}

@media (max-width: 768px) {
  #abordagem {
    font-size: 0.8em;
    position: relative;
  }

  #abordagemimagem img {
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

/* Como Funciona */
section#como-funciona h1 {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

section#como-funciona p {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1.25em;
}

section#como-funciona h1:before {
  width: 125px;
  border-top: 2.5px solid #050505;
  content: "";
  position: absolute;
  bottom: -0.35em;
}

section#como-funciona span {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1em;
}

section#como-funciona a {
  padding: 0.5em 1.25em;
  border-width: 2.5px;
}

@media (max-width: 768px) {
  #como-funciona {
    font-size: 0.8em;
    position: relative;
  }
}

#como-funcionacard:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

section#depoimentos h1 {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

section#depoimentos p {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1.25em;
}

section#depoimentos h1:before {
  width: 125px;
  border-top: 2.5px solid #050505;
  content: "";
  position: absolute;
  bottom: -0.35em;
}

section#depoimentos span {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1em;
}

section#depoimentos a {
  padding: 0.5em 1.25em;
  border-width: 2.5px;
}

.carousel-wrapper {
  position: relative;
}

.carousel-wrapper button {
  color: #ffffff;
  background-color: #858a75;
}

.carousel-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2.5rem;
  gap: 1rem;
}

.carousel-container::-webkit-scrollbar {
  height: 6px;
  display: none;
}

.carousel-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.carousel-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  height: 535px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.scroll-left {
  left: 0.5rem;
}

.scroll-right {
  right: 0.5rem;
}

.depoimentoheader {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

#depoimentos i {
  font-size: 4rem;
}

@media (max-width: 768px) {
  .scroll-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: bold;
  }

  #depoimentos i {
    font-size: 2rem;
  }

  #depoimentos {
    font-size: 0.8em;
    position: relative;
  }

  #depoimentos .carousel-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    min-height: 85vh;
    height: 250px;
  }
}

/* Duvidas Frequentes */

section#duvidas-frequentes {
  padding: 0em 0;
}

section#duvidas-frequentes h1 {
  font-family: "autography";
  font-size: 2.5em;
  margin-bottom: 1em;
  position: relative;
}

section#duvidas-frequentes h1:before {
  width: 125px;
  border-top: 2.5px solid #050505;
  content: "";
  position: absolute;
  bottom: -0.35em;
}

section#duvidas-frequentes p {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1.25em;
}

section#duvidas-frequentes span {
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 1em;
}

section#duvidas-frequentes a {
  padding: 0.5em 1.25em;
  border-width: 2.5px;
}

section#duvidas-frequentes {
  /* background: #fdfdfd; */
  min-height: 50vh;
  padding: 10vh 0 0;
}

.faq {
  background: #ded5ca;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px solid #7a7a7a;
}

.faq .card .card-header {
  padding: 10px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: #858a75;
  padding-left: 18px;
  color: #ffffff;
}

.faq .card .card-body {
  padding: 15px;
  padding-left: 35px;
  /* background-color: #ececee; */
}

@media (max-width: 768px) {
  #duvidas-frequentes {
    font-size: 0.8em;
    position: relative;
  }
}

/* FOOTER-TOP */
#footer {
  padding: 3em 2em;
}

#logo-container {
  margin-bottom: 2em;
}

#logo-container h2 {
  font-family: "autography";
  font-size: 2.5em;
  color: #ffffff;
}

#logo-container i {
  color: #ffffff;
  margin-right: 1em;
  font-size: 1.25em;
  cursor: pointer;
}

#logo-container i:hover {
  color: #050505;
}

#logo-container h3 {
  color: #ffffff;
  margin-bottom: 0.8em;
  font-family: "fonteTexto";
  font-size: 1.8em;
}

#logo-container img {
  height: 6em;
}

#footer-details h4 {
  color: #ffffff;
  margin-bottom: 0.5em;
  font-family: "autography";
  font-size: 2.5em;
}

#footer-details p,
a {
  color: #ffffff;
  font-family: "fonteTexto";
  font-size: 1.2em;
  margin-bottom: 0.5em;
  text-decoration: none;
}

#footer-details a:hover {
  color: #050505;
}

#contact-container,
#links-container {
  padding: 0;
  border: 0;
  margin-bottom: 2em;
}

#links-container li {
  margin-bottom: 0.5em;
}

#footer-bottom {
  font-family: "fonteTexto";
  font-size: 1.2em;
  padding: 0em 0;
}

@media (max-width: 768px) {
  #footer {
    font-size: 0.8em;
    position: relative;
  }
}
