@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&family=Inria+Serif:wght@300;400;700&family=Inria+Sans:wght@300;400;700&display=swap");

:root {
  --bg: #ffffff;
  --text: #0d0d0d;
  --muted: #5f5f5f;
  --line: #0d0d0d;
  --soft: #f5f3ef;
  --gold: #b89962;
  --font-title: "Instrument Serif", "Inria Serif", serif;
  --font-body: "Inter", "Inria Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.site-header {
  width: 100%;
  height: 96px;
  padding: 22px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  z-index: 50;
}
.logo img {
  width: 170px;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-menu a {
  position: relative;
  padding: 14px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--line);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.page-main {
  padding-top: 96px;
}
.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 6.7vw 60px;
  gap: 48px;
}
.hero-content {
  max-width: 690px;
}
.hero-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards;
}
.hero-title strong {
  font-weight: 700;
  font-family: "Inria Serif", var(--font-title);
}
.hero-subtitle {
  margin-top: 14px;
  font-family: var(--font-title);
  font-size: clamp(24px, 2.2vw, 34px);
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
}
.hero-button {
  font-family: "Inria Sans", sans-serif;
  font-weight: 300; /* Light */
  margin-top: 70px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: min(520px, 100%);
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  font-size: clamp(22px, 2.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
  opacity: 0;
  animation: fadeFromBottom 0.9s ease forwards 0.42s;
}
.hero-button:hover {
  background: var(--line);
  color: #fff;
  transform: translateY(-4px);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-chair {
  width: min(560px, 92%);
  opacity: 0;
  animation: fadeFromRight 1s ease forwards 0.3s;
}

.section-page {
  min-height: calc(100vh - 96px);
  padding: 70px 7vw;
}
.page-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.page-title {
  font-family: var(--font-title);
  font-size: clamp(48px, 6vw, 94px);
  line-height: 0.95;
  font-weight: 400;
  max-width: 850px;
}
.page-text {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.grid-cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  border: 1px solid #ddd;
  background: #fff;
  padding: 34px;
  min-height: 230px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 24px;
}
.card h2,
.card h3 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
}
.card p {
  color: var(--muted);
  line-height: 1.6;
}
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}
.about-image {
  border-radius: 0;
  overflow: hidden;
  background: var(--soft);
}
.contact-box {
  border: 1px solid #ddd;
  padding: 42px;
  background: var(--soft);
}
.contact-box p {
  margin: 14px 0;
  color: var(--muted);
}
.whatsapp-button {
  margin-top: 28px;
  display: inline-flex;
  border: 2px solid #111;
  padding: 18px 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
}
.whatsapp-button:hover {
  background: #111;
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeFromLeft {
  from {
    opacity: 0;
    transform: translateX(-65px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeFromBottom {
  from {
    opacity: 0;
    transform: translateY(55px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeFromRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    padding: 18px 22px;
    align-items: center;
  }
  .logo img {
    width: 140px;
  }
  .menu-toggle {
    display: block;
    z-index: 60;
  }
  .nav-menu {
    position: fixed;
    inset: 82px 0 auto 0;
    background: #fff;
    padding: 24px;
    flex-direction: column;
    gap: 14px;
    border-bottom: 1px solid #eee;
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .page-main {
    padding-top: 82px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 24px 50px;
    text-align: left;
    gap: 28px;
  }
  .hero-button {
    height: 78px;
    margin-top: 42px;
  }
  .hero-visual {
    order: -1;
    justify-content: flex-end;
  }
  .hero-chair {
    width: min(360px, 86%);
  }
  .grid-cards,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .section-page {
    padding: 42px 24px;
  }
}

/* SERVIÇOS */

.services-main {
  min-height: 100vh;
}

.services-layout {
  min-height: calc(100vh - 96px);
  height: calc(100vh - 96px);
  padding: 40px 6.7vw 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.services-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
}

.services-scissors {
  width: auto;
  height: 90vh; /* controla altura real */
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: fadeFromRight 1s ease forwards 0.25s;
}

.services-content {
  width: 100%;
  opacity: 0;
  animation: fadeFromRight 0.9s ease forwards 0.18s;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
  width: 100%;
}

.service-card {
  min-height: 255px;
  padding: 28px 24px;
  border: 1px solid #d8d8d8;
  background: #fff;
  opacity: 0;
  transform: translateY(34px);
  animation: fadeCardUp 0.8s ease forwards;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:nth-child(1) {
  animation-delay: 0.22s;
}
.service-card:nth-child(2) {
  animation-delay: 0.32s;
}
.service-card:nth-child(3) {
  animation-delay: 0.42s;
}
.service-card:nth-child(4) {
  animation-delay: 0.52s;
}
.service-card:nth-child(5) {
  animation-delay: 0.62s;
}
.service-card:nth-child(6) {
  animation-delay: 0.72s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #000;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.services-left {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-right {
  order: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.14);
  opacity: 0.9;
  filter: brightness(0.75);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-family: "Inria Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.service-card a {
  margin-top: 22px;
  display: inline-block;
  font-family: "Inria Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}

.services-hashtag {
  position: fixed;
  left: 6.7vw;
  bottom: 34px;
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 34px);
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
  z-index: 2;
}

@keyframes fadeCardUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .services-layout {
    grid-template-columns: 0.55fr 1fr;
    gap: 36px;
  }

  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services-layout {
    height: auto;
    min-height: calc(100vh - 82px);
    overflow: visible;
    grid-template-columns: 1fr;
    padding: 30px 20px 90px;
  }

  .services-main {
    min-height: 100vh;
    overflow: visible;
  }

  .services-right {
    display: none;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .service-card a {
    margin-top: 14px;
    font-size: 11px;
  }

  .services-left {
    order: 1;
  }

  .services-right {
    display: none;
  }

  .services-hashtag {
    order: 3;
    grid-column: 1 / -1;

    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 42px;
    padding: 34px 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-title);
    font-size: 24px;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;

    opacity: 0;
    transform: translateY(22px);
    animation: mobileFooterFade 0.9s ease forwards 0.35s;
  }

  .services-hashtag::before,
  .services-hashtag::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 14px;
  }
}

@keyframes mobileFooterFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRODUTOS */

.products-main {
  min-height: 100vh;
  overflow: hidden;
}

.products-layout {
  height: calc(100vh - 96px);
  padding: 40px 6.7vw 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.products-left {
  max-width: 620px;
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards;
}

.products-title {
  font-family: var(--font-title);
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.95;
}

.products-title strong {
  font-family: "Inria Serif", var(--font-title);
  font-weight: 700;
}

.products-text {
  margin-top: 24px;
  max-width: 520px;
  color: var(--muted);
  font-family: "Inria Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.products-button {
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  font-family: "Inria Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.products-button:hover {
  opacity: 0.65;
  transform: translateY(-3px);
}

.products-right {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.products-image {
  height: 88vh;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: fadeFromRight 1s ease forwards 0.25s;
}

.products-hashtag {
  position: fixed;
  left: 6.7vw;
  bottom: 34px;
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 34px);
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
  z-index: 2;
}

@media (max-width: 900px) {
  .products-main {
    min-height: 100vh;
    overflow: visible;
  }

  .products-layout {
    height: auto;
    min-height: calc(100vh - 82px);
    overflow: visible;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    padding: 34px 22px 90px;
    gap: 28px;
  }

  .products-left {
    order: 1;
    max-width: 100%;
    text-align: left;
  }

  .products-right {
    order: 2;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .products-image {
    width: min(340px, 92%);
    max-height: none;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: -100px;
    transform: scale(1.15);
  }

  .products-title {
    font-size: clamp(52px, 16vw, 72px);
  }

  .products-text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .products-button {
    margin-top: 24px;
    padding: 14px 0;
    font-size: 12px;
  }

  .products-hashtag {
    order: 3;

    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 18px;
    padding: 34px 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;

    opacity: 0;
    transform: translateY(22px);
    animation: mobileFooterFade 0.9s ease forwards 0.35s;
  }

  .products-hashtag::before,
  .products-hashtag::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 14px;
  }
}

/* DEPOIMENTOS */

.testimonials-main {
  height: 100vh;
  overflow: hidden;
}

.testimonials-layout {
  height: calc(100vh - 96px);
  padding: 30px 0 0 6.7vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.testimonials-left {
  height: 100%;
  max-width: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.testimonials-carousel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: testimonialsScroll 100s linear infinite;
}

.testimonials-carousel:hover {
  animation-play-state: paused;
}

.testimonial-card {
  border: 1px solid #ddd;
  background: #fff;
  padding: 26px 28px;
  width: 430px;
  min-height: 190px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card {
  width: 420px;
  min-height: 190px;
  padding: 26px 28px;

  border: 1px solid #ddd;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateX(10px);
  border-color: #000;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-name {
  font-family: "Inria Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
}

.testimonial-text mark {
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.testimonial-stars {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 4px;
  color: #b89962;
}

.testimonials-right {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.testimonials-image {
  height: 75vh;
  max-height: 80%;
  width: auto;
  object-fit: contain;
  opacity: 0;
  animation: fadeFromRight 1s ease forwards 0.25s;
}

.testimonials-hashtag {
  position: fixed;
  left: 6.7vw;
  bottom: 34px;
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 34px);
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  z-index: 2;
}

@keyframes testimonialsScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (max-width: 900px) {
  .testimonials-layout {
    height: auto;
    min-height: calc(100vh - 82px);
    grid-template-columns: 1fr;
    padding: 40px 24px 90px;
  }

  .testimonials-left {
    max-width: 100%;
    height: 480px;
  }

  .testimonial-card,
  .testimonial-card:nth-child(3n),
  .testimonial-card:nth-child(4n) {
    width: min(100%, 420px);
  }

  .testimonials-right {
    display: none;
  }

  .testimonials-hashtag {
    order: 3;

    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 42px;
    padding: 34px 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-title);
    font-size: 24px;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;
    backdrop-filter: none;

    opacity: 0;
    transform: translateY(22px);
    animation: mobileFooterFade 0.9s ease forwards 0.35s;
  }

  .testimonials-hashtag::before,
  .testimonials-hashtag::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 14px;
  }
}

/* SOBRE NÓS */

.about-main {
  height: 100vh;
  overflow: hidden;
}

.about-stage {
  height: calc(100vh - 96px);
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-person {
  position: absolute;
  bottom: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.about-person img {
  height: 82vh;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(1);
  opacity: 0.92;
  transform: scale(1.02);
  transition:
    filter 0.45s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
}

.about-person:hover img,
.about-person.active img {
  filter: grayscale(0);
  opacity: 1;
  transform: none;
}

.about-person-junior {
  left: 22vw;
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
}

.about-person-blanche {
  right: 22vw;
  opacity: 0;
  animation: fadeFromRight 0.9s ease forwards 0.3s;
}

.about-info-card {
  position: absolute;
  width: min(760px, 58vw);
  min-height: 520px;
  padding: 70px 80px;
  top: 14vh;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    left 0.45s ease,
    right 0.45s ease;

  z-index: 4;
}

.about-info-card.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.about-info-card.card-right {
  right: 4vw;
  left: auto;
}

.about-info-card.card-left {
  left: 4vw;
  right: auto;
}

.about-info-card h1 {
  font-family: var(--font-title);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 32px;
}

.about-info-card p {
  font-family: "Intel One Mono", "Inria Sans", monospace;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: #111;
}

.about-hashtag {
  position: fixed;
  left: 6.7vw;
  bottom: 34px;
  font-family: var(--font-title);
  font-size: clamp(22px, 2vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
  padding: 6px 12px;
  z-index: 6;
}

@media (max-width: 900px) {
  .about-main {
    overflow: visible;
  }

  .about-stage {
    height: auto;
    min-height: calc(100vh - 82px);
    padding: 40px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .about-person {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .about-person img {
    height: 48vh;
    max-width: 100%;
  }

  .about-info-card {
    grid-column: 1 / -1;
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    width: 100%;
    min-height: auto;
    padding: 36px 28px;
    margin-top: 24px;
  }

 .about-hashtag {

    width: 100%;
    margin-top: 42px;
    padding: 34px 0 8px;
    margin-left: -30px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-title);
    font-size: 24px;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;

    opacity: 0;
    transform: translateY(22px);
    animation: mobileFooterFade 0.9s ease forwards 0.35s;
  }

  .about-hashtag::before,
  .about-hashtag::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 14px;
  }
}

/* CONTATO */

.contact-main {
  height: 100vh;
  overflow: hidden;
}

.contact-layout {
  height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 40px 6.7vw 0;
  align-items: flex-start;
}

.contact-left {
  max-width: 480px;
  opacity: 0;
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
}

.contact-left h1 {
  font-family: var(--font-title);
  font-size: 56px;
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 20px;
  font-family: "Inria Sans";
  font-size: 15px;
  color: var(--muted);
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  padding: 12px;
  font-family: "Inria Sans";
  font-size: 14px;
  background: transparent;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  margin-top: 10px;
  border: 1px solid #000;
  background: transparent;
  padding: 12px;
  font-family: "Inria Sans";
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
  color: #fff;
}

.contact-right {
  display: flex;
  align-items: flex-end;
}

.contact-image {
  height: 65vh;
  max-height: 75%;
  object-fit: contain;
  opacity: 0;
  animation: fadeFromRight 1s ease forwards 0.25s;
}

.contact-hashtag {
  position: fixed;
  left: 6.7vw;
  bottom: 34px;
  font-family: var(--font-title);
  font-size: 28px;
  background: rgba(255, 255, 255, 0.85);
  animation: fadeFromLeft 0.9s ease forwards 0.2s;
  padding: 6px 12px;
}

@media (max-width: 900px) {
  .contact-main {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .contact-layout {
    height: auto;
    min-height: calc(100vh - 82px);
    overflow: visible;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    padding: 32px 22px 90px;
    gap: 28px;
  }

  .contact-left {
    order: 1;
    max-width: 100%;
  }

  .contact-left h1 {
    font-size: 46px;
    margin-bottom: 22px;
  }

  .contact-info p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-form {
    margin-top: 24px;
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 12px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .contact-right {
    display: none;
  }

  .contact-hashtag {
    order: 2;

    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 42px;
    padding: 34px 0 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-title);
    font-size: 24px;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;

    opacity: 0;
    transform: translateY(22px);
    animation: mobileFooterFade 0.9s ease forwards 0.35s;
  }

  .contact-hashtag::before,
  .contact-hashtag::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    margin: 0 14px;
  }
}