*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover {
  color: #6C757D;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Body Grotesque Fit Trial", sans-serif;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul,
ol {
  padding-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70svh;
  overflow: hidden;
  background-color: #000000;
}
.hero-section .hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero-section .hero-swiper__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-swiper__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: none;
  will-change: transform;
}
.hero-section .hero-swiper__slide.swiper-slide-active::before {
  animation: hero-zoom-in 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-section .hero-swiper__slide--empty {
  background-color: #000000;
}
.hero-section .hero-swiper__slide--empty::before {
  display: none;
}
.hero-section .hero-swiper__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
@keyframes hero-zoom-in {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.hero-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.hero-section__logo {
  max-width: clamp(180px, 30vw, 380px);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.hero-section #fenda-logo-lottie {
  aspect-ratio: 16/9;
  height: unset;
}
.hero-section #fenda-logo-lottie canvas {
  display: block;
}
.hero-section .swiper-pagination.hero-section__indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.hero-section .swiper-pagination.hero-section__indicators .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.hero-section .swiper-pagination.hero-section__indicators .swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f5f5f5;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
}
@media (max-width: 1024px) {
  .site-header__inner {
    padding: 1.25rem 2rem;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 1rem 1.5rem;
  }
}

.site-header__brand {
  flex-shrink: 0;
  line-height: 0;
}
.site-header__brand .custom-logo-link,
.site-header__brand .site-header__logo-link {
  display: inline-block;
  line-height: 0;
}
.site-header__brand .custom-logo-link:focus-visible,
.site-header__brand .site-header__logo-link:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.site-header__brand .custom-logo,
.site-header__brand .site-header__logo-img {
  display: block;
  height: 2.1rem;
  width: auto;
  filter: brightness(0);
}

.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
  }
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu .menu-item {
  position: relative;
}
.site-header__menu .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #171717;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.site-header__menu .menu-item > a span {
  display: inline;
}
.site-header__menu .menu-item > a:hover {
  opacity: 0.6;
}
.site-header__menu .menu-item > a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.site-header__menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.site-header__menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 11rem;
  padding: 0.75rem 0 0.5rem;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.site-header__menu .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.site-header__menu .sub-menu .menu-item > a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
.site-header__menu .menu-item-has-children:hover > .sub-menu,
.site-header__menu .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}
.site-header__menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.site-header__menu .current-menu-item > a,
.site-header__menu .current-menu-ancestor > a {
  opacity: 0.5;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.site-header__lang {
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #171717;
  white-space: nowrap;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__lang {
    display: inline;
  }
}

.site-header__lang-sep {
  color: #a3a3a3;
}

.site-header__lang-switch {
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-header__lang-switch:hover {
  color: #171717;
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-header__hamburger {
    display: none;
  }
}
.site-header__hamburger:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}

.site-header__hamburger-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #171717;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-open .site-header__hamburger .site-header__hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-nav-open .site-header__hamburger .site-header__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-nav-open .site-header__hamburger .site-header__hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: #fff;
  padding-top: 5rem;
  overflow-y: auto;
}
.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav__inner {
  padding: 2rem 1.5rem 3rem;
}

.mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__menu .menu-item {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav__menu .menu-item > a {
  display: block;
  padding: 1rem 0;
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #171717;
  text-decoration: none;
}
.mobile-nav__menu .menu-item > a:hover {
  opacity: 0.6;
}
.mobile-nav__menu .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 1rem;
}
.mobile-nav__menu .sub-menu.is-open {
  display: block;
}
.mobile-nav__menu .sub-menu .menu-item > a {
  font-size: 1rem;
  padding: 0.5rem 0;
  color: #555;
}
.mobile-nav__menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5' fill='none'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23171717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.mobile-nav__menu .menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}

body.mobile-nav-open {
  overflow: hidden;
}

.site-footer {
  background-color: #0c0a09;
  color: #a8a29e;
  padding: 6rem 0 3rem;
}
.site-footer .grid-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.site-footer__site-name {
  font-family: "Epilogue", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}
