/*
 * Theme Name:   Zericardonutri Child
 * Template:     hello-elementor
 * Description:  Tema filho do Hello Elementor para zericardonutri.com.br
 * Author:       José Ricardo
 * Version:      1.0
 */

:root {
  --gluon-grey:    #181D20;
  --bg:            #0d1214;
  --scarborough:   #7F9394;
  --aqua-whisper:  #C1DFE0;
  --base-clara:    #ECEEE8;
  --depth-navy:    #21323B;
  --pastel-off-white: #E7E8DC;
  --aw10: rgba(193,223,224,0.08);
  --aw20: rgba(193,223,224,0.18);
  --aw40: rgba(193,223,224,0.40);
  --sc30: rgba(127,147,148,0.30);
  --sc15: rgba(127,147,148,0.15);
  --header-h: 64px;
  --sidebar-w: 260px;
  --font: 'Sora', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg) !important;
  color: var(--base-clara);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(13,18,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aw10);
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0 32px 0 calc(var(--sidebar-w) + 32px);
  gap: 32px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--base-clara);
  margin-right: auto;
}
.header-brand img { height: 38px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--scarborough);
  padding: 6px 14px;
  border-radius: 20px;
  transition: color 0.15s, background 0.15s;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--aqua-whisper);
  background: var(--aw10);
}

.header-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--gluon-grey);
  background: var(--aqua-whisper);
  padding: 8px 18px;
  border-radius: 20px;
  transition: opacity 0.15s;
}
.header-cta:hover { opacity: 0.85; color: var(--gluon-grey); }

/* ── SIDEBAR ─────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: rgba(13,18,20,0.6);
  position: fixed;
  top: var(--header-h); left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  border-right: 1px solid var(--aw10);
  overflow-y: auto;
  z-index: 200;
}

/* Overlay que cobre o conteúdo quando sidebar abre no mobile */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 199;
}
.sidebar-backdrop.open { display: block; }

.sidebar-section-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--scarborough);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-left: 4px;
}

/* ── SIDEBAR SOBRE MIM ───────────────────────────── */
.sidebar-about {
  text-align: center;
  padding-bottom: 4px;
}
.sidebar-about-av {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--depth-navy), #1a3040);
  border: 1px solid var(--aw20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--aqua-whisper);
  margin: 0 auto 12px;
  position: relative;
}
.sidebar-about-av::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--aw10);
}
.sidebar-about-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 3px;
}
.sidebar-about-role {
  font-size: 10px;
  font-weight: 500;
  color: var(--scarborough);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sidebar-about-bio {
  font-size: 11px;
  color: var(--scarborough);
  line-height: 1.6;
  margin-bottom: 14px;
}
.sidebar-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--aqua-whisper);
  color: var(--gluon-grey);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: opacity 0.15s;
}
.sidebar-about-cta:hover { opacity: 0.85; color: var(--gluon-grey); }

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: var(--aw10);
  margin: 20px 0;
}

.cat-list { width: 100%; }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12px;
  color: var(--scarborough);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 2px;
}
.cat-item:hover, .cat-item.active {
  background: var(--aw10);
  color: var(--aqua-whisper);
}
.cat-count {
  font-size: 10px;
  background: var(--sc15);
  color: var(--scarborough);
  border-radius: 20px;
  padding: 2px 7px;
  font-weight: 600;
}
.cat-item.active .cat-count {
  background: var(--aw20);
  color: var(--aqua-whisper);
}

.sidebar-socials {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--aw10);
}
.social-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--aw10);
  border: 1px solid var(--aw10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-size: 13px;
}
.social-btn:hover {
  background: var(--aw20);
  border-color: var(--aw40);
}



/* ── MAIN ─────────────────────────────────────────── */
.main {
  margin-left: var(--sidebar-w);
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ── ARCOS DECORATIVOS ───────────────────────────── */
.arcos-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.arcos-bg circle {
  fill: none;
  stroke: var(--aqua-whisper);
}

/* ── HOMEPAGE ─────────────────────────────────────── */
.view-section { display: none !important; }
.view-section.view-active { display: block !important; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 48px 80px;
}

/* Arcos neon — wrapper com transição entre abas */
.hero-arcos {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), opacity 0.7s ease;
  will-change: transform, opacity;
  width: min(900px, 100vw);
  height: min(900px, 100vh);
}
.hero-arcos svg {
  width: 100%;
  height: 100%;
}
.hero-arcos.blog-mode {
  transform: translate(-50%, -60%) scale(1.4);
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

/* Avatar placeholder */
.hero-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--depth-navy), #1a3040);
  border: 2px solid var(--aw20);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 28px;
  font-weight: 700;
  color: var(--aqua-whisper);
  position: relative;
}
.hero-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--aw20);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 16px;
}

.hero-name {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-role {
  font-size: 16px;
  font-weight: 400;
  color: var(--scarborough);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-phrase {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  color: rgba(236,238,232,0.5);
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-phrase strong {
  font-weight: 600;
  color: var(--aqua-whisper);
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 0 2px rgba(0, 240, 255, 0.75);
}

.hero-phrase strong::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 130%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.16) 0%, rgba(0, 240, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(5px);
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-phrase strong {
    animation: outline-glow-breath 8s ease-in-out infinite;
  }
  .hero-phrase strong::after {
    animation: bg-glow-breath 8s ease-in-out infinite;
  }
}

@keyframes outline-glow-breath {
  0%, 100% {
    text-shadow: 0 0 1px rgba(0, 240, 255, 0.6);
  }
  50% {
    text-shadow: 0 0 3px rgba(0, 240, 255, 0.9);
  }
}

@keyframes bg-glow-breath {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--scarborough);
  border: 1px solid var(--sc30);
  border-radius: 20px;
  padding: 6px 16px;
  background: rgba(13, 18, 20, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-badge.active-badge {
  color: var(--aqua-whisper);
  border-color: var(--aw40);
  background: var(--aw10);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scarborough);
  cursor: pointer;
}
.hero-scroll-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sc30);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── FEATURED POSTS (homepage) ───────────────────── */
.home-posts {
  padding: 0 48px 80px;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--scarborough);
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.15;
}
.section-title em {
  font-style: normal;
  color: rgba(236,238,232,0.3);
}

