/* === TOKENS extraídos dos criativos editados do Instagram === */
  :root {
    --bg: #F4F2EE;             /* off-white quente, base do material editado */
    --bg-frame: #FFFFFF;       /* branco puro dentro dos frames */
    --bg-soft: #ECE7DC;        /* tom mais quente para alternar seções */

    --gold: #B79866;           /* dourado do logo */
    --gold-deep: #8C7349;      /* dourado escuro - mais legível em fundo claro */
    --gold-light: #D4BB8A;
    --gold-faded: #E8DFCD;     /* divisores e bordas muito sutis */

    --ink: #1F1F1F;            /* preto suave - texto principal */
    --ink-soft: #595959;       /* secundário */
    --ink-faded: #8E8E8E;      /* terciário, metas */

    --whatsapp: #25D366;
    --whatsapp-hover: #1DA851;

    --font-display: 'Bodoni Moda', 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-accent: 'Cinzel', serif;

    --frame-radius: 28px;
    --container: 1160px;
  }

  /* === RESET === */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }

  /* Tipografia editorial - headlines em Bodoni dourada italic, casa com o material editado */
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    color: var(--gold-deep);
    margin: 0 0 0.4em;
    letter-spacing: -0.005em;
  }
  h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    font-style: italic;
  }
  h1 .reg { font-style: normal; }
  h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    font-weight: 500;
    font-style: italic;
  }
  h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-weight: 500;
    font-style: italic;
  }
  p { margin: 0 0 1em; }

  ::selection { background: var(--gold); color: var(--bg-frame); }
  *:focus-visible {
    outline: 1.5px solid var(--gold-deep);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* === UTIL === */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  @media (min-width: 700px) { .container { padding: 0 2.5rem; } }

  /* Frame dourado - assinatura visual do material */
  .frame {
    background: var(--bg-frame);
    border: 1px solid var(--gold);
    border-radius: var(--frame-radius);
    padding: clamp(1.5rem, 3vw, 3rem);
    position: relative;
  }
  .frame.frame-soft { border-color: var(--gold-faded); }

  .eyebrow {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-block;
  }

  .gold-line {
    width: 56px;
    height: 1px;
    background: var(--gold);
    border: 0;
    margin: 1.25rem 0;
    display: block;
  }
  .gold-line.center { margin-left: auto; margin-right: auto; }

  /* === HEADER === */
  header.site {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  }
  header.site.scrolled {
    background: rgba(244, 242, 238, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gold-faded);
  }
  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .header-logo img { height: 56px; width: auto; }
  nav.primary {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  nav.primary a {
    color: var(--ink);
    transition: color 0.2s ease;
    position: relative;
  }
  nav.primary a:hover { color: var(--gold-deep); }
  nav.primary a.has-sub::after {
    content: '·';
    margin-left: 0.4rem;
    color: var(--gold-deep);
    font-size: 1.1em;
  }
  .header-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
  }
  .header-action:hover { background: var(--gold); color: var(--bg-frame); }

  @media (max-width: 920px) {
    nav.primary { display: none; }
    .header-action span { display: none; }
  }

  /* Espaço pro header fixo */
  main { padding-top: 96px; }

  /* === HERO === */
  .hero {
    padding: 1rem 0 3rem;
  }
  @media (min-width: 800px) { .hero { padding: 1.5rem 0 4.5rem; } }

  .hero-frame {
    display: grid;
    grid-template-columns: 1.1fr 0.75fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    overflow: hidden;
  }
  @media (max-width: 900px) {
    .hero-frame { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
  }

  .hero-text { max-width: 540px; }
  .hero-text h1 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .hero-text h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-text .lead {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 480px;
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
  }

  .hero-photo {
    aspect-ratio: 3 / 4;
    max-width: 380px;
    margin-left: auto;
    border-radius: calc(var(--frame-radius) - 8px);
    overflow: hidden;
    position: relative;
    background: var(--ink);
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .hero-photo:hover img { transform: scale(1.02); }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(31, 31, 31, 0.25));
    pointer-events: none;
  }

  /* CTA buttons - estilo editorial, não SaaS */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    border-radius: 999px;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
  }
  .btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--gold);
  }
  .btn-outline:hover { background: var(--gold); color: var(--bg-frame); }

  .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gold);
    transition: all 0.2s ease;
  }
  .btn-link:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
  .btn-link::after {
    content: '→';
    transition: transform 0.2s ease;
  }
  .btn-link:hover::after { transform: translateX(3px); }

  /* === SECTIONS === */
  section { padding: 4rem 0; }
  @media (min-width: 800px) { section { padding: 6rem 0; } }

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

  .section-head {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
  }
  .section-head .eyebrow { margin-bottom: 0.75rem; }
  .section-head h2 { margin-top: 0; }
  .section-head .lead {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 1rem auto 0;
  }

  /* === PULL QUOTE === */
  .pull-quote {
    margin: 0 0 2rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 2px solid var(--gold);
    background: linear-gradient(90deg, rgba(183, 152, 102, 0.06), transparent 80%);
  }
  .pull-quote .label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    display: block;
    margin-bottom: 0.6rem;
  }
  .pull-quote .quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.25;
    color: var(--gold-deep);
    margin: 0;
  }
  .pull-quote .quote strong {
    font-weight: 700;
    color: var(--gold);
    font-style: italic;
  }

  /* === FAIXA INSTITUCIONAL === */
  .institutional {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--gold-faded);
    border-bottom: 1px solid var(--gold-faded);
  }
  .institutional .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .institutional .row span.dot {
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    align-self: center;
  }

  /* === ÁREAS - lista editorial vertical numerada === */
  .areas-list { max-width: 920px; margin: 0 auto; }
  .area-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gold-faded);
    transition: padding 0.3s ease;
  }
  .area-item:first-child { border-top: 1px solid var(--gold-faded); }
  .area-item:hover { padding-left: 0.75rem; }
  .area-num {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.85rem;
    color: var(--gold);
    line-height: 1;
    grid-row: span 2;
  }
  .area-content h3 { margin: 0 0 0.4rem; }
  .area-content p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 580px;
    margin: 0;
  }
  .area-cta { align-self: center; }
  @media (max-width: 700px) {
    .area-item { grid-template-columns: 50px 1fr; gap: 0.75rem; padding: 1.5rem 0; }
    .area-num { font-size: 1.5rem; }
    .area-cta { grid-column: 2; margin-top: 0.5rem; }
  }

  /* === SOBRE === */
  .sobre-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(1.75rem, 5vw, 4.5rem);
    align-items: center;
  }
  @media (max-width: 900px) { .sobre-grid { grid-template-columns: 1fr; gap: 2rem; } }

  .sobre-photo {
    aspect-ratio: 3 / 4;
    max-width: 340px;
    border-radius: var(--frame-radius);
    overflow: hidden;
    border: 1px solid var(--gold);
    padding: 10px;
    background: var(--bg-frame);
  }
  .sobre-photo .inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: calc(var(--frame-radius) - 10px);
  }
  .sobre-photo img { width: 100%; height: 100%; object-fit: cover; }

  .sobre-text h2 { margin-top: 0.75rem; margin-bottom: 1.25rem; }
  .sobre-text p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .sobre-text p strong { color: var(--ink); font-weight: 500; }
  .sobre-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gold-faded);
    border-bottom: 1px solid var(--gold-faded);
  }
  .sobre-num .n {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1;
    color: var(--gold-deep);
  }
  .sobre-num .l {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 0.5rem;
  }

  /* === CONTEÚDO - cards minimalistas, sem sombras === */
  .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  .content-item {
    border-top: 1px solid var(--gold);
    padding-top: 2rem;
    transition: opacity 0.2s ease;
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
  }
  .content-item:hover h3 { color: var(--gold-deep); }
  .content-item:hover { opacity: 0.92; }
  .content-item .cat {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .content-item h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    transition: color 0.2s ease;
  }
  .content-item p {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }
  .content-item .meta {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faded);
  }

  /* === FAQ === */
  .faq-wrap { max-width: 880px; margin: 0 auto; }
  details {
    border-bottom: 1px solid var(--gold-faded);
    padding: 0;
  }
  details:first-child { border-top: 1px solid var(--gold-faded); }
  summary {
    padding: 1.25rem 1.5rem 1.25rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
    line-height: 1.3;
  }
  summary:hover { color: var(--gold-deep); }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%238C7349' stroke-width='1.2'><line x1='3' y1='9' x2='15' y2='9'/><line x1='9' y1='3' x2='9' y2='15' class='v'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  details[open] summary::after { transform: rotate(45deg); }
  details .answer {
    padding: 0 0 1.5rem;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 0.9rem;
    max-width: 700px;
  }

  /* === CTA FINAL === */
  .cta-final {
    text-align: center;
    padding: 5.5rem 0;
  }
  .cta-final h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    max-width: 760px;
    margin: 0.75rem auto 1.25rem;
    color: var(--gold-deep);
  }
  .cta-final h2 em { color: var(--gold); }
  .cta-final p {
    color: var(--ink-soft);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 0.98rem;
  }

  /* === FOOTER === */
  footer.site {
    background: var(--bg-soft);
    padding: 4rem 0 2rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
  .footer-brand img {
    height: 48px; width: auto;
    margin-bottom: 1.25rem;
  }
  .footer-brand p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    font-style: normal;
    margin: 0 0 1.25rem;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a { color: var(--ink-soft); transition: color 0.2s ease; }
  .footer-col a:hover { color: var(--gold-deep); }
  .footer-bottom {
    border-top: 1px solid var(--gold-faded);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--ink-faded);
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* === WHATSAPP FLUTUANTE - mais discreto === */
  .wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.18);
    z-index: 100;
    transition: all 0.25s ease;
  }
  .wa-float:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
  }
  .wa-float svg {
    width: 26px; height: 26px;
    fill: var(--bg);
  }

  /* === ANIMAÇÕES === */
  [data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  [data-animate].in {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1; transform: none; transition: none; }
  }

  /* === VÍDEOS / REELS === */
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (max-width: 800px) {
    .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  }
  @media (max-width: 520px) {
    .videos-grid { grid-template-columns: 1fr; max-width: 320px; }
  }

  .video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink);
    border: 1px solid var(--gold);
    padding: 8px;
    transition: transform 0.3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
  }
  .video-card:hover { transform: translateY(-4px); }
  .video-card .v-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
  }
  .video-card .v-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .video-card:hover .v-frame img { transform: scale(1.04); }
  .video-card .v-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(31, 31, 31, 0.85));
  }
  .video-card .v-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(244, 242, 238, 0.95);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }
  .video-card:hover .v-play {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.08);
  }
  .video-card .v-play::after {
    content: '';
    width: 0; height: 0;
    border-left: 14px solid var(--ink);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
  }
  .video-card .v-info {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    color: var(--bg);
  }
  .video-card .v-cat {
    font-family: var(--font-accent);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .video-card .v-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.25;
    color: var(--bg);
    margin: 0;
  }

  /* === Banner avisando preview === */
  .preview-bar {
    background: var(--ink);
    color: var(--bg);
    text-align: center;
    padding: 0.5rem 1rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    z-index: 60;
  }

/* ============================================== */
/* === ARTIGOS - estilos específicos da página === */
/* ============================================== */

.article-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--gold-faded);
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  .article-hero { padding: 4.5rem 0 3rem; margin-bottom: 4rem; }
}

.breadcrumb {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a { color: var(--ink-faded); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep {
  margin: 0 0.6rem;
  color: var(--gold);
}

.article-hero .cat {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
  max-width: 780px;
  line-height: 1.15;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.article-meta .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  align-self: center;
}

.article-body {
  max-width: 720px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p {
  margin: 0 0 1.5em;
}
.article-body p.lead-p {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}
.article-body p.lead-p::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 3.4rem;
  line-height: 0.85;
  float: left;
  padding: 0.4rem 0.6rem 0 0;
}
.article-body h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  margin: 2.5em 0 1rem;
  color: var(--gold-deep);
  line-height: 1.2;
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 2em 0 0.75rem;
  color: var(--ink);
  font-style: italic;
  font-weight: 600;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.25rem;
}
.article-body li {
  margin-bottom: 0.6em;
  padding-left: 0.5rem;
}
.article-body li::marker {
  color: var(--gold);
}
.article-body strong { font-weight: 600; color: var(--ink); }
.article-body a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.article-body a:hover { color: var(--gold); }
.article-body blockquote {
  margin: 2em 0;
  padding: 1.5em 1.75em;
  border-left: 2px solid var(--gold);
  background: var(--bg-soft);
  border-radius: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--gold-deep);
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body hr {
  border: 0;
  height: 1px;
  background: var(--gold-faded);
  margin: 3em auto;
  max-width: 120px;
}

.article-cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--gold-faded);
  padding: 4rem 0;
  text-align: center;
}
.article-cta h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}
.article-cta p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.article-related {
  padding: 4rem 0;
  border-top: 1px solid var(--gold-faded);
}
.article-related h3 {
  font-size: 1.4rem;
  margin: 0 0 2rem;
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

/* Listagem de artigos */
.articles-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* ============================================== */
/* === MODAL DE VÍDEO (REINTRODUZIDO) === */
/* ============================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  max-width: 380px;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 6rem);
  background: black;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: black;
}
.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 2;
}
.video-modal-close:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 600px) {
  .video-modal { padding: 4rem 1rem 1rem; }
  .video-modal-inner { max-height: calc(100vh - 6rem); border-radius: 16px; }
  .video-modal-close { top: 0.75rem; right: 0.75rem; width: 36px; height: 36px; }
}

/* ============================================== */
/* === MENU MOBILE HAMBURGER === */
/* ============================================== */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(183, 152, 102, 0.08); }
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 49;
  padding: 6rem 2rem 3rem;
  display: none;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--gold-deep);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-faded);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.mobile-menu nav a:last-of-type { border-bottom: 0; }
