body {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  /* For Chrome, Safari, and other WebKit-based browsers */
  -moz-osx-font-smoothing: grayscale;
  /* For Firefox on macOS */
}
body a {
  text-decoration: none;
}
/* ===== Keyframes ===== */
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.apenas-desktop {
  display: block;
}
.apenas-mobile {
  display: none;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* ou #000 se preferir escuro */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.6s ease;
}
#preloader.hide {
  transform: translateY(-100%);
}
#preloader .preloader-content {
  font-size: 6.5rem;
  font-weight: 300;
  color: #000;
  text-align: center;
  overflow: hidden;
}
#preloader .preloader-content span {
  display: inline-block;
  text-transform: uppercase;
  margin: 0;
}
#preloader .preloader-content .first {
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards 0.3s;
}
#preloader .preloader-content .last {
  transform: translateY(100%);
  animation: slideUp 0.8s ease forwards 0.6s;
}
.link-slide {
  position: relative;
  display: inline-block;
  color: #000;
  /* cor do texto */
  text-decoration: none;
  overflow: hidden;
}
.link-slide span {
  visibility: hidden;
}
.link-slide::after,
.link-slide::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.link-slide::after {
  content: attr(data-text);
  top: 100%;
  transform: translateY(0);
}
.link-slide::before {
  content: attr(data-text);
  top: 0;
  transform: translateY(0);
}
.link-slide:hover::before {
  transform: translateY(-100%);
}
.link-slide:hover::after {
  transform: translateY(-100%);
}
.hover-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hover-circle svg {
  width: 30px;
}
.hover-circle.arrow {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hover-circle.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.hover-circle.active.arrow {
  transform: rotate(65deg);
}
.all-content {
  position: relative;
  background: #fff;
  z-index: 1;
  margin-bottom: 50vh;
  border-radius: 0 0 8px 8px;
}
.menu-header {
  position: sticky;
  top: 28px;
  display: inline-block;
  text-align: center;
  left: 50%;
  padding: 15px 12px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(240, 240, 240, 0.8);
  border-radius: 80px;
  backdrop-filter: blur(8px);
}
.menu-header nav {
  margin: 0;
  padding: 0;
}
.menu-header a {
  font-size: 14px;
  margin: 0 21px;
}
.menu-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-header ul li {
  display: inline-block;
  margin: 0 3%;
}
.menu-header ul li a {
  color: #000000;
  font-size: 13px;
}
section.header-menu {
  width: 90%;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section.header-menu .logo {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  line-height: 13px;
}
section.header-menu .logo a {
  color: #000000;
  transition: 0.3s ease-in-out;
}
section.header-menu .logo a:hover {
  opacity: 0.6;
}
.limit-site {
  max-width: 1920px;
  width: 90%;
  margin: 80px auto 0 auto;
}
.featured-banner {
  position: relative;
}
.featured-banner img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.featured-banner .alert-available-projects {
  width: 50%;
  position: absolute;
  bottom: -16px;
  right: 0;
}
.featured-banner .alert-available-projects .wrapper {
  background: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2;
  display: inline-block;
  padding: 12px 21px;
  border-radius: 80px;
  font-size: 13px;
  box-sizing: border-box;
}
.featured-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  margin: 50px auto;
  margin-top: 50px;
}
.featured-info .text-block.texto-principal {
  order: 2;
  width: 50%;
}
.featured-info .text-block.texto-principal h1 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 24px;
}
.featured-info .text-block.texto-secundario {
  order: 1;
  width: 25%;
}
.featured-info .text-block.texto-secundario .cta-contato {
  display: none;
}
.featured-info .text-block.texto-secundario h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}
.featured-info .text-block .cta-contato {
  margin-top: 60px;
}
.featured-info .text-block .cta-contato a {
  font-size: 21px;
  color: #000000;
}
.featured-info .text-block .cta-contato a .double-text {
  display: inline-flex;
  align-items: flex-end;
  position: relative;
}
.featured-info .text-block .cta-contato a .double-text::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1.5px;
  background: #000000;
  width: 0;
  content: '';
  transition: 0.2s ease-in-out;
}
.featured-info .text-block .cta-contato a .double-text svg {
  margin-left: 18px;
  width: 16px;
  height: auto;
  margin-bottom: 4px;
}
.featured-info .text-block .cta-contato a .double-text:hover::after {
  width: 100%;
}
.last-projects {
  margin: 100px 0;
  padding-bottom: 100px;
}
.last-projects .last-projects-header {
  width: 100%;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 0;
}
.last-projects .last-projects-header h2 {
  font-size: 60px;
  margin: 0;
  font-weight: 400;
  color: #000000;
}
.last-projects .last-projects-header .see-all-link {
  position: relative;
}
.last-projects .last-projects-header .see-all-link:hover::after {
  width: 100%;
}
.last-projects .last-projects-header .see-all-link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1.5px;
  background: #000000;
  width: 0;
  content: '';
  transition: 0.2s ease-in-out;
}
.last-projects .last-projects-header .see-all-link a {
  color: #000000;
  display: flex;
  align-items: flex-end;
}
.last-projects .last-projects-header .see-all-link a svg {
  width: 12px;
  height: auto;
  margin-left: 18px;
  margin-bottom: 3px;
}
.last-projects .projects-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 80px;
  column-gap: 60px;
}
.last-projects .projects-grid .project-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  min-height: 1px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.37s ease-out, transform 0.47s cubic-bezier(0.18, 0.79, 0.29, 0.93);
  transition-duration: 0.5s, 0.7s;
}
.last-projects .projects-grid .project-item.show {
  opacity: 1;
  transform: translateY(0);
}
.last-projects .projects-grid .project-item.show:nth-of-type(2n+2) {
  transition-delay: 0.15s;
}
.last-projects .projects-grid .project-item .info-project-float {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 15px 0 0;
}
.last-projects .projects-grid .project-item .info-project-float h2 {
  font-size: 30px;
  font-weight: 400;
  position: relative;
  margin-bottom: 4px;
  margin: 0;
  z-index: 1;
  font-size: 20px;
  line-height: 1.35em;
  letter-spacing: -0.02em;
}
.last-projects .projects-grid .project-item .info-project-float h2 a {
  color: #000000;
}
.last-projects .projects-grid .project-item .info-project-float .title-categories-divider {
  width: 1px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  align-self: center;
  margin: 0 10px;
}
.last-projects .projects-grid .project-item .info-project-float ul.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.last-projects .projects-grid .project-item .info-project-float ul.post-categories li {
  margin: 0 8px 0 0;
  padding: 0;
  display: inline-block;
}
.last-projects .projects-grid .project-item .info-project-float ul.post-categories li a {
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.last-projects .projects-grid .project-item .project-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  aspect-ratio: 1.4;
  overflow: hidden;
  border-radius: 4px;
}
.last-projects .projects-grid .project-item .project-image:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}
.last-projects .projects-grid .project-item .project-image a {
  cursor: none;
  width: 100%;
}
.last-projects .projects-grid .project-item .project-image img {
  transition: 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 51vh;
  background: #000000;
  z-index: 0;
}
section.footer .wrapper {
  padding: 15vh 15vw;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}