/* Featured large card */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 20px;
}
.featured-grid .post-card:first-child {
  grid-column: 1 / -1;
}

/* ── DOBRA VÍDEOS ────────────────────────────────── */
.home-videos {
  padding: 60px 48px 72px;
  border-top: 1px solid var(--aw10);
}
.home-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.home-video-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 8px;
}
.home-video-title {
  font-size: 18px; font-weight: 700;
  color: var(--base-clara);
  line-height: 1.3;
  margin-bottom: 16px;
}
.home-video-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  background: linear-gradient(160deg, #0f1f28, #1a3040);
  border: 1px solid var(--aw10);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; cursor: pointer;
  transition: border-color 0.2s;
  position: relative; overflow: hidden;
}
.home-video-placeholder::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(193,223,224,0.08);
}
.home-video-placeholder:hover { border-color: var(--aw40); }
.hvp-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--aqua-whisper);
  color: var(--gluon-grey);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  position: relative; z-index: 1;
}
.hvp-caption {
  font-size: 12px; color: var(--scarborough);
  position: relative; z-index: 1;
}
.home-videos-ctas {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.hvc-btn {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 14px 32px; border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.hvc-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.hvc-btn-pri { background: var(--aqua-whisper); color: var(--gluon-grey); border: none; }
.hvc-btn-sec { background: transparent; color: var(--aqua-whisper); border: 1px solid var(--aw40); }
.hvc-btn-sec:hover { background: var(--aw10); }

/* ── CARROSSEL MARCAS ────────────────────────────── */
.home-brands {
  padding: 40px 0 56px;
  border-top: 1px solid var(--aw10);
  overflow: hidden;
}
.home-brands-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--scarborough);
  text-align: center;
  margin-bottom: 28px; opacity: 0.6;
}
.home-brands-track-wrap {
  overflow: hidden; position: relative;
}
.home-brands-track-wrap::before,
.home-brands-track-wrap::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.home-brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.home-brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.home-brands-track {
  display: flex; gap: 52px;
  align-items: center;
  width: max-content;
  animation: brands-scroll 30s linear infinite;
}
.home-brands-track:hover { animation-play-state: paused; }
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: rgba(127,147,148,0.45);
  white-space: nowrap;
  transition: color 0.2s; user-select: none;
}
.brand-item:hover { color: var(--scarborough); }
.brand-item-icon { font-size: 20px; opacity: 0.6; }

@media (max-width: 900px) {
  .home-videos { padding: 48px 24px 56px; }
  .home-videos-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-video-placeholder { aspect-ratio: 9/14; max-height: 360px; }
}

/* ── POSTS GRID (blog page) ──────────────────────── */
.blog-header {
  padding: 60px 48px 40px;
  position: relative;
  overflow: hidden;
}
.blog-header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,223,224,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.filter-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--scarborough);
  background: none;
  border: none;
  border-radius: 7px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-btn:hover { background: var(--aw10); color: var(--aqua-whisper); }
.filter-btn.active { background: var(--aw10); color: var(--aqua-whisper); }

.blog-eyebrow, .blog-header-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 12px;
}
.blog-title, .blog-header-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.blog-title em, .blog-header-title em {
  font-style: normal;
  color: rgba(236,238,232,0.25);
}
.blog-subtitle, .blog-header-sub {
  font-size: 15px;
  color: var(--scarborough);
  max-width: 500px;
  line-height: 1.6;
}

/* Filtros de categoria acima do grid */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 48px 32px;
}

.posts-wrap, .blog-grid { padding: 0 48px 80px; }
.posts-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--scarborough);
  font-size: 13px;
}

.blog-pagination {
  padding: 0 48px 80px;
}
.blog-pagination ul { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pagination a, .blog-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px;
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--scarborough);
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.blog-pagination a:hover { background: var(--aw10); color: var(--aqua-whisper); }
.blog-pagination span.current { background: var(--aqua-whisper); color: var(--gluon-grey); border-color: var(--aqua-whisper); }

/* ── CARD ─────────────────────────────────────────── */
.post-card {
  background: rgba(33,50,59,0.4);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--aw10);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: var(--aw40);
  transform: translateY(-4px);
  background: rgba(33,50,59,0.65);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f1f28, #1a3040);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* Arcos no card */
.card-thumb::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(193,223,224,0.12);
}
.card-thumb::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(193,223,224,0.08);
}
.card-thumb-cats {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: flex-end;
}
.card-cat-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gluon-grey);
  background: var(--aqua-whisper);
  border-radius: 4px;
  padding: 3px 8px;
}
/* archive.php usa o badge direto dentro do .card-thumb, sem o wrapper .card-thumb-cats */
.card-cat-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gluon-grey);
  background: var(--aqua-whisper);
  border-radius: 4px;
  padding: 3px 8px;
}
.card-thumb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(193,223,224,0.08) 0%, transparent 60%);
}

/* Featured card thumb */
.post-card.featured .card-thumb {
  aspect-ratio: 21/7;
  font-size: 56px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.35;
  margin-bottom: 8px;
}
.post-card.featured .card-title { font-size: 20px; }

.card-excerpt {
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--scarborough);
  padding-top: 14px;
  border-top: 1px solid var(--aw10);
}
.card-meta-sep { opacity: 0.3; }
.card-read {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--aqua-whisper);
}

/* ── POST INDIVIDUAL ─────────────────────────────── */
#view-post { display: none; }
#view-post.view-active { display: block; }

.post-wrap, .zeri-post-page {
  padding: 48px 48px 80px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--scarborough);
  margin-bottom: 40px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.back-btn:hover { color: var(--aqua-whisper); }

.post-layout, .zeri-post-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Sidebar acompanha o scroll do artigo (barra de compartilhar, autor, CTA) */
.post-sidebar, .zeri-post-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
}