.mobile-menu nav .mobile-cta {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  text-align: center;
  padding: 1.1rem 1.5rem;
  border-radius: 999px;
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
}

/* ============================================== */
/* === AJUSTES MOBILE === */
/* ============================================== */
@media (max-width: 920px) {
  /* Header em mobile - logo tem que caber sem encolher demais */
  .header-logo img { height: 44px; }
  .header-action {
    padding: 0.55rem 0.95rem;
    font-size: 0.7rem;
  }
  main { padding-top: 80px; }
}

@media (max-width: 700px) {
  /* Header ainda mais compacto em phones */
  .header-row { gap: 0.75rem; }
  .header-logo img { height: 38px; }
  .header-action { display: none; }
  main { padding-top: 72px; }

  /* Hero - foto menor proporcional */
  .hero { padding: 1rem 0 2.5rem; }
  .hero-photo { max-width: 100%; }

  /* Frame com padding menor */
  .frame { padding: 1.5rem 1.25rem; border-radius: 22px; }

  /* Eyebrow um pouco menor pra não estourar largura */
  .eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; }

  /* Faixa institucional vira lista vertical */
  .institutional { padding: 1.5rem 0; }
  .institutional .row { gap: 0.5rem 1rem; font-size: 0.65rem; letter-spacing: 0.14em; }

  /* Seções com padding vertical menor */
  section { padding: 3rem 0; }

  /* Section head em mobile */
  .section-head { margin: 0 auto 2.5rem; }
  .section-head .lead { font-size: 0.92rem; }

  /* Sobre - foto e numbers compactos */
  .sobre-photo { padding: 8px; max-width: 100%; }
  .sobre-photo .inner { border-radius: 14px; }
  .sobre-numbers { gap: 0.75rem; padding: 1.25rem 0; margin: 1.5rem 0; }
  .sobre-num .n { font-size: 1.5rem !important; }
  .sobre-num .l { font-size: 0.6rem; letter-spacing: 0.14em; }

  /* Pull quote em mobile */
  .pull-quote { padding: 1rem 0 1rem 1rem; }
  .pull-quote .quote { font-size: 1.15rem; }

  /* CTA final */
  .cta-final { padding: 4rem 0; }

  /* WhatsApp flutuante mais discreto em mobile */
  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 22px; height: 22px; }

  /* Footer */
  footer.site { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 1.5rem; margin-bottom: 2rem; }
  .footer-bottom { font-size: 0.7rem; letter-spacing: 0.08em; }

  /* Banner preview mais discreto */
  .preview-bar { font-size: 0.6rem; padding: 0.4rem 0.75rem; letter-spacing: 0.16em; }

  /* Article body em mobile */
  .article-hero { padding: 2rem 0 1.5rem; margin-bottom: 2rem; }
  .article-hero h1 { font-size: 1.65rem; }
  .article-meta { font-size: 0.65rem; gap: 0.75rem; }
  .article-body { font-size: 0.96rem; line-height: 1.75; }
  .article-body p.lead-p { font-size: 1.05rem; }
  .article-body p.lead-p::first-letter { font-size: 2.6rem; padding: 0.2rem 0.4rem 0 0; }
  .article-body h2 { font-size: 1.25rem; margin: 2em 0 0.75rem; }
  .article-cta { padding: 3rem 0; }
}

@media (max-width: 460px) {
  /* Phones bem pequenos */
  .header-logo img { height: 34px; }
  h1 { font-size: 2rem !important; }
  .area-num { font-size: 1.25rem !important; }
  .area-content h3 { font-size: 1.05rem; }
  .video-card .v-title { font-size: 0.85rem; }
}
