:root {
  --bg: #0b0a09;
  --bg-soft: #151311;
  --gold: #c7a06a;
  --gold-strong: #e0c08b;
  --ink: #f6f1e6;
  --muted: #b9b2a7;
  --card: #1c1916;
  --line: rgba(199, 160, 106, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #1d1914 0%, var(--bg) 50%);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(199, 160, 106, 0.08), transparent 40%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 80px
    );
}

.hero {
  padding: 40px 8vw 80px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(to right, rgba(11, 10, 9, 0.9) 20%, rgba(11, 10, 9, 0.6) 100%), url('fundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  background-color: #0d0b09;
  background-image: url("adv.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand__mark::after {
  content: none;
}


.brand__photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  background: #0d0b09;
}

.brand__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--muted);
}

.brand__text strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--ink);
}

.hero__content {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold);
}

.hero__copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  margin: 12px 0 16px;
}

.subtitle {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.1rem;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero__stats strong {
  font-size: 1.3rem;
  font-family: "Cormorant Garamond", serif;
}

.hero__stats span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.btn {
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

.btn--light {
  background: transparent;
  color: var(--gold-strong);
  border-color: var(--gold-strong);
}

.hero__panel {
  display: flex;
  justify-content: center;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 20px;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.panel h2 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 8px;
}

.panel__label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.panel ul {
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 72px 8vw;
}

.section__head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 8px;
}

.section__head p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  min-height: 180px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
}

.section--split {
  background: var(--bg-soft);
  padding: 88px 8vw;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.split--about {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
  gap: 48px;
}

.quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.quote span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-photo {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.about-photo img {
  width: min(420px, 80vw);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.team__member {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #140f0a;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.team__member span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section--highlight {
  background: linear-gradient(120deg, rgba(199, 160, 106, 0.12), transparent);
}

.cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact__info {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
}

.contact__box {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 18px;
}

.footer {
  padding: 32px 8vw 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.footer a {
  color: var(--gold-strong);
  text-decoration: none;
}

.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 720px) {
  .hero {
    padding: 32px 6vw 56px;
  }

  .hero {
    padding-top: 28px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .hero__content {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy h1 {
    font-size: clamp(1.85rem, 6.2vw, 2.35rem);
  }

  .subtitle {
    font-size: 1rem;
  }

  .panel {
    max-width: 100%;
  }

  .section {
    padding: 56px 6vw;
  }

  .section--split {
    padding: 72px 6vw;
  }

  .split--about {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-photo {
    order: 1;
    width: 100%;
  }

  .split--about > :first-child {
    order: 2;
  }

  .about-photo {
    justify-content: flex-start;
  }

  .about-photo img {
    width: 100%;
    max-width: 360px;
  }

  .card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