/* Article */
.post-cat-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 14px;
}
.post-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--scarborough);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--aw10);
  flex-wrap: wrap;
}
.post-author-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--base-clara);
}
.post-author-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--aw20);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--aqua-whisper);
  flex-shrink: 0;
}
.meta-sep { opacity: 0.3; }

/* Cover */
.post-cover {
  width: 100%;
  aspect-ratio: 16/6;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f1f28, #1a3040);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.post-cover::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(193,223,224,0.15);
}
.post-cover::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(193,223,224,0.10);
}
.post-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(193,223,224,0.08) 0%, transparent 60%);
}
.post-cover-icon { position: relative; z-index: 1; }
.post-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body */
.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(236,238,232,0.85);
}
.post-body p { margin-bottom: 22px; }
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 28px auto;
}
.post-body figure { margin: 28px 0; }
.post-body figure img { margin: 0 auto; }
.post-body figcaption {
  font-size: 13px;
  color: var(--scarborough);
  text-align: center;
  margin-top: 10px;
}
.post-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--base-clara);
  margin: 42px 0 16px;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--aqua-whisper);
  margin: 30px 0 12px;
}
.post-body ul, .post-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 2px solid var(--aqua-whisper);
  padding: 16px 22px;
  background: var(--aw10);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--scarborough);
  margin: 28px 0;
}

/* CTA */
.cta-block {
  position: relative;
  background: linear-gradient(135deg, rgba(33,50,59,0.8), rgba(15,30,40,0.9));
  border: 1px solid var(--aw20);
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 48px;
  text-align: center;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid var(--aw10);
}
.cta-block::after {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid var(--aw10);
}
.cta-block-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.cta-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative; z-index: 1;
}
.cta-block-text {
  font-size: 14px;
  color: var(--scarborough);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua-whisper);
  color: var(--gluon-grey);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  position: relative; z-index: 1;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Post nav */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--aw10);
}
.post-nav-btn {
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.post-nav-btn:hover {
  border-color: var(--aw40);
  background: var(--aw10);
}
.post-nav-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 6px;
}
.post-nav-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--base-clara);
  line-height: 1.3;
}
.post-nav-btn.next { text-align: right; }

/* Dois botões no CTA */
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-bottom: 20px;
}
.cta-btn-sec {
  background: transparent;
  color: var(--aqua-whisper);
  border: 1px solid var(--aw40);
}
.cta-btn-sec:hover { background: var(--aw10); opacity: 1; }

/* Link Instagram no CTA */
.cta-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--aw10);
}
.cta-socials-label {
  font-size: 13px;
  color: var(--scarborough);
  text-align: center;
  line-height: 1.5;
  position: relative; z-index: 1;
  max-width: 380px;
}
.cta-socials-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
}
.cta-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--scarborough);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 20px;
  border: 1px solid var(--sc30);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.cta-instagram-link:hover {
  color: var(--base-clara);
  border-color: var(--aw40);
  background: var(--aw10);
}

/* Bloco de autoria no post */
.post-autor-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 12px;
  padding: 20px;
  margin: 40px 0 32px;
}
.post-autor-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--aw20);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  color: var(--aqua-whisper);
  flex-shrink: 0;
}
.post-autor-name {
  font-size: 14px; font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 6px;
}
.post-autor-crn {
  font-size: 11px; font-weight: 500;
  color: var(--scarborough);
  margin-left: 8px;
}
.post-autor-bio {
  font-size: 13px;
  color: var(--scarborough);
  line-height: 1.65;
}

/* FAQ */
.post-faq { margin: 40px 0 32px; }
.post-faq-title {
  font-size: 20px; font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.post-faq-item {
  border-bottom: 1px solid var(--aw10);
}
.post-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--base-clara);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.post-faq-q:hover { color: var(--aqua-whisper); }
.faq-icon {
  font-size: 18px;
  font-weight: 300;
  color: var(--scarborough);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.post-faq-item.open .faq-icon { transform: rotate(45deg); color: var(--aqua-whisper); }
.post-faq-a {
  font-size: 14px;
  color: var(--scarborough);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.post-faq-item.open .post-faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

/* Referências */
.post-refs {
  margin: 32px 0;
  padding: 20px;
  background: rgba(33,50,59,0.3);
  border-radius: 10px;
  border: 1px solid var(--aw10);
}
.post-refs-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 10px;
}
.post-refs ol {
  padding-left: 18px;
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.7;
}
.post-refs li { margin-bottom: 6px; }

/* ── POST SIDEBAR ─────────────────────────────── */

.psb-card {
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.psb-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 14px;
}
.author-center { text-align: center; }
.author-av-lg {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--depth-navy), #1a3040);
  border: 1px solid var(--aw20);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--aqua-whisper);
  margin: 0 auto 12px;
}
.author-name-lg {
  font-size: 15px;
  font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 3px;
}
.author-role-lg {
  font-size: 11px;
  color: var(--scarborough);
  margin-bottom: 12px;
}
.author-bio-lg {
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.65;
}

.recent-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--aw10);
  cursor: pointer;
}
.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--aw10);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.recent-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--base-clara);
  line-height: 1.3;
  margin-bottom: 4px;
}
.recent-date {
  font-size: 10px;
  color: var(--scarborough);
}

/* ── CONTATO ─────────────────────────────────────── */
.contact-wrap { padding: 60px 48px 80px; max-width: 860px; }

.contact-hero { margin-bottom: 48px; }
.contact-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 12px;
}
.contact-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact-sub {
  font-size: 15px;
  color: var(--scarborough);
  line-height: 1.65;
  max-width: 560px;
}

/* Cards principais */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 52px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
}
.contact-card:hover {
  border-color: var(--aw40);
  background: rgba(33,50,59,0.7);
  transform: translateX(4px);
}
.contact-card-highlight {
  border-color: var(--aw20);
  background: rgba(193,223,224,0.05);
}
.contact-card-cta {
  border-color: var(--aqua-whisper);
  background: rgba(193,223,224,0.06);
}
.contact-card-cta:hover { background: rgba(193,223,224,0.12); }

