@import url(https://fonts.googleapis.com/css?family=Merriweather:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #B8975A;
  --gold-light: #D4B47A;
  --gold-pale: #F5EDD8;
  --ink: #0E0E0E;
  --ink-soft: #2C2A26;
  --gray-mid: #6B6660;
  --gray-light: #F0EDE8;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --serif: 'Merriweather', sans-serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 6vw;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-logo span {
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--ink);

  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 6vw 6rem;
  position: relative;

}

.hero-left::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.whatsapp-link {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 3%;
  right: 2%;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: 1px 1px 2px rgb(136, 136, 136);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  box-shadow: 0 0 0 0 var(#25d366);
  animation: sonar 2s infinite;

  a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    left: 2px;
    text-decoration: none;
    flex-grow: 1;

  }
}

@keyframes sonar {
  0% {
    box-shadow: 0 0 0 0 var(#25d366);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(108, 92, 231, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
  }
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.05);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, transparent 45%);
}

.hero-quote {
  position: absolute;
  bottom: 3rem;
  right: 5vw;
  z-index: 2;
  text-align: right;
}

.hero-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

.hero-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
}

/* ── NUMBERS ── */
#numeros {
  background: var(--gold);
  padding: 4rem 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.num-item {
  text-align: center;
}

.num-value {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.num-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.6);
  margin-top: 0.5rem;
}

/* ── SOBRE ── */
#sobre {
  padding: 8rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-img-col {
  position: relative;
}

.sobre-img-frame {
  position: relative;
  padding: 1.5rem 0 0 1.5rem;
}

.sobre-img-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  border: 1px solid var(--gold);
}

.sobre-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: grayscale(15%);
}

.sobre-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.sobre-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.sobre-title em {
  font-style: italic;
  color: var(--gold);
}

.sobre-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.sobre-creds {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

.cred-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.cred-text strong {
  font-weight: 500;
}

/* ── ÁREAS ── */
#areas {
  padding: 8rem 6vw;
  background: var(--ink);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.area-card {
  background: var(--ink);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.area-card:hover {
  background: rgba(184, 151, 90, 0.05);
  border-color: rgba(184, 151, 90, 0.25);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184, 151, 90, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.area-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.area-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.area-whatsapp {
  background-color: #25d366;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 0.9rem;
  border-radius: 20px;
  display: block;
  justify-self: right;
  transition: background 0.25s, transform 0.2s;

}

.area-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: rgba(37, 211, 101, 0.379) 0px 7px 29px 0px;
}

/* ── PROCESSO ── */
#processo {
  padding: 8rem 6vw;
  background: var(--cream);
}

.processo-header {
  margin-bottom: 5rem;
}

.processo-header .section-title {
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.step-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
}

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.2;
  text-align: justify;
}

/* ── DEPOIMENTOS ── */
#depoimentos {
  padding: 8rem 6vw;
  background: var(--white);
}

.dep-header {
  margin-bottom: 4rem;
}

.dep-header .section-title {
  color: var(--ink);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dep-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-light);
  position: relative;
}

.dep-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.dep-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.dep-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dep-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
}

.dep-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.dep-role {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ── CONTATO ── */
#contato {
  padding: 8rem 6vw;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contato-left .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 151, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.info-val {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 300;

  a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
  background: var(--ink);
}

.form-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  text-align: center;
  transition: background 0.25s, transform 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 3rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184, 151, 90, 0.12);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold-light);
  text-decoration: none;
}

.footer-logo span {
  font-style: italic;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 50vh;
  }

  #numeros {
    grid-template-columns: repeat(2, 1fr);
  }

  #sobre {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    padding: 1.5rem;
  }

  .step-desc {
    font-size: 1rem;
  }

  .steps::after {
    display: none;
  }

  .dep-grid {
    grid-template-columns: 1fr;
  }

  #contato {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 3%;
    right: 2%;
    background-color: #25d366;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(136, 136, 136);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    box-shadow: 0 0 0 0 var(#25d366);
    animation: sonar 2s infinite;

    a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      left: 2px;
      text-decoration: none;
      flex-grow: 1;

    }
  }
}