@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 105px;
  overflow-x: hidden;
}

.header {
  background-color: #151515;
  width: 100%;
  height: 35px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-itens {
  display: flex;
  width: 90%;
  justify-content: space-between;
  margin-left: 20px;
  margin-right: 20px;
}

.header-itens__info {
  display: flex;
  gap: 25px;
}

.header-itens__info p {
  display: flex;
  gap: 7px;
}

.navbar {
  width: 100%;
  height: 70px;
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  display: flex;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #b0b0b0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(7px);
  position: fixed;
  top: 35px;
  left: 0;
  z-index: 999;
}

.navbar div {
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.navbar div a {
  color: #151515;
  text-decoration: none;
}

.navbar div ul {
  display: flex;
  gap: 25px;
}

.linkAnimacao {
  position: relative;
  text-decoration: none;
  color: black;
}

.linkAnimacao::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #151515;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.linkAnimacao:hover::after {
  transform: scaleX(1);
}

#btnEquipe {
  padding: 10px;
  border: solid #151515;
  border-radius: 4px;
  transition: 400ms;
  width: 185px;
}

#btnEquipe:hover {
  background-color: #F4f4f4;
  transition: 400ms;
}

.main {
  position: relative;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.main-conteudo {
  width: 930px;
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 70px;
}

.main-conteudo__sobre {
  width: 490px;
}

.main-conteudo__sobre h1 {
  color: #151515;
  font-family: Urbanist;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 40px;
}

.main-conteudo__sobre p {
  color: #656e7a;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  margin-bottom: 60px;
}

.main-conteudo__sobre h1 span {
  background: linear-gradient(90deg, #c8a043 0%, #ecbf57 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.main-conteudo__sobre a {
  text-decoration: none;
  color: #151515;
  font-family: Urbanist;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 9999px;
  padding: 12px;
  transition: 400ms;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #c8a043;
  color: white;
}

.main-conteudo__sobre a:hover {
  background-color: #977d41;
  transition: 400ms;
}

.main-conteudo__foto {
  background-image: url(/src/assets/images/equipe.jpeg);
  width: 340px;
  height: 379px;
  background: url(/src/assets/images/equipe.jpeg) lightgray -82.15px 0px / 164.514% 100% no-repeat;
  border: solid #151515 2px;
  border-radius: 4px;
}

.main-conteudo__foto p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #c8a043 0%, #ecbf57 100%);
  color: #FFF;
  font-family: Urbanist;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  rotate: -4deg;
  transition: 400ms;
}

.main-conteudo__foto p:hover {
  transform: scale(1.02);
  transition: 400ms;
}

#foto-e1 {
  position: relative;
  top: 150px;
  left: 25px;
}

#foto-e2 {
  position: relative;
  top: 150px;
  left: 200px;
  width: 120px;
}

/* ============ SEÇÃO: SERVIÇOS ============ */
.s-servicos {
  padding: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F2F2;
  width: 100%;
  flex-direction: column;
}

.s-servicos h2 {
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.s-servicos p {
  font-size: 14px;
  color: #656E7A;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  text-align: center;
}

/* ============ SEÇÃO: SWIPER JS ============ */
.s-swiper {
  width: 100%;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  padding-bottom: 60px;
  user-select: none;
}

.wrapper {
  max-width: 1100px;
  padding: 20px 10px;
  margin: 0 60px 35px;
  overflow: hidden;
}

.wrapper .card {
  background: #fff;
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.card .card-image {
  position: relative;
}

.card .card-image img {
  width: 100%;
  padding: 10px;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.card .card-image .card-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 0.75rem;
  color: #6366f1;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}

.card .card-content .card-title {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

.card .card-content .card-text {
  color: #656E7A;
  font-size: 0.8rem;
  font-family: "Inter";
  line-height: 1.3;
  margin-bottom: 20px;
}

.card .card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  padding-top: 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.card .card-footer .card-profile {
  display: flex;
  align-items: center;
}

.card .card-profile .card-profile-info {
  display: flex;
  flex-direction: column;
}

.card .card-profile .card-profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202020;
}

.card .card-profile img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card .card-button {
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #c8a043 0%, #ecbf57 100%);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.card .card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.wrapper .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  background: #c8a043
}

.wrapper .swiper-pagination-bullet-active {
  background: #ecbf57;
}

.wrapper .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #c8a043;
  transform-origin: left center;
  transform: scaleX(0);
  animation: autoplay-loading 5s linear forwards;
}

.container:hover .wrapper .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}

@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.wrapper :where(.swiper-button-prev, .swiper-button-next) {
  color: #c8a043;
  margin-top: -35px;
  transition: all 0.3s ease;
}

.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  color: #8b5cf6;
}

@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }

  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}

/* ============ SEÇÃO: CONTATO ============ */
.s-contato {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
}

.s-contato__titulo {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.s-contato__titulo h2 {
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.s-contato__titulo p {
  font-size: 14px;
  color: #656E7A;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  text-align: center;
}

.s-contato-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
}

.s-contato-icons a {
  color: #c8a043;
  transition: 400ms;
}

.s-contato-icons a:hover {
  color: #6d5726;
  transition: 400ms;
}

.map-container {
  width: 350px;
  height: 343.5px;
  border-radius: 8px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0px;
}

.footer {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 11px;
  height: 80px;
  width: 100%;
  background-color: #151515;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 400ms;
}

.footer-links a:hover {
  color: #ecbf57;
  text-decoration: none;
  transition: 400ms;
}

.footer-copyright {
  user-select: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

section,
main,
.s-servicos {
  scroll-margin-top: 60px;
}