.contact-card-icon {
  font-size: 26px;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--aw10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-cta .contact-card-icon {
  background: rgba(193,223,224,0.15);
}

.contact-card-body { flex: 1; }
.contact-card-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 4px;
}
.contact-card-title {
  font-size: 18px; font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 2px;
}
.contact-card-cta .contact-card-title { color: var(--aqua-whisper); }
.contact-card-handle {
  font-size: 12px; font-weight: 500;
  color: var(--aqua-whisper);
  margin-bottom: 6px;
}
.contact-card-cta .contact-card-handle {
  color: var(--scarborough);
  font-style: italic;
}
.contact-card-desc {
  font-size: 13px;
  color: var(--scarborough);
  line-height: 1.55;
}
.contact-card-arrow {
  font-size: 18px;
  color: var(--scarborough);
  opacity: 0.5;
  flex-shrink: 0;
}
.contact-card:hover .contact-card-arrow { opacity: 1; color: var(--aqua-whisper); }

/* Faixa redes sociais */
.contact-social-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: rgba(33,50,59,0.3);
  border: 1px solid var(--aw10);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
}
.contact-social-title {
  font-size: 22px; font-weight: 700;
  color: var(--base-clara);
  line-height: 1.25;
  margin-bottom: 10px;
}
.contact-social-sub {
  font-size: 13px;
  color: var(--scarborough);
  line-height: 1.65;
}
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(33,50,59,0.5);
  border: 1px solid var(--aw10);
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.contact-social-btn:hover {
  border-color: var(--aw40);
  background: rgba(33,50,59,0.8);
}
.csb-icon { font-size: 20px; flex-shrink: 0; }
.csb-info { display: flex; flex-direction: column; }
.csb-network {
  font-size: 13px; font-weight: 600;
  color: var(--base-clara);
  line-height: 1.3;
}
.csb-handle {
  font-size: 11px;
  color: var(--scarborough);
}

/* Info cards */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-info-card {
  background: rgba(33,50,59,0.35);
  border: 1px solid var(--aw10);
  border-radius: 12px;
  padding: 20px;
}
.contact-info-icon { font-size: 22px; margin-bottom: 10px; }
.contact-info-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 14px; font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 4px;
}
.contact-info-detail {
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-wrap { padding: 48px 24px 60px; }
  .contact-social-strip { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .contact-card-arrow { display: none; }
}

/* ── SOBRE MIM ───────────────────────────────────── */

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  padding: 60px 48px 56px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,223,224,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 14px;
}
.about-name {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-name em { font-style: normal; color: rgba(236,238,232,0.28); }
.about-intro {
  font-size: 14px;
  color: var(--scarborough);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 540px;
}
.about-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.about-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--scarborough);
  border: 1px solid var(--sc30);
  border-radius: 20px;
  padding: 5px 12px;
}

.about-hero-photo { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.about-photo-placeholder {
  width: 220px; height: 280px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--depth-navy), #1a3040);
  border: 1px solid var(--aw20);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700;
  color: var(--aqua-whisper);
}
.about-photo-label {
  font-size: 11px;
  color: var(--scarborough);
  letter-spacing: 0.06em;
}

/* Seção texto */
.about-section { padding: 0 48px 56px; }
.about-section-inner { max-width: 800px; }
.about-section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 12px;
  display: inline-block;
  border: 1px solid var(--sc30);
  border-radius: 20px;
  padding: 4px 12px;
}
.about-section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-section-title em { font-style: normal; color: var(--aqua-whisper); }
.about-text-block p {
  font-size: 14px;
  color: var(--scarborough);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 640px;
}

/* Antes e depois */
.about-antes-depois {
  display: flex;
  gap: 16px;
  margin: 36px 0;
}
.about-foto-wrap { position: relative; }
.about-foto-placeholder {
  width: 200px; height: 260px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f1f28, #1a3040);
  border: 1px solid var(--aw10);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.about-foto-placeholder.depois { background: linear-gradient(135deg, #0f2820, #1a3a30); }
.about-foto-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--scarborough);
  background: rgba(13,18,20,0.8);
  border-radius: 6px;
  padding: 4px 10px;
}
.depois-tag { color: var(--aqua-whisper); }

/* Diferenciais */
.about-diferenciais {
  padding: 0 48px 56px;
  border-top: 1px solid var(--aw10);
  padding-top: 48px;
}
.about-diferenciais-inner { max-width: 720px; display: flex; flex-direction: column; gap: 32px; }
.about-diff-item { display: flex; gap: 18px; align-items: flex-start; }
.about-diff-icon {
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--aw10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-diff-title {
  font-size: 15px; font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 6px;
  line-height: 1.3;
}
.about-diff-text {
  font-size: 13px;
  color: var(--scarborough);
  line-height: 1.7;
}

/* Trajetória */
.about-trajetoria {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 48px 48px 60px;
  border-top: 1px solid var(--aw10);
}
.about-traj-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.about-traj-sub {
  font-size: 22px;
  font-weight: 700;
  color: var(--aqua-whisper);
  margin-bottom: 16px;
}
.about-traj-text {
  font-size: 13px;
  color: var(--scarborough);
  line-height: 1.7;
}

.about-traj-right { display: flex; flex-direction: column; gap: 0; }
.traj-item {
  display: flex;
  gap: 16px;
  position: relative;
}
.traj-item::before {
  content: '';
  position: absolute;
  left: 7px; top: 24px;
  width: 1px;
  height: calc(100% + 0px);
  background: var(--aw10);
}
.traj-item:last-child::before { display: none; }
.traj-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid var(--aqua-whisper);
  background: var(--gluon-grey);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.traj-card {
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  flex: 1;
  transition: border-color 0.15s;
}
.traj-card:hover { border-color: var(--aw40); }
.traj-title {
  font-size: 15px; font-weight: 700;
  color: var(--aqua-whisper);
  margin-bottom: 6px;
  line-height: 1.3;
}
.traj-desc {
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.6;
  margin-bottom: 10px;
}
.traj-year {
  font-size: 16px; font-weight: 700;
  color: var(--base-clara);
  text-align: right;
}
.traj-year-cur { color: var(--aqua-whisper); font-size: 14px; }

/* CTA final */
.about-cta-final {
  padding: 56px 48px 80px;
  border-top: 1px solid var(--aw10);
}
.about-cta-inner { max-width: 600px; }
.about-cta-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 12px;
}
.about-cta-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-cta-text {
  font-size: 14px;
  color: var(--scarborough);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Mobile about */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .about-hero-photo { align-items: flex-start; }
  .about-photo-placeholder { width: 160px; height: 200px; }
  .about-section { padding: 0 24px 48px; }
  .about-antes-depois { flex-direction: column; }
  .about-foto-placeholder { width: 100%; height: 220px; }
  .about-diferenciais { padding: 40px 24px 48px; }
  .about-trajetoria { grid-template-columns: 1fr; padding: 40px 24px 56px; }
  .about-cta-final { padding: 40px 24px 60px; }
}

/* ── FERRAMENTAS ─────────────────────────────────── */
.tools-wrap {
  padding: 60px 48px 80px;
  max-width: 760px;
}

.tools-header { margin-bottom: 52px; }
.tools-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 12px;
}
.tools-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.tools-title em {
  font-style: normal;
  color: rgba(236,238,232,0.25);
}
.tools-sub {
  font-size: 15px;
  color: var(--scarborough);
  line-height: 1.6;
  max-width: 480px;
}

.tools-section { margin-bottom: 40px; }
.tools-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--scarborough);
  margin-bottom: 14px;
  padding-left: 2px;
}

.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(33,50,59,0.4);
  border: 1px solid var(--aw10);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.tool-card:hover {
  border-color: var(--aw40);
  background: rgba(33,50,59,0.65);
  transform: translateX(3px);
}
.tool-card.locked {
  opacity: 0.5;
  cursor: default;
}
.tool-card.locked:hover {
  border-color: var(--aw10);
  background: rgba(33,50,59,0.4);
  transform: none;
}

.tool-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--aw10);
  border: 1px solid var(--aw10);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tool-card.locked .tool-icon {
  background: rgba(127,147,148,0.08);
}

.tool-info { flex: 1; }
.tool-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--base-clara);
  margin-bottom: 3px;
  line-height: 1.3;
}
.tool-card.locked .tool-name { color: var(--scarborough); }
.tool-desc {
  font-size: 12px;
  color: var(--scarborough);
  line-height: 1.4;
}

.tool-arrow {
  font-size: 14px;
  color: var(--scarborough);
  flex-shrink: 0;
  opacity: 0.6;
}
.tool-lock {
  font-size: 14px;
  color: var(--scarborough);
  flex-shrink: 0;
  opacity: 0.4;
}

/* Toast */
.tools-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--depth-navy);
  border: 1px solid var(--aw20);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 13px;
  color: var(--base-clara);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 500;
  max-width: 90vw;
  white-space: normal;
  text-align: center;
}
.tools-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
  .tools-wrap { padding: 40px 20px 60px; }
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  margin-left: var(--sidebar-w);
  border-top: 1px solid var(--aw10);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--scarborough);
}
.footer-brand img { height: 22px; opacity: 0.7; }
.footer-copy {
  font-size: 11px;
  color: rgba(127,147,148,0.5);
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--aw10);
  border: 1px solid var(--aw10);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.footer-social:hover {
  background: var(--aw20);
  border-color: var(--aw40);
}

/* Sidebar slim no post — desktop */
.sidebar.slim {
  width: 60px;
  padding: 24px 10px;
  overflow: hidden;
}
.sidebar.slim .sidebar-about,
.sidebar.slim .sidebar-section-label,
.sidebar.slim .cat-list,
.sidebar.slim .sidebar-divider {
  display: none;
}
.sidebar.slim .sidebar-socials {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.sidebar.slim .sidebar-section-label { display: none; }
.sidebar.slim .social-row {
  flex-direction: column;
  align-items: center;
}
.sidebar.slim .social-btn {
  width: 36px; height: 36px;
}

/* Transição suave da sidebar */
.sidebar {
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1),
              padding 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.25s;
}

/* Main/footer ajustam quando sidebar está slim (desktop) */
body:has(.sidebar.slim) .main { margin-left: 60px; }
body:has(.sidebar.slim) .site-footer { margin-left: 60px; }
body:has(.sidebar.slim) #arcos-container { margin-left: 30px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--scarborough);
  border-radius: 2px;
  transition: background 0.15s;
}
.mobile-menu-btn:hover span { background: var(--aqua-whisper); }

@media (max-width: 960px) {
  :root { --sidebar-w: 0px; }
  .sidebar {
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.25s;
    top: var(--header-h);
    background: var(--gluon-grey);
  }
  .sidebar.open { transform: translateX(0); background: var(--gluon-grey); }
  .mobile-menu-btn { display: flex; }
  .site-header { padding-left: 20px; }
  .main { margin-left: 0; }
  .site-footer { margin-left: 0; }
  .hero { padding: 48px 24px 60px; }
  .home-posts { padding: 0 24px 60px; }
  .blog-header { padding: 48px 24px 32px; }
  .blog-filters { padding: 0 24px 24px; }
  .posts-wrap, .blog-grid { padding: 0 24px 60px; }
  .posts-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-wrap, .zeri-post-page { padding: 32px 24px 60px; }
  .post-layout, .zeri-post-wrap { grid-template-columns: 1fr; }
  .post-sidebar, .zeri-post-sidebar { order: -1; position: static; }
  .post-nav { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid .post-card:first-child { grid-column: 1; }

  :root { --header-h: 56px; }

  /* Nav mobile: esconde logo, comprime links */
  .header-brand span.header-brand-name { display: none; }
  .header-brand img { display: none; }
  .header-nav {
    gap: 0;
    flex-shrink: 1;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav a {
    font-size: 10px;
    padding: 5px 6px;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .mobile-menu-btn { padding: 2px; flex-shrink: 0; }

  /* CTA vira ícone compacto */
  .header-cta { white-space: nowrap; flex-shrink: 0; padding: 7px 10px; font-size: 0; }
  .header-cta::before { content: '💬'; font-size: 16px; }
}
@media (max-width: 600px) {
  .posts-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: 36px; }
  .blog-title { font-size: 32px; }
  .post-title { font-size: 26px; }
  .site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}

/* Logo SVG inline */
.header-logo-svg svg,
.header-logo-svg { height: 44px; width: auto; display: flex; align-items: center; }

@media (max-width: 960px) {
  .header-logo-svg svg,
  .header-logo-svg { height: 26px; }
}
.footer-logo-svg svg,
.footer-logo-svg { height: 32px; width: auto; display: flex; align-items: center; opacity: 0.7; }
/* SVG icons nas redes sociais */
.social-btn svg, .social-btn img { width: 16px; height: 16px; }
.footer-social svg, .footer-social img { width: 14px; height: 14px; }
.csb-icon svg, .csb-icon img { width: 20px; height: 20px; }
.contact-card-icon svg, .contact-card-icon img { width: 26px; height: 26px; }
.cta-instagram-link svg, .cta-instagram-link img { width: 15px; height: 15px; flex-shrink: 0; }


/* ────────────────────────────────────────────────────────────────────────── */
/* PREMIUM DESIGN OVERRIDES (ZAYA THEME & TASTE-SKILL PRINCIPLES)             */
/* ────────────────────────────────────────────────────────────────────────── */

:root {
  --gluon-grey:       #181D20;
  --bg:               #0d1214;
  --scarborough:      #7F9394;
  --aqua-whisper:     #C1DFE0;
  --base-clara:       #ECEEE8;
  --depth-navy:       #21323B;
  --pastel-off-white: #E7E8DC;
  --aw10: rgba(193, 223, 224, 0.08);
  --aw20: rgba(193, 223, 224, 0.18);
  --aw40: rgba(193, 223, 224, 0.40);
  --sc30: rgba(127, 147, 148, 0.30);
  --sc15: rgba(127, 147, 148, 0.15);
  
  --header-h: 72px;
  --sidebar-w: 280px;
  --font-title: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg) !important;
  color: var(--base-clara);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--depth-navy);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scarborough);
}

/* ── CABEÇALHO ILHA FLUTUANTE (PILL-NAV) ──────────────────────────────────── */
.site-header, .zeri-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  height: 56px;
  background: rgba(13, 18, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--aw10);
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
  transition: var(--transition);
}

@media (min-width: 961px) {
  body:not(.is-home-view) .site-header {
    left: calc(50% + (var(--sidebar-w) / 2));
    width: calc(100% - var(--sidebar-w) - 32px);
  }
}

.header-brand, .zeri-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--base-clara);
}
.header-brand img, .zeri-header-logo img {
  height: 44px;
  width: auto;
}

.header-nav, .zeri-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
  margin-left: 24px;
}
.header-nav a, .zeri-header-nav a {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  color: var(--scarborough);
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active,
.zeri-header-nav a:hover, .zeri-header-nav a.active {
  color: var(--aqua-whisper);
  background: var(--aw10);
}

.header-cta, .zeri-header-cta {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  color: var(--gluon-grey) !important;
  background: var(--aqua-whisper);
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.header-cta:hover, .zeri-header-cta:hover {
  opacity: 0.85;
  box-shadow: 0 0 15px rgba(193, 223, 224, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}
.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--base-clara);
  border-radius: 2px;
}

@media (max-width: 960px) {
  .header-nav, .zeri-header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .site-header, .zeri-header {
    left: 50% !important;
    width: calc(100% - 24px);
    padding: 0 16px;
    margin-left: 0 !important;
  }
}

/* ── SIDEBAR TRANSLÚCIDA ─────────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: rgba(13, 18, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 100px 24px 32px;
  border-right: 1px solid var(--aw10);
  overflow-y: auto;
  z-index: 200;
  transition: var(--transition);
  opacity: 1;
}

body.is-home-view .sidebar {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  transition: var(--transition);
}

body.is-home-view .main {
  margin-left: 0;
}

.sidebar-nav { display: none; }

@media (max-width: 960px) {
  .main {
    margin-left: 0 !important;
  }
  .sidebar {
    transform: translateX(-100%);
    opacity: 0;
    padding-top: 80px;
    background: rgba(13, 18, 20, 0.95);
    pointer-events: none;
  }
  .sidebar.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
  }
  .sidebar-nav a {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 500;
    color: var(--scarborough);
    padding: 11px 12px;
    border-radius: 10px;
    transition: var(--transition);
  }
  .sidebar-nav a:hover, .sidebar-nav a.active {
    color: var(--aqua-whisper);
    background: var(--aw10);
  }

  /* Na Mídia / Redes Sociais: scroll lateral em vez de grid espremido */
  .media-grid {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px 4px;
  }
  .media-grid::-webkit-scrollbar { display: none; }
  .media-grid > a {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .media-grid > div {
    flex: 0 0 100%;
  }

  /* Área de toque maior no botão hambúrguer (mínimo recomendado ~44px), sem esticar o ícone */
  .mobile-menu-btn {
    width: 44px;
    min-height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-btn span {
    width: 20px;
    flex-shrink: 0;
  }
}

/* ── ARCOS DE CORRIDA E GLOW (CORREÇÃO DE CENTRO) ─────────────────────────── */
#arcos-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, margin-left 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, margin-left;
  width: 900px;
  height: 900px;
  margin-left: 0; /* Centralizado quando na Home View */
}

/* Quando entra no Blog/Sobre/Contato, move os arcos para a direita por causa da sidebar */
body:not(.is-home-view) #arcos-container {
  margin-left: calc(var(--sidebar-w) / 2);
  transform: translate(-50%, -85%) scale(1.4);
  opacity: 0.08;
}