.site-footer__contacte-nos {
  font-family: "Epilogue", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.site-footer__contacte-nos::first-letter {
  text-transform: uppercase;
}
.site-footer__divider {
  height: 1px;
  background-color: #292524;
}
.site-footer__cols p, .site-footer__cols small {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  line-height: 1.625;
  margin-bottom: 0.5rem;
  color: #a8a29e;
}
.site-footer__cols a {
  color: #a8a29e;
  text-decoration: none;
}
.site-footer__cols a:hover {
  color: #ffffff;
}
.site-footer__cols small {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #78716c;
}
.site-footer__city {
  font-family: "Epilogue", sans-serif;
  font-size: 1.375rem !important;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.05em;
  margin-bottom: 1rem !important;
}
.site-footer__social-title {
  font-family: "Epilogue", sans-serif;
  font-size: 0.8125rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 1rem !important;
}
.site-footer__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.site-footer__social a {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: #a8a29e;
}
.site-footer__social a:hover {
  color: #ffffff;
}
.site-footer__bottom {
  border-top: 1px solid #292524;
  padding-top: 1.5rem;
  text-align: center;
}
.site-footer__bottom p {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: #78716c;
  margin: 0;
}

.section-services {
  background-color: #F8F9FA;
  padding: 6rem 0;
}
.section-services__intro {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: #191c1d;
  max-width: 1024px;
  margin-bottom: 4rem;
}
.section-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .section-services__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: #edeeef;
}
.service-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card__image--empty {
  background-color: #d0d1d2;
}
.service-card:hover .service-card__image {
  transform: scale(1.05);
}
.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.service-card__title {
  display: block;
  font-family: "Epilogue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
}
.service-card__title:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-servicos {
  background-color: #F8F9FA;
}

.page-servicos__hero {
  padding: 7.9375rem 0 0;
}
.page-servicos__hero .grid-container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.page-servicos__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.09375rem;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 1.9375rem;
  text-transform: capitalize;
}

.page-servicos__intro {
  max-width: 42rem;
}
.page-servicos__intro p {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625;
  color: #78716c;
  margin: 0;
}

.page-servicos__grid-section {
  padding: 3rem 0 8rem;
}
.page-servicos__grid-section .grid-container {
  max-width: 1280px;
}

.page-servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .page-servicos__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .page-servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: #edeeef;
}
.service-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card__image--empty {
  background-color: #d0d1d2;
}
.service-card:hover .service-card__image {
  transform: scale(1.05);
}
.service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.service-card__title {
  display: block;
  font-family: "Epilogue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
}
.service-card__title:hover {
  color: #ffffff;
  text-decoration: underline;
}

