/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C89B5A;
  --gold-light: #D4A96A;
  --gold-pale: #E8CFA0;
  --text-white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.72);
  --overlay-dark: rgba(20, 10, 5, 0.68);
  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.28);
}

body {
  font-family: 'Jost', sans-serif;
  background: #1a1008;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url('../img/fundohero-mari.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Gradiente refinado: preto quente → transparente da esquerda; leve vinheta no topo/baixo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18, 8, 2, 0.82) 0%, rgba(18, 8, 2, 0.55) 45%, rgba(18, 8, 2, 0.10) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(18, 8, 2, 0.30) 0%, transparent 20%, transparent 75%, rgba(18, 8, 2, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 64px 6vw 48px;
  max-width: 770px;
}

.inner {
  width: 100%;
}

/* ─────────────────────────────────────────
   PRÉ-HEADLINE
───────────────────────────────────────── */
.pre-headline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.pre-headline::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.pre-headline span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   HEADLINE
───────────────────────────────────────── */
.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.headline .gold {
  color: var(--gold-pale);
  font-weight: 600;
  font-style: italic;
}

/* ─────────────────────────────────────────
   BODY TEXT
───────────────────────────────────────── */
.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ─────────────────────────────────────────
   FORM
───────────────────────────────────────── */
.form-wrap {
  animation: fadeUp 0.6s 0.3s ease both;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  position: relative;
}

.field input,
.field-full input {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.field input::placeholder,
.field-full input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field-full input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.field-full {
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   CTA BUTTON
───────────────────────────────────────── */
.cta-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 6px;
  color: #1a0e04;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(200, 155, 90, 0.35), 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 155, 90, 0.50), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

/* ─────────────────────────────────────────
   GRATUITO TAG
───────────────────────────────────────── */
.gratuito-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  font-weight: 300;
}

.gratuito-tag strong {
  color: var(--gold);
  font-weight: 600;
}

.gratuito-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SEÇÃO SOBRE
───────────────────────────────────────── */
.sobre {
  background: #100a04;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sobre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.sobre-foto-wrap {
  position: relative;
}

.sobre-foto-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.sobre-foto-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.sobre-foto-frame img {
  width: 100%;
  display: block;
  filter: brightness(0.93) contrast(1.05);
  transition: filter 0.5s ease;
}

.sobre-foto-frame:hover img {
  filter: brightness(1) contrast(1.05);
}

.sobre-foto-ornament {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}

.sobre-foto-ornament-br {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 2px;
}

.sobre-texto {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sobre-pre {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.sobre-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.sobre-titulo span {
  color: var(--gold-light);
  font-style: italic;
}

.sobre-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sobre-bio {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

.sobre-credenciais {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.credencial-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.87rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
}

.credencial-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #0c0702;
  text-align: center;
  padding: 28px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(200, 155, 90, 0.2);
}

/* ─────────────────────────────────────────
   RESPONSIVO — TABLET
───────────────────────────────────────── */
@media (max-width: 820px) {
  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-foto-wrap {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVO — MOBILE
───────────────────────────────────────── */
@media (max-width: 600px) {
  body {
    text-align: center;
  }

  .hero {
    background-image: url('../img/fundomobile.webp');
    background-position: top center;
    padding-top: 230px;
  }

  .pre-headline,
  .gratuito-tag,
  .credencial-item {
    justify-content: center;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(18, 8, 2, 0.00) 0%, rgba(18, 8, 2, 0.50) 40%, rgba(18, 8, 2, 0.88) 70%, rgba(18, 8, 2, 0.97) 100%);
  }
}
