/* ===========================
   VARIÁVEIS
   =========================== */

:root {
  --color-bg: #050608;
  --color-bg-soft: #0b0f16;
  --color-bg-gradient: radial-gradient(
      circle at top left,
      #0b1d38 0,
      #050608 45%,
      #1b1210 100%
    );
  --color-text: #f5f5f7;
  --color-text-soft: #c2c3c7;
  --color-gold: #c4a249; /* dourado pedido */
  --color-gold-soft: rgba(196, 162, 73, 0.4);
  --color-blue: #0a3d62;
  --color-blue-soft: rgba(10, 61, 98, 0.7);
  --color-border: rgba(255, 255, 255, 0.08);

  --font-sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);

  --container-width: 1120px;
  --section-padding-y: 80px;
}

/* ===========================
   BASE
   =========================== */

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ===========================
   HEADER
   =========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 8, 0.96);
  border-bottom: 1px solid var(--color-border);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: radial-gradient(
    circle at top,
    rgba(196, 162, 73, 0.18),
    transparent 60%
  );
}

.header__titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__office {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.header__name {
  font-size: 14px;
  font-weight: 600;
}

.header__role {
  font-size: 11px;
  color: var(--color-text-soft);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.header__link {
  position: relative;
  color: var(--color-text-soft);
  transition: color 0.2s ease;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}

.header__link:hover {
  color: var(--color-text);
}

.header__link:hover::after {
  width: 100%;
}

/* ===========================
   BUTTONS (dourado flat)
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: #050608;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
}

.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.9);
}

.btn--outline {
  border-color: var(--color-gold-soft);
  color: var(--color-text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-gold);
  background: rgba(196, 162, 73, 0.06);
}

.btn--ghost {
  border-color: transparent;
  background: transparent;
  color: var(--color-text-soft);
}

.btn--ghost:hover {
  color: var(--color-text);
}

.btn--full {
  width: 100%;
}

.btn--large {
  padding: 14px 32px;
  font-size: 14px;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  background: radial-gradient(
      circle at top left,
      rgba(10, 61, 98, 0.25),
      transparent 55%
    ),
    var(--color-bg);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(5, 6, 8, 0.96) 0%,
    rgba(5, 6, 8, 0.9) 55%,
    rgba(5, 6, 8, 0.65) 100%
  );
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right; /* ALTERADO */
  opacity: 0.95;
  mix-blend-mode: normal;
  transform: scale(1.04); /* leve ajuste */
}


.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
  z-index: 1;
}

.hero__text-block {
  max-width: 540px;
  padding: 80px 0 60px;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.2;
}

.hero__subtitle {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.hero__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: var(--color-text-soft);
  background: rgba(5, 6, 8, 0.7);
}

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

.hero__disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--color-text-soft);
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: var(--section-padding-y) 0;
}

.section--dark {
  background: radial-gradient(
      circle at top left,
      rgba(10, 61, 98, 0.18),
      transparent 55%
    ),
    var(--color-bg-soft);
}

.section--dark-soft {
  background: #070a10;
}

.section--gradient {
  background: var(--color-bg-gradient);
}

.section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.section__content--center {
  align-items: center;
  text-align: center;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section__header--left {
  text-align: left;
  margin: 0;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 8px;
}

.section__subtitle {
  font-size: 14px;
  color: var(--color-text-soft);
}

.section__text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.section__cta-center {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

/* ===========================
   GRID / CARDS
   =========================== */

.grid {
  display: grid;
  gap: 22px;
}

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

.card {
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  background: rgba(5, 6, 8, 0.94);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.card--border {
  border-image: linear-gradient(
      to bottom right,
      rgba(196, 162, 73, 0.5),
      rgba(10, 61, 98, 0.4)
    )
    1;
}

.card__title {
  font-size: 15px;
  margin-bottom: 6px;
}

.card__text {
  font-size: 13px;
  color: var(--color-text-soft);
}

/* ===========================
   LISTAS
   =========================== */

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list--simple li {
  font-size: 13px;
  color: var(--color-text-soft);
}

/* ===========================
   LADO DESTACADO / ABOUT
   =========================== */

.section__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section__side--accent {
  position: relative;
}

.section__side--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 162, 73, 0.5);
  opacity: 0.6;
  pointer-events: none;
}

.section__side--about {
  align-items: stretch;
}

.about-card {
  height: 100%;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top left,
      rgba(10, 61, 98, 0.35),
      rgba(5, 6, 8, 0.96)
    );
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about-card__title {
  font-size: 16px;
  font-weight: 600;
}

.about-card__note {
  margin-top: 4px;
  font-size: 11px;
  color: var(--color-text-soft);
}

/* ===========================
   CONTATO BOX
   =========================== */

.contact-box {
  max-width: 580px;
  width: 100%;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top,
      rgba(196, 162, 73, 0.2),
      rgba(5, 6, 8, 0.96)
    );
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-box__text {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.contact-box__note {
  font-size: 11px;
  color: var(--color-text-soft);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  border-top: 1px solid var(--color-border);
  background: #050608;
  padding: 18px 0;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--color-text-soft);
}

.footer__brand {
  font-weight: 500;
}

.footer__desc {
  display: block;
}

.footer__note {
  max-width: 360px;
}

/* ===========================
   RESPONSIVO
   =========================== */

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    opacity: 100;
    background-position: center;
  }

  .hero__text-block {
    max-width: 100%;
    padding: 70px 0 46px;
  }

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

  .section__content--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header__content {
    padding: 5px 5px;
  }

  .hero {
    min-height: 99vh;
  }

  /* FOTO NO MOBILE
     - 30% na horizontal -> puxa o enquadramento pra direita
     - 25% na vertical  -> sobe um pouco
     - opacity menor pro texto respirar
  */
  @media (max-width: 768px) {
  .hero__image {
    background-size: 78%;
    background-position: 180% 10%;
    /*        X%   Y%   */
  }
}
  /* TEXTO UM POUCO MAIS À ESQUERDA E COM MAIS RESPIRO EM CIMA */
  .hero__text-block {
    max-width: 85%;
    padding: 60px 1px 10px;
    margin-left: 20; /* centralizado um pouco mais pra esquerda, sem jogar pra direita */
  }

  .hero__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 13px;
  }

  .hero__tags {
    justify-content: flex-start;
  }

  .grid--cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

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

  .btn {
    width: 110%;
    justify-content: center;
  }
}


  .hero__title {
    font-size: 26px;
  }

  .grid--cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}