.servico-hero {
  position: relative;
  min-height: 548px;
  background-color: #d9dadb;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.servico-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 6rem 0;
}
.servico-hero__content {
  max-width: 896px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.servico-hero__eyebrow {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.servico-hero__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
}

.servico-intro {
  background-color: #F8F9FA;
  padding: 5.6875rem 0 4.5625rem;
}
@media (max-width: 767px) {
  .servico-intro {
    padding: 2.6875rem 0 4.5625rem;
  }
}
.servico-intro__text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.servico-intro__heading {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2rem, 3.75vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.075rem;
  line-height: 1;
  color: #191c1d;
  margin: 0;
}
.servico-intro__description h2 {
  color: #191c1d;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.075rem;
  margin-bottom: 1.5rem;
}
.servico-intro__description p {
  color: #50453b;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.servico-intro__description p:last-child {
  margin-bottom: 0;
}
.servico-intro__image-col {
  display: flex;
  align-items: stretch;
}
.servico-intro__image {
  width: 100%;
  min-height: 368px;
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
}

.servico-sobre {
  background-color: #ffffff;
  padding: 5.6875rem 0 4.5625rem;
}
@media (max-width: 767px) {
  .servico-sobre {
    padding: 2.6875rem 0 4.5625rem;
  }
}
.servico-sobre__image-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .servico-sobre__image-col {
    order: 2;
  }
}
.servico-sobre__image {
  width: 100%;
  min-height: 459px;
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
}
.servico-sobre__text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .servico-sobre__text-col {
    order: 1;
  }
}
.servico-sobre__description {
  font-family: "Manrope", sans-serif;
  color: #000000;
}
.servico-sobre__description h3 {
  font-weight: 700;
  color: #191c1d;
  margin-bottom: 1rem;
}
.servico-sobre__description p {
  margin-bottom: 1rem;
}
.servico-sobre__description p:last-child {
  margin-bottom: 0;
}
.servico-sobre__description ul {
  list-style: disc;
  padding-left: 1.875rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #50453b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 2.5rem;
  font-family: "Epilogue", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.btn--dark {
  background-color: #000000;
  color: #ffffff;
}
.btn--dark:hover, .btn--dark:focus {
  opacity: 0.85;
  color: #ffffff;
}

.servico-portfolio {
  background-color: #0a0a0a;
  padding: 0.9375rem 0 10rem;
}
.servico-portfolio__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.servico-portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.servico-portfolio__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.75rem, 2.8125vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.1125rem;
  line-height: 1.1;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
}
.servico-portfolio__nav {
  display: flex;
  gap: 1rem;
}
.servico-portfolio__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.servico-portfolio__btn:hover {
  background-color: #e5e5e5;
}
.servico-portfolio__btn svg path {
  stroke: #0a0a0a;
}

.servico-gallery-main {
  width: 100%;
}
.servico-gallery-main .swiper-wrapper {
  max-height: 600px;
}
.servico-gallery-main .swiper-slide {
  height: 600px;
}
.servico-gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .servico-gallery-main .swiper-wrapper {
    max-height: 400px;
  }
  .servico-gallery-main .swiper-slide {
    height: 400px;
  }
}

.servico-gallery-thumbs {
  width: 100%;
  margin-top: 1rem;
}
.servico-gallery-thumbs .swiper-slide {
  height: 260px;
  overflow: hidden;
  border: 1px solid #292524;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.servico-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.servico-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .servico-gallery-thumbs .swiper-slide {
    height: 80px;
  }
}

.section-projects {
  background-color: #000000;
  padding: 8rem 0;
}
.section-projects__heading {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.section-projects__text {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #a3a3a3;
  margin-bottom: 0;
}
.section-projects__link {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
.section-projects__link:hover {
  text-decoration: underline;
  color: #ffffff;
}
.section-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .section-projects__grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
  background-color: #1a1a1a;
}
.project-card a {
  display: block;
  height: 100%;
}
.project-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card__empty {
  width: 100%;
  height: 100%;
  background-color: #2a2a2a;
}
.project-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.project-card__title {
  display: block;
  font-family: "Epilogue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: capitalize;
  color: #ffffff;
}

.archive-projetos {
  background-color: #000000;
  min-height: 100vh;
}

.archive-projetos__hero {
  padding: 7.9375rem 0 0;
}
.archive-projetos__hero .grid-container {
  padding-top: 2.6875rem;
  padding-bottom: 1.25rem;
  max-width: 1184px;
}

.archive-projetos__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 4.6875vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.09375rem;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 1.9375rem;
}

.archive-projetos__intro {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625;
  color: #78716c;
  max-width: 42rem;
  margin: 0;
}

.archive-projetos__grid-section {
  padding: 3rem 0 8rem;
}
.archive-projetos__grid-section .grid-container {
  max-width: 1280px;
}

.archive-projetos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 0.625rem;
}
@media (max-width: 768px) {
  .archive-projetos__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .archive-projetos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.projeto-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
  background-color: #1a1a1a;
}
.projeto-card__link {
  display: block;
  height: 100%;
}
.projeto-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.projeto-card:hover .projeto-card__image {
  transform: scale(1.05);
}
.projeto-card__empty {
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
}

