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

:root {
  --navy:       #0D104D;
  --navy-alt:   rgba(255,255,255,0.03);
  --gold:       #C2A163;
  --white:      #FFFFFF;
  --text:       rgba(255,255,255,0.85);
  --muted:      rgba(255,255,255,0.5);
  --border:     rgba(255,255,255,0.1);
  --font:       'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 16, 77, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.monogram-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-mono {
  height: 28px;
  opacity: 0.9;
}

/* NAV — oculto em mobile, visível no desktop */
.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.15s;
}

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

/* NAV mobile overlay */
.nav.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 60px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px 28px;
  gap: 22px;
}

.nav.open a { font-size: 15px; }

/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

@media (min-width: 720px) {
  .nav { display: flex; }
  .hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 20px 60px;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-monogram {
  height: 160px;
  width: auto;
  margin: 0 auto 40px;
  display: block;
}

.eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-name {
  font-size: clamp(34px, 9vw, 60px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-brand {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; color: var(--navy); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(194,161,99,0.45);
}

.btn-outline:hover { border-color: var(--gold); opacity: 1; color: var(--gold); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 20px; }
.section-alt { background: var(--navy-alt); }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-inner.center { text-align: center; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.label {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 10px;
}

.title {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.link-ext {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
  margin-bottom: 6px;
}

.link-ext:hover { text-decoration: underline; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.sobre-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================================
   LINKEDIN POSTS
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.15s;
}

.post-card:hover { border-color: rgba(194,161,99,0.4); }

.post-date {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 10px;
}

.post-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   INSTAGRAM EMBEDS
   ============================================================ */
.ig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto 36px;
  max-width: 960px;
}

@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

.ig-embed-wrap {
  display: flex;
  justify-content: center;
  min-height: 200px;
}

.ig-embed-wrap .instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

/* Brevo iframe embed */
.brevo-embed {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 16px;
}

.brevo-embed iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

@media (max-width: 480px) {
  .brevo-embed iframe { height: 520px; }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { border-color: rgba(194,161,99,0.5); }
.newsletter-form .btn { width: 100%; justify-content: center; }

@media (min-width: 520px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { flex: 1; }
  .newsletter-form .btn { width: auto; }
}

.fine {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 11px; color: var(--muted); }
