:root {
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-pale: #f0deb8;
  --gold-dark: #9a7a4a;
  --black: #080808;
  --dark: #111111;
  --dark2: #161616;
  --dark3: #1c1c1c;
  --off-white: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.48);
}
*,
*::before,
*::after,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.2em;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--off-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
nav.stuck {
  background: rgba(8, 8, 8, 0.97);
  padding: 16px 64px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  backdrop-filter: blur(12px);
}
.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  line-height: 1.2;
}
.nav-brand small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.42em;
  color: rgba(201, 169, 110, 0.6);
  font-weight: 400;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* HERO */
.hero {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(201, 169, 110, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(201, 169, 110, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 56px 100px 80px;
}
.h-eyebrow {
  font-size: 0.54rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.h-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.h-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.h-title em {
  font-style: italic;
  color: var(--gold);
}
.h-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.32);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}
.h-desc {
  font-size: 0.72rem;
  line-height: 2.05;
  color: rgba(245, 240, 232, 0.5);
  max-width: 400px;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
}
.h-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.95s forwards;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 15px 42px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transition: left 0.3s;
}
.btn-gold:hover::before {
  left: 0;
}
.btn-gold span {
  position: relative;
  z-index: 1;
}
.btn-line {
  color: var(--gold-light);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
  cursor: pointer;
}
.btn-line::after {
  content: "→";
  font-size: 1.1rem;
}
.btn-line:hover {
  gap: 18px;
}
.h-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.22);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.h-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.h-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--off-white);
  animation: sl 2s ease infinite;
}
@keyframes sl {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Hero right ornament */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ornament {
  position: relative;
  width: 320px;
  height: 400px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}
.orn-out {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.18);
}
.orn-in {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 169, 110, 0.07);
}
.orn-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.orn-ico {
  font-size: 4rem;
  opacity: 0.15;
  line-height: 1;
}
.orn-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
}
.orn-div {
  width: 56px;
  height: 1px;
  background: rgba(201, 169, 110, 0.28);
}
.orn-oab {
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.18);
}
.hero-badge {
  position: absolute;
  bottom: 80px;
  right: 60px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}
.hero-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-badge small {
  font-size: 0.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.32);
}

/* SEPARADOR */
.sep {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 169, 110, 0.22),
    transparent
  );
  margin: 0 80px;
}

/* SOBRE */
.img-capa {
  width: 100%;
}
.sobre {
  padding: 110px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.s-frame {
  position: relative;
  max-width: 400px;
}
.s-border {
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  z-index: 0;
}
.s-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.s-photo svg {
  opacity: 0.14;
}
.s-photo p {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.16);
}
.s-tag {
  position: absolute;
  bottom: -24px;
  right: -15px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  padding: 18px 24px;
}
.s-tag strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.s-tag small {
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.sec-label {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}
.sec-text {
  font-size: 0.72rem;
  line-height: 2.1;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.oab-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 20px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.38);
}
.oab-chip::before {
  content: "⚖";
  font-size: 0.9rem;
  color: var(--gold);
}

/* ÁREAS */
.areas {
  padding: 100px 80px;
  background: var(--dark2);
}
.areas-header {
  text-align: center;
  margin-bottom: 64px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.area-card {
  background: var(--dark);
  padding: 50px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.04);
  transition: background 0.4s;
}
.area-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.5s ease;
}
.area-card:hover {
  background: #131313;
}
.area-card:hover::after {
  width: 100%;
}
.a-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.area-card:hover .a-num {
  color: rgba(201, 169, 110, 0.15);
}
.a-ico {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}
.a-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 14px;
}
.a-desc {
  font-size: 0.63rem;
  line-height: 1.95;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.02em;
}

/* VALORES */
.valores {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 169, 110, 0.09);
}
.v-item {
  background: var(--black);
  padding: 38px 30px;
}
.v-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}
.v-lbl {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.32);
  margin-bottom: 10px;
}
.v-desc {
  font-size: 0.62rem;
  color: rgba(245, 240, 232, 0.28);
  line-height: 1.85;
}

/* DEPOIMENTOS */
.testemunhos {
  padding: 100px 80px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.testemunhos::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 28rem;
  color: rgba(201, 169, 110, 0.025);
  position: absolute;
  top: -80px;
  left: 30px;
  line-height: 1;
  pointer-events: none;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.t-card {
  background: var(--dark);
  padding: 40px 32px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  position: relative;
}
.t-card::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.38;
  position: absolute;
  top: 20px;
  left: 28px;
  line-height: 1;
}
.t-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.62);
  margin-bottom: 28px;
  padding-top: 24px;
}
.t-author {
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding-top: 16px;
}
.t-stars {
  color: var(--gold);
  font-size: 0.65rem;
  margin-bottom: 8px;
  letter-spacing: 3px;
}

/* CONTATO */
.contato {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.c-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.c-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.c-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.c-item-title {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.c-item-text {
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--muted);
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-form input,
.c-form textarea,
.c-form select {
  background: var(--dark3);
  border: 1px solid rgba(201, 169, 110, 0.12);
  color: var(--off-white);
  padding: 14px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.c-form input:focus,
.c-form textarea:focus,
.c-form select:focus {
  border-color: rgba(201, 169, 110, 0.38);
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: rgba(245, 240, 232, 0.2);
}
.c-form textarea {
  height: 118px;
  resize: none;
}
.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 15px 0;
  cursor: pointer;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}
.form-submit:hover {
  background: var(--gold-light);
}
.insta{
  text-decoration: none;
}

.btn-form{
  text-decoration: none;
  color: var(--black);
}

.btn-form:hover{
  background-color: var(--off-white);
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 56px 80px 36px;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.foot-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.foot-brand small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.38em;
  color: rgba(201, 169, 110, 0.5);
  font-weight: 400;
  margin-top: 3px;
}
.foot-text {
  font-size: 0.65rem;
  line-height: 1.9;
  color: var(--muted);
}
.foot-col h4 {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.foot-col ul a {
  font-size: 0.65rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.foot-col ul a:hover {
  color: var(--gold-light);
}
.foot-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-bottom p {
  font-size: 0.54rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.06em;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 169, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  background: var(--gold);
  color: var(--black);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
  transition: all 0.3s;
  cursor: pointer;
  animation: pulse 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  background: var(--gold-light);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.35);
  }
  50% {
    box-shadow: 0 8px 36px rgba(201, 169, 110, 0.55);
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-links li:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-links li:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-links li:nth-child(4) { transition-delay: 0.34s; }
.mobile-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-links a:hover {
  color: var(--gold);
}
.mobile-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.42s, transform 0.35s ease 0.42s, background 0.3s, color 0.3s;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  nav {
    padding: 18px 24px;
  }
  nav.stuck {
    padding: 12px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 130px 24px 80px;
  }
  .sobre,
  .valores,
  .contato {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }
  .areas {
    padding: 70px 24px;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .testemunhos {
    padding: 70px 24px;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 48px 24px 28px;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .sep {
    margin: 0 24px;
  }
  .c-form-row {
    grid-template-columns: 1fr;
  }
  .h-scroll {
    left: 50%;
  }
}