.archive-projetos__pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.archive-projetos__pagination .page-numbers {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #78716c;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.archive-projetos__pagination .page-numbers.current, .archive-projetos__pagination .page-numbers:hover {
  color: #ffffff;
}

.archive-projetos__empty {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #78716c;
  text-align: center;
  padding: 4rem 0;
}

.projeto-hero {
  position: relative;
  min-height: 548px;
  background-color: #d9dadb;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.projeto-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 6rem 0;
}
.projeto-hero__content {
  max-width: 896px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.projeto-hero__eyebrow {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.projeto-hero__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
}

.projeto-sobre {
  background-color: #F8F9FA;
  padding: 2.9375rem 0 4.5625rem;
}
.projeto-sobre .grid-container {
  max-width: 1184px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.projeto-sobre__inner {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
  max-width: 42rem;
}
.projeto-sobre__heading {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 4.6875vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.09375rem;
  line-height: 1;
  color: #1a1a1a;
  margin: 0;
  text-transform: capitalize;
}
.projeto-sobre__content {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625;
  color: #78716c;
}
.projeto-sobre__content p {
  margin-bottom: 1rem;
}
.projeto-sobre__content p:last-child {
  margin-bottom: 0;
}

.projeto-galeria {
  background-color: #0a0a0a;
  padding: 0.9375rem 0 10rem;
}
.projeto-galeria__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.projeto-galeria__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.projeto-galeria__title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.75rem, 2.8125vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.1125rem;
  line-height: 1.1;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
}
.projeto-galeria__nav {
  display: flex;
  gap: 1rem;
}
.projeto-galeria__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.projeto-galeria__btn:hover {
  background-color: #e5e5e5;
}

.projeto-gallery-main {
  width: 100%;
}
.projeto-gallery-main .swiper-slide {
  height: 596px;
  background-color: #1c1917;
}
.projeto-gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .projeto-gallery-main .swiper-wrapper {
    max-height: 400px;
  }
  .projeto-gallery-main .swiper-slide {
    height: 400px;
  }
}

.projeto-gallery-thumbs {
  width: 100%;
  margin-top: 1rem;
}
.projeto-gallery-thumbs .swiper-slide {
  height: 260px;
  background-color: #1c1917;
  border: 1px solid #292524;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.projeto-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.projeto-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .projeto-gallery-thumbs .swiper-slide {
    height: 80px;
  }
}

.sobre-nos__hero {
  background-size: cover;
  background-position: center;
}
.sobre-nos__hero .sobre-nos__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.sobre-nos__hero .hero-section__content {
  z-index: 2;
}

.sobre-nos__intro {
  background-color: #f8f9fa;
  padding: 2.9375rem 6rem 4.5625rem;
}
@media (max-width: 1024px) {
  .sobre-nos__intro {
    padding: 2.5rem 3rem 4rem;
  }
}
@media (max-width: 768px) {
  .sobre-nos__intro {
    padding: 2rem 1.5rem 3rem;
  }
}

.sobre-nos__intro-inner {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
}

.sobre-nos__intro-title {
  font-family: "Body Grotesque Fit Trial", "Epilogue", sans-serif;
  font-size: 60px;
  font-weight: 700;
  font-style: normal;
  line-height: 60px;
  letter-spacing: -1.5px;
  color: #1a1a1a;
  text-transform: capitalize;
  margin: 0;
}

.sobre-nos__intro-subtitle {
  font-family: "Epilogue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 40px;
  color: #191c1d;
  margin: 0;
}

.sobre-nos__intro-body {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 29px;
  color: #82756a;
}
.sobre-nos__intro-body p {
  margin-bottom: 0;
}

.sobre-nos__fabrica {
  background-color: #000;
  overflow: hidden;
}

.sobre-nos__fabrica-img {
  overflow: hidden;
  min-height: 480px;
}
@media (max-width: 768px) {
  .sobre-nos__fabrica-img {
    min-height: 320px;
  }
}

