@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.btn {
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  border: none;
  background-color: #eb5e28;
  text-transform: uppercase;
  width: 200px;
  border-radius: 16px;
  cursor: pointer;
}
@media (width >= 40rem) {
  .btn {
    width: 250px;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
  }
}
.btn:hover {
  background-color: #ef7d48;
}

.title {
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 600;
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #eb5e28;
}
@media (width >= 40rem) {
  .title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 600;
  }
}

.bordered {
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc5b9;
}
.bordered::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 250px;
  background-color: #eb5e28;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc5b9;
}
@media (width >= 64rem) {
  .header {
    padding: 0.8rem 5rem;
  }
}

.header__links {
  display: flex;
  align-items: center;
}
.header__links ul {
  display: none;
  list-style: none;
  gap: 2rem;
}
@media (width >= 64rem) {
  .header__links ul {
    display: flex;
  }
}
.header__links ul li a {
  text-decoration: none;
  color: #252422;
}
.header__links ul li a:hover {
  color: #8d8883;
}

.header__links--mobile {
  display: block;
}
@media (width >= 64rem) {
  .header__links--mobile {
    display: none;
  }
}
.header__links--mobile img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo img {
  width: 60px;
  height: 45px;
}
.logo h1 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Fraunces", serif;
  color: #252422;
}
@media (width >= 64rem) {
  .logo h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
  }
}

.socialIcons {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (width >= 64rem) {
  .socialIcons {
    display: flex;
  }
}
.socialIcons a {
  height: 30px;
  padding: 0.5rem;
}
.socialIcons a img {
  width: 24px;
  height: 24px;
}
.socialIcons a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #8d8883;
}

.header__links--mobile__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 90%;
  background-color: #fffcf2;
  z-index: 10;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
}
.header__links--mobile__content button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  color: #252422;
}

#links-mobile {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 1.5rem;
  margin-top: 2rem;
}
#links-mobile li a {
  text-decoration: none;
  color: #252422;
}
#links-mobile li a:hover {
  color: #8d8883;
}

#button-close {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

#social-icons-mobile {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
#social-icons-mobile a img {
  width: 24px;
  height: 24px;
}
#social-icons-mobile a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #8d8883;
}

.active {
  display: block;
}

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

.home__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home__text p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media (width >= 96rem) {
  .home__text p {
    max-width: 110ch;
  }
}
.home__text a {
  text-align: center;
  text-decoration: none;
  color: #252422;
}

.home__image {
  display: none;
}
@media (width >= 64rem) {
  .home__image {
    display: block;
  }
}
.home__image img {
  width: 600px;
  object-fit: cover;
  max-width: 100%;
}

.about {
  display: flex;
  align-items: center;
  gap: 8rem;
  background-image: url("/src/assets/img/background-figma-serralheria.png");
  background-size: contain;
}

.about__image {
  display: none;
}
@media (width >= 64rem) {
  .about__image {
    display: block;
  }
}
.about__image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__text p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media (width >= 96rem) {
  .about__text p {
    max-width: 110ch;
  }
}

.about__text p:first-child {
  font-weight: 600 !important;
}

.about__text--ceo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about__text--ceo span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.testimonials__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width >= 40rem) {
  .testimonials__text {
    align-items: center;
  }
}
.testimonials__text p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.testimonials__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.testimonials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.testimonials__item q {
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-style: italic;
}

.testimonials__item--client {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.testimonials__item--client span {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.clients {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 40px;
}

.clients__slider {
  height: 180px;
  overflow: auto;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  position: relative;
}
@media (width >= 40rem) {
  .clients__slider {
    overflow: hidden;
  }
}

.clients__list {
  display: flex;
  gap: 1.8rem;
}
@media (width >= 40rem) {
  .clients__list {
    gap: 0;
    min-width: 1000%;
  }
}
.clients__list li {
  width: 100%;
  height: 150px;
  left: 100%;
  animation: none;
  animation-delay: 0s;
}
@media (width >= 40rem) {
  .clients__list li {
    position: absolute;
    animation: autoRun 20s linear infinite;
    animation-delay: calc(2.8571428571s * (var(--position) - 1) - 20s);
  }
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}
.services {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services__cards {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: 100%;
  cursor: grab;
  user-select: none;
}
.services__cards:active {
  cursor: grabbing;
}
.services__cards::-webkit-scrollbar {
  display: none;
}

.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  background-color: #edebe7;
  padding: 1rem;
  border-radius: 12px;
  scroll-snap-align: start;
  justify-content: center;
}
.services__item h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #eb5e28;
}
.services__item p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.services__item--icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services__item--icon--hairline {
  width: 250px;
  max-width: 100%;
  height: 0.5px;
  background-color: #ccc5b9;
}

.services__item--icon--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ccc5b9;
}
.services__item--icon--image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #403d39;
  color: #fffcf2;
  margin-top: 150px;
  gap: 2rem;
}

.footer__budget {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eb5e28;
  width: max-content;
  padding: 0 0.5rem;
  height: 200px;
  border-radius: 12px;
  position: absolute;
  top: -100px;
}
@media (width >= 40rem) {
  .footer__budget {
    width: 33.33%;
    padding: 0;
  }
}
.footer__budget a {
  background-color: #8d8883;
  color: #fffcf2;
  text-decoration: none;
}
.footer__budget a:hover {
  background-color: #726d68;
}

.footer__contact {
  padding-top: 180px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8rem;
}
@media (width >= 40rem) {
  .footer__contact {
    justify-content: start;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__contact--text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact--text h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.footer__contact--text p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.footer__contact--map iframe {
  max-width: 100%;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding-bottom: 1rem;
}
@media (width >= 40rem) {
  .footer__copyright {
    text-align: left;
  }
}
.footer__copyright p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}
.footer__copyright p a {
  color: #eb5e28;
  text-decoration: none;
}
.footer__copyright p a:hover {
  text-decoration: underline;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.8s ease-in-out both;
  animation: fade-in-left 0.8s ease-in-out both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s ease-in-out both;
  animation: fade-in-right 0.6s ease-in-out both;
}

.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.8s ease-in-out both;
  animation: slide-in-fwd-center 0.8s ease-in-out both;
}

.vibrate-1 {
  -webkit-animation: vibrate-1 0.5s linear both;
  animation: vibrate-1 0.5s linear both;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-margin-top: 5rem;
  scroll-behavior: smooth;
}

body {
  background-color: #fffcf2;
  font-family: "Public Sans", sans-serif;
  color: #252422;
}

main {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (width >= 40rem) {
  main {
    padding: 3rem 3rem;
  }
}

#arrow-up {
  display: none;
}

.arrow-up {
  position: fixed;
  bottom: 1%;
  left: 88%;
  transform: translateX(-50%);
  z-index: 10;
  background-color: #252422;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (width >= 40rem) {
  .arrow-up {
    left: 95%;
    width: 80px;
    height: 80px;
  }
}

/*# sourceMappingURL=style.css.map */