@media (max-width: 960px) {
  #arcos-container {
    margin-left: 0 !important;
  }
  body:not(.is-home-view) #arcos-container {
    transform: translate(-50%, -85%) scale(1.2);
    opacity: 0.04;
  }
}

/* Animações e Efeitos nos Arcos SVG */
#hero-arcos-svg circle {
  transform-origin: center;
}
#hero-arcos-svg circle[stroke] {
  animation: spin-glow-svg 50s linear infinite;
}
#hero-arcos-svg circle[filter] {
  animation: spin-glow-svg-rev 60s linear infinite, glow-breath 8s ease-in-out infinite;
}

@keyframes spin-glow-svg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-glow-svg-rev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes glow-breath {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 0.95; }
}

/* ── REDES E GRIDS DE POSTS PREMIUM ─────────────────────────────────────── */
.post-card {
  background: rgba(33, 50, 59, 0.18);
  border: 1px solid var(--aw10);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  will-change: transform, border-color, box-shadow;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--aw40);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(193, 223, 224, 0.06);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover .card-thumb img {
  transform: scale(1.04);
}

.card-read {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--aqua-whisper);
}

/* ── AJUSTES DE ABA DE TEXTO DO BLOG ─────────────────────────────────────── */
.blog-header {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid var(--aw10);
}
.blog-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-title em {
  font-style: normal;
  color: rgba(236, 238, 232, 0.25);
}
.blog-subtitle {
  font-size: 14px;
  color: var(--scarborough);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── MELHORIAS ESTÉTICAS NO SOBRE MIM & CONTATO ──────────────────────────── */
.about-hero, .about-section, .about-diferenciais, .about-trajetoria, .about-cta-final, .contact-wrap {
  position: relative;
  z-index: 2;
}

.about-badge {
  background: var(--aw10) !important;
  border: 1px solid var(--aw20) !important;
  color: var(--aqua-whisper) !important;
  border-radius: 100px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 6px 16px !important;
}

.traj-card {
  background: rgba(33, 50, 59, 0.18) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}
.traj-card:hover {
  border-color: var(--aw40) !important;
  transform: translateY(-2px);
}
.traj-dot {
  background: var(--aqua-whisper) !important;
  box-shadow: 0 0 10px var(--aqua-whisper) !important;
}

.about-antes-depois .about-foto-placeholder {
  border: 1px solid var(--aw20);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-foto-tag {
  background: var(--depth-navy) !important;
  border: 1px solid var(--aw20) !important;
  color: var(--base-clara) !important;
}

.about-diff-item {
  background: rgba(33, 50, 59, 0.12) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  transition: var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}
.about-diff-item:hover {
  border-color: var(--aw40) !important;
}

/* Contato Form Fields */
.contact-form-wrap {
  background: rgba(33, 50, 59, 0.12) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 16px !important;
  padding: 32px !important;
}

.contact-form input, .contact-form textarea, .contact-form select {
  background: rgba(13, 18, 20, 0.6) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 8px !important;
  color: var(--base-clara) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  outline: none !important;
  transition: var(--transition) !important;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--aw40) !important;
  background: rgba(13, 18, 20, 0.8) !important;
}

.contact-form button, .contact-btn {
  background: var(--aqua-whisper) !important;
  color: var(--gluon-grey) !important;
  font-family: var(--font-title) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}
.contact-form button:hover, .contact-btn:hover {
  opacity: 0.85 !important;
  box-shadow: 0 0 15px rgba(193, 223, 224, 0.3) !important;
}

/* Footer alignment */
.zeri-footer {
  background: rgba(13, 18, 20, 0.95) !important;
  border-top: 1px solid var(--aw10) !important;
  padding: 40px 24px !important;
  text-align: center !important;
  font-size: 11px !important;
  color: var(--scarborough) !important;
}

/* Tactile Active Press Feedback */
.contact-form button:active, .contact-btn:active, 
.header-cta:active, .zeri-header-cta:active, 
.sidebar-about-cta:active, .post-card:active {
  transform: scale(0.98) !important;
  transition: transform 0.1s ease;
}

/* Melhora de Legibilidade de Títulos contra Arcos de Fundo */
.blog-title, .about-section-title, .contact-title, .hero-name, .hero-phrase {
  text-shadow: 0 2px 14px rgba(13, 18, 20, 0.95);
}

/* ─── CALENDÁRIO DE PROVAS ───────────────────────────────────────── */
.view-section-provas {
  padding: 0 48px 80px;
}

.prova-section-header {
  margin-bottom: 40px;
}

.prova-section-header .section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--scarborough);
  display: block;
  margin-bottom: 8px;
}

.prova-section-header .section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--base-clara);
}

.prova-section-header .section-title em {
  font-style: normal;
  color: var(--aqua-whisper);
}

.prova-section-header .section-desc {
  font-size: 14px;
  color: var(--scarborough);
  margin-top: 10px;
  max-width: 60ch;
}

/* Títulos dos Meses */
.prova-month-group {
  margin-bottom: 48px;
}

.prova-month-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua-whisper);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--aw10);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Grid de cards de prova */
.prova-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card Horizontal */
.prova-horizontal-card {
  display: flex;
  align-items: center;
  background: rgba(33,50,59,0.22) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 16px !important;
  padding: 20px 24px !important;
  transition: all 0.25s ease !important;
  gap: 24px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
}

.prova-horizontal-card:hover {
  border-color: var(--aw40) !important;
  background: rgba(33,50,59,0.35) !important;
  transform: translateY(-2px);
}

/* Bloco de Data */
.prova-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 80px;
  background: rgba(13,18,20,0.6) !important;
  border: 1px solid var(--aw10) !important;
  border-radius: 12px !important;
  text-align: center;
  flex-shrink: 0;
  border-left: 3px solid var(--aqua-whisper) !important;
}