.sobre-nos__fabrica-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sobre-nos__fabrica-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3125rem 6rem 1.3125rem 0;
}
@media (max-width: 1024px) {
  .sobre-nos__fabrica-text {
    padding: 3rem 3rem 3rem 0;
  }
}
@media (max-width: 768px) {
  .sobre-nos__fabrica-text {
    padding: 3rem 1.5rem;
  }
}

.sobre-nos__fabrica-title {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2rem, 3.75vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0 0 1.5rem;
}

.sobre-nos__fabrica-body {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.625;
  color: #ffffff;
}
.sobre-nos__fabrica-body p {
  margin-bottom: 1rem;
}
.sobre-nos__fabrica-body p:last-child {
  margin-bottom: 0;
}

.contactos-hero {
  background-color: #000;
  padding: 9.5rem 0 10rem;
}
@media (max-width: 768px) {
  .contactos-hero {
    padding: 7rem 0 5rem;
  }
}

.contactos-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.5rem;
}
@media (max-width: 768px) {
  .contactos-hero__left {
    margin-bottom: 3rem;
  }
}

.contactos-hero__title {
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  text-transform: lowercase;
  margin-bottom: 1.5625rem;
}
.contactos-hero__title::first-letter {
  text-transform: uppercase;
}

.contactos-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.contactos-hero__cta:hover {
  opacity: 0.7;
}
.contactos-hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.contactos-hero__cta-arrow {
  width: 1.5rem;
  flex-shrink: 0;
}

.contactos-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contactos-form__field {
  position: relative;
  margin-bottom: 1.4375rem;
}
.contactos-form__field--mensagem {
  padding-top: 2rem;
  margin-bottom: 0;
}
.contactos-form__label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  padding: 1.0625rem 0.75rem 0;
}
.contactos-form__input, .contactos-form__textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 1.0625rem 0.75rem 1.125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}
.contactos-form__input::-moz-placeholder, .contactos-form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contactos-form__input::placeholder, .contactos-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contactos-form__input:focus, .contactos-form__textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.contactos-form__textarea {
  resize: none;
  min-height: 7.5rem;
}
.contactos-form__submit {
  align-self: flex-start;
  display: inline-block;
  margin-top: 1.4375rem;
  padding: 1.5rem 4rem;
  background-color: #fff;
  border: none;
  border-radius: 0;
  font-family: "Epilogue", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contactos-form__submit:hover {
  background-color: #f0f0f0;
}
.contactos-form__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.contactos-info {
  background-color: #f8f9fa;
  padding: 6rem 0 7rem;
}
@media (max-width: 768px) {
  .contactos-info {
    padding: 4rem 0 5rem;
  }
}

@media (max-width: 768px) {
  .contactos-info__col {
    margin-bottom: 4rem;
  }
  .contactos-info__col:last-child {
    margin-bottom: 0;
  }
}

.contactos-info__eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1.0375rem;
}

.contactos-info__heading {
  font-family: "Body Grotesque Fit Trial", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.75vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #191c1d;
  text-transform: lowercase;
  margin-bottom: 0.875rem;
}
.contactos-info__heading::first-letter {
  text-transform: uppercase;
}

.contactos-info__details {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
  margin-top: 0.875rem;
}

.contactos-info__detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contactos-info__icon {
  flex-shrink: 0;
  width: 1.1875rem;
  margin-top: 0.4rem;
  color: #50453b;
}
.contactos-info__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.contactos-info__address {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.625;
  color: #50453b;
  font-style: normal;
}

.contactos-info__link {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.625;
  letter-spacing: -0.025em;
  color: #50453b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contactos-info__link:hover {
  color: #191c1d;
  text-decoration: underline;
}
.contactos-info__link:focus-visible {
  outline: 2px solid #191c1d;
  outline-offset: 2px;
}

.contactos-info__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e7e5e4;
}

.contactos-info__social-item {
  border-bottom: 1px solid #e7e5e4;
}