section.footer .wrapper .logo {
  width: 30%;
  margin-right: 5vw;
}
section.footer .wrapper .logo p {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
section.footer .wrapper .menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 70%;
}
section.footer .wrapper .menus .social a {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}
section.footer .wrapper .menus .menu a {
  color: #fff;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 12px;
}
section.footer .wrapper .menus .contact p {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
}
section.footer .wrapper .menus .contact a.contact-link {
  padding: 12px 24px;
  background: #fff;
  border-radius: 4px;
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  border: 1.5px solid #fff;
}
section.footer .wrapper .menus .contact a.contact-link:hover {
  background: transparent;
  color: #fff;
}
section.footer .subfooter {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 5vw;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
}
section.footer .subfooter p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
  opacity: 0.5;
}
.single-post {
  margin-top: 40px;
  padding-bottom: 80px;
}
.single-post .project-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.single-post .project-wrapper .project-gallery {
  width: 60%;
}
.single-post .project-wrapper .project-gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.single-post .project-wrapper .project-info {
  width: 35%;
}
.single-post .project-wrapper .project-info p {
  font-size: 16px;
  line-height: 21px;
}
.single-post .project-wrapper .project-info h1 {
  font-size: 80px;
  margin-top: 0;
  margin-bottom: 4px;
}
.single-post .project-wrapper .project-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-post .project-wrapper .project-info ul li {
  margin: 0 8px;
  display: inline-block;
  margin: 0 4px;
}
.single-post .project-wrapper .project-info ul li::before {
  content: '|';
  margin-right: 8px;
  opacity: 0.3;
}
.single-post .project-wrapper .project-info ul li:first-child {
  margin-left: 0;
}
.single-post .project-wrapper .project-info ul li:first-child::before {
  display: none;
}
.single-post .project-wrapper .project-info ul li a {
  color: #000000;
}
.single-post .project-wrapper .project-info .project-descricao {
  padding-top: 14px;
  margin-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.single-post .project-wrapper .project-info .project-depoimento {
  margin-top: 34px;
}
.single-post .project-wrapper .project-info .project-depoimento .balloon-depoimento {
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.single-post .project-wrapper .project-info .project-depoimento .autor-depoimento {
  background: #fff;
  margin-top: -26px;
  display: inline-block;
  padding: 8px;
  margin-left: 16px;
}
.single-post .project-wrapper .project-info .project-depoimento p {
  font-size: 14px;
  line-height: 18px;
}
.single-post .project-wrapper .project-info .project-depoimento svg {
  margin-top: 8px;
  width: 100px;
}
/* ===========================
   Projetos — Load More (LESS)
   =========================== */
.projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: 80px;
}
.projects-page .projects-grid .project-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.37s ease-out, transform 0.47s cubic-bezier(0.18, 0.79, 0.29, 0.93);
}
.projects-page .projects-grid .project-item.show {
  opacity: 1;
  transform: translateY(0);
}
.projects-page .projects-grid .project-item .project-image {
  aspect-ratio: 1.4;
  overflow: hidden;
  border-radius: 4px;
}
.projects-page .projects-grid .project-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}
.projects-page .projects-grid .project-item .project-image:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}
.projects-page .projects-grid .project-item .info-project-float {
  margin-top: 15px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.projects-page .projects-grid .project-item .info-project-float h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.projects-page .projects-grid .project-item .info-project-float .post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.projects-page .projects-grid .project-item .info-project-float .post-categories li {
  display: inline-block;
  margin-right: 8px;
}
.projects-page .projects-grid .project-item .info-project-float .post-categories li a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 500;
}
.projects-page .projects-loadmore-wrap {
  margin-top: 60px;
  margin-bottom: 180px;
}
.projects-page .load-more-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 4px;
  color: #000000;
}
.projects-page .load-more-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}
.projects-page .load-more-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
/* Responsividade (móvel) */
@media (max-width: 768px) {
  .projects-page .projects-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .projects-page .load-more-btn {
    width: 100%;
    box-sizing: border-box;
  }
}
/* ===========================
   SOBRE — EDITORIAL MODERNO
   =========================== */