.prova-date-day {
  font-size: 28px;
  font-weight: 800;
  color: var(--aqua-whisper);
  line-height: 1;
}

.prova-date-month {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--scarborough);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Info do Card */
.prova-info-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prova-card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.prova-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.3;
}

.prova-card-title a {
  text-decoration: none;
  transition: color 0.15s;
}

.prova-card-title a:hover {
  color: var(--aqua-whisper);
}

.prova-card-local {
  font-size: 13px;
  color: var(--scarborough);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Botões do Card */
.prova-actions-block {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.prova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  transition: all 0.2s ease !important;
  text-decoration: none;
  cursor: pointer;
}

.prova-btn-primary {
  background: var(--aqua-whisper) !important;
  color: var(--gluon-grey) !important;
}

.prova-btn-primary:hover {
  opacity: 0.85 !important;
  box-shadow: 0 0 15px rgba(193, 223, 224, 0.3) !important;
}

.prova-btn-secondary {
  background: rgba(13,18,20,0.5) !important;
  color: var(--base-clara) !important;
  border: 1px solid var(--sc30) !important;
}

.prova-btn-secondary:hover {
  border-color: var(--aw40) !important;
  color: var(--aqua-whisper) !important;
  background: rgba(33,50,59,0.3) !important;
}

/* Alertas/Tags */
.badge-unconfirmed {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffb800 !important;
  background: rgba(255,184,0,0.08) !important;
  border: 1px solid rgba(255,184,0,0.2) !important;
  border-radius: 4px !important;
  padding: 3px 8px !important;
}

.badge-confirmed {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--aqua-whisper) !important;
  background: var(--aw10) !important;
  border: 1px solid var(--aw20) !important;
  border-radius: 4px !important;
  padding: 3px 8px !important;
}

/* Alerta de data expirada no single page */
.prova-expired-alert {
  background: rgba(255,184,0,0.06) !important;
  border: 1px solid rgba(255,184,0,0.15) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--base-clara);
}

.prova-expired-alert-icon {
  font-size: 18px;
  line-height: 1;
}

.prova-expired-alert-text {
  font-size: 13px;
  line-height: 1.4;
}

.prova-expired-alert-text strong {
  color: #ffb800;
}

/* Seções Expansíveis */
.prova-expand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 48px;
  position: relative;
}

.prova-expand-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--aw10);
  z-index: 1;
}

.prova-expand-btn {
  position: relative;
  z-index: 2;
  background: var(--bg) !important;
  border: 1px solid var(--sc30) !important;
  color: var(--scarborough) !important;
  font-family: var(--font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.prova-expand-btn:hover {
  border-color: var(--aw40) !important;
  color: var(--aqua-whisper) !important;
  transform: translateY(-1px);
}

.prova-expandable-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prova-expandable-section.visible {
  display: block;
  opacity: 1;
}

/* Mobile responsive for horizontal cards */
@media (max-width: 768px) {
  .prova-horizontal-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px !important;
  }
  .prova-date-block {
    align-self: flex-start;
    min-width: 64px;
    height: 64px;
  }
  .prova-date-day {
    font-size: 22px;
  }
  .prova-date-month {
    font-size: 9px;
  }
  .prova-actions-block {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .prova-btn {
    text-align: center;
    width: 100%;
  }
}

/* Badge de Cupom Copiável */
.prova-coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33,50,59,0.3) !important;
  border: 1px dashed var(--aw40) !important;
  color: var(--aqua-whisper) !important;
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  padding: 8px 16px !important;
  border-radius: 100px !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
  user-select: none;
  position: relative;
  text-transform: uppercase;
}

.prova-coupon-badge:hover {
  background: rgba(193,223,224,0.12) !important;
  border-color: var(--aqua-whisper) !important;
  transform: translateY(-1px);
}

.prova-coupon-badge:active {
  transform: scale(0.95) !important;
}

.prova-coupon-badge svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.prova-coupon-badge:hover svg {
  transform: scale(1.1);
}

/* Estado Copiado */
.prova-coupon-copied {
  color: var(--base-clara) !important;
  border-color: var(--base-clara) !important;
  background: rgba(236,238,232,0.1) !important;
}

/* ─── BLINDAGEM: tipografia global do Elementor (kit-362) ────────────────────
 * O tema pai roda com o Elementor ativo, cujo "kit" global define
 *   .elementor-kit-362 h1{font-size:80px;text-transform:capitalize;font-family:Outfit}
 *   .elementor-kit-362 h2{font-size:55px;text-transform:capitalize;...}
 *   .elementor-kit-362 h3{font-size:40px;text-transform:capitalize;...}
 * Esses seletores têm a MESMA especificidade que os nossos (.post-body h3 etc.),
 * então ganhavam por ordem de carregamento — deixando os títulos do post em
 * "Title Case" gigantes e na fonte Outfit (não era o layout que montamos).
 * Encontrado em 2026-07-07 no post do carbogel: h3 do texto renderizando a 40px
 * capitalize. O Elementor NÃO usa !important, então basta subir a especificidade
 * prefixando com o wrapper .zeri-post-page (2 classes) pra recuperar o design. */
.zeri-post-page .post-body h1,
.zeri-post-page .post-body h2,
.zeri-post-page .post-body h3,
.zeri-post-page .post-body h4,
.zeri-post-page .post-body h5,
.zeri-post-page .post-body h6,
.zeri-post-page h1.post-title,
.zeri-post-page h2.post-faq-title,
.zeri-post-page h4.prova-card-title {
  font-family: var(--font);
  text-transform: none;
}
.zeri-post-page h1.post-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--base-clara);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.zeri-post-page .post-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 42px 0 16px;
}
.zeri-post-page .post-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--aqua-whisper);
  line-height: 1.35;
  margin: 32px 0 12px;
}
.zeri-post-page .post-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--base-clara);
  line-height: 1.4;
  margin: 26px 0 10px;
}
.zeri-post-page h2.post-faq-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.zeri-post-page h4.prova-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--base-clara);
  line-height: 1.3;
}