.contactos-info__social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: "Epilogue", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.333;
  letter-spacing: -0.025em;
  color: #191c1d;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.contactos-info__social-link:hover {
  color: #50453b;
}
.contactos-info__social-link:hover .contactos-info__social-arrow {
  transform: translate(3px, -3px);
}
.contactos-info__social-link:focus-visible {
  outline: 2px solid #191c1d;
  outline-offset: 2px;
}

.contactos-info__social-arrow {
  width: 0.9375rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.section-about {
  background-color: #ffffff;
  padding: 8rem 0;
}
.section-about__heading {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #191c1d;
  text-transform: lowercase;
}
.section-about__heading::first-letter {
  text-transform: uppercase;
}
.section-about__content p {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.625;
  color: #50453b;
}
.section-about__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #191c1d;
  text-decoration: underline;
}
.section-about__link:hover {
  color: #191c1d;
  text-decoration: none;
}

.section-contact {
  background-color: #f3f4f5;
  padding: 8rem 0 9rem;
}
.section-contact__heading {
  font-family: "Epilogue", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #191c1d;
  text-align: center;
  text-transform: lowercase;
  margin-bottom: 4rem;
}
.section-contact__heading::first-letter {
  text-transform: uppercase;
}

.contact-form {
  max-width: 896px;
  margin: 0 auto;
}
.contact-form__field {
  position: relative;
}
.contact-form__label {
  position: absolute;
  top: 0;
  left: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #82756a;
  pointer-events: none;
  transition: transform 0.2s ease, font-size 0.2s ease;
}
.contact-form__input, .contact-form__textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #82756a;
  padding: 1.75rem 0.75rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #191c1d;
  outline: none;
  resize: none;
  transition: border-color 0.3s ease;
  box-shadow: none;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: #191c1d;
}
.contact-form__textarea {
  min-height: 120px;
}
.contact-form__newsletter {
  margin-bottom: 2rem;
}
.contact-form__newsletter-label {
  font-family: "Epilogue", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #191c1d;
  margin-bottom: 1rem;
}
.contact-form__newsletter-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #50453b;
  margin-bottom: 1.5rem;
}
.contact-form__radio-group {
  display: flex;
  gap: 3rem;
}
.contact-form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #50453b;
  cursor: pointer;
}
.contact-form__radio-label.wpcf7-radio .wpcf7-list-item,
.contact-form__radio-label .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.contact-form__radio-label.wpcf7-radio .wpcf7-list-item label,
.contact-form__radio-label .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  cursor: pointer;
}
.contact-form__radio-label input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid #82756a;
  border-radius: 50%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-form__radio-label input[type=radio]:checked {
  background: #82756a;
}
.contact-form__gdpr {
  margin-bottom: 2rem;
}
.contact-form__gdpr-checkbox .wpcf7-list-item {
  margin: 0;
}
.contact-form__gdpr-checkbox label,
.contact-form__gdpr-checkbox .wpcf7-list-item-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #50453b;
  cursor: pointer;
}
.contact-form__gdpr-checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  border: 2px solid #82756a;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form__gdpr-checkbox input[type=checkbox]:checked {
  background-color: #82756a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
  border-color: #82756a;
}
.contact-form__gdpr-checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid #191c1d;
  outline-offset: 2px;
}
.contact-form__gdpr-checkbox .wpcf7-list-item-label a {
  color: #191c1d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__gdpr-checkbox .wpcf7-list-item-label a:hover {
  color: #50453b;
}
.contact-form__submit {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.5rem 4rem;
  background-color: #1c1c1c;
  color: #ffffff;
  font-family: "Epilogue", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form__submit:hover {
  background-color: #333;
}

.wpcf7 {
  max-width: 896px;
  margin: 0 auto;
}
.wpcf7 .wpcf7-form {
  max-width: 100%;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.375rem;
}
.wpcf7 .wpcf7-response-output {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border: 1px solid #82756a;
  border-radius: 0;
  color: #191c1d;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #27ae60;
  color: #27ae60;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
  border-color: #c0392b;
  color: #c0392b;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
/*# sourceMappingURL=main.css.map */