.sobre-hero {
  margin-top: 120px;
  margin-bottom: 140px;
}
.sobre-hero .sobre-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.sobre-hero .sobre-hero-inner .texto {
  width: 50%;
}
.sobre-hero .sobre-hero-inner .texto h1 {
  font-size: 80px;
  line-height: 0.9;
  margin: 0 0 40px 0;
  font-weight: 400;
}
.sobre-hero .sobre-hero-inner .texto p {
  font-size: 20px;
  line-height: 32px;
  opacity: 0.85;
  max-width: 580px;
}
.sobre-hero .sobre-hero-inner .foto {
  width: 40%;
}
.sobre-hero .sobre-hero-inner .foto img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}
/* divisor editorial */
.sobre-divider .line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 0 auto 140px auto;
}
/* seção: abordagens */
.sobre-abordagem h2 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.sobre-abordagem .abordagem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.sobre-abordagem .abordagem-grid .item h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px 0;
  font-weight: 600;
}
.sobre-abordagem .abordagem-grid .item p {
  line-height: 1.7;
  opacity: 0.8;
}
/* timeline editorial */
.sobre-timeline h2 {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 400;
}
.sobre-timeline .timeline {
  margin-top: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sobre-timeline .timeline .entry .ano {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.sobre-timeline .timeline .entry p {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.85;
}
/* CTA final */
.sobre-cta {
  margin: 140px 0 200px 0;
  text-align: left;
}
.sobre-cta p {
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.sobre-cta .cta-link {
  font-size: 20px;
  color: #000000;
  position: relative;
}
.sobre-cta .cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000000;
  transition: 0.25s ease;
}
.sobre-cta .cta-link:hover::after {
  width: 100%;
}
/* MOBILE */
@media (max-width: 768px) {
  .sobre-hero .sobre-hero-inner {
    flex-direction: column;
    gap: 40px;
  }
  .sobre-hero .sobre-hero-inner .texto,
  .sobre-hero .sobre-hero-inner .foto {
    width: 100%;
  }
  .sobre-hero .sobre-hero-inner .texto h1 {
    font-size: 52px;
  }
  .sobre-abordagem .abordagem-grid {
    grid-template-columns: 1fr;
  }
  .sobre-cta p {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .hover-circle {
    display: none !important;
  }
  .apenas-desktop {
    display: none;
  }
  .apenas-mobile {
    display: block;
  }
  .all-content {
    margin-bottom: 0;
  }
  #preloader .preloader-content {
    font-size: 3rem;
  }
  .menu-header {
    display: none;
  }
  section.header-menu {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    padding: 24px 0;
  }
  section.header-menu .contato {
    display: none;
  }
  .limit-site {
    margin: 0 auto;
  }
  .featured-banner .alert-available-projects {
    right: unset;
    left: 24px;
  }
  .featured-info {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0;
  }
  .featured-info .text-block.texto-principal {
    width: 100%;
    order: 1;
  }
  .featured-info .text-block.texto-principal h1 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 8px;
  }
  .featured-info .text-block.texto-principal .cta-contato {
    display: none;
  }
  .featured-info .text-block.texto-secundario {
    width: 100%;
    order: 2;
  }
  .last-projects {
    margin-top: 0;
    margin-bottom: 0;
    padding: 24px 0;
  }
  .last-projects .last-projects-header {
    padding: 24px 0;
  }
  .last-projects .last-projects-header h2 {
    font-size: 42px;
    line-height: 52px;
  }
  .last-projects .last-projects-header .see-all-link {
    display: none;
  }
  .last-projects .projects-grid {
    display: block;
  }
  .last-projects .projects-grid .project-item {
    margin-bottom: 30px;
  }
  .last-projects .projects-grid .project-item .project-image {
    aspect-ratio: 1.6;
  }
  .single-post .project-wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
  .single-post .project-wrapper .project-info {
    width: 100%;
    order: 1;
  }
  .single-post .project-wrapper .project-gallery {
    width: 100%;
    order: 2;
  }
  section.footer {
    position: relative;
    height: auto;
  }
  section.footer .wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    display: block;
  }
  section.footer .wrapper .menus {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
  }
  section.footer .wrapper .menus .menu,
  section.footer .wrapper .menus .social {
    width: 50%;
  }
  section.footer .wrapper .menus .contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    text-align: center;
    padding-top: 30px;
    width: 100%;
    display: block;
  }
  section.footer .wrapper .menus .contact a.contact-link {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }
  section.footer .subfooter {
    position: relative;
  }
}
