:root {
  --azul: #123A5D;
  --azul-2: #2F80B7;
  --verde: #1F7A4D;
  --verde-2: #A7C957;
  --off: #F7F3EA;
  --areia: #E7DDC8;
  --grafite: #1F2933;
  --dourado: #C9A44C;
  --terracota: #C96B4B;
  --branco: #FFFFFF;
  --sombra: 0 22px 80px rgba(18, 58, 93, 0.16);
  --sombra-suave: 0 14px 40px rgba(18, 58, 93, 0.10);
  --raio: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--grafite);
  background:
    radial-gradient(circle at 8% 8%, rgba(167, 201, 87, .18), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(47, 128, 183, .18), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, var(--off) 55%, #ffffff 100%);
  min-height: 100vh;
}

body.sheet-open, body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--azul);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, .78);
  border-bottom: 1px solid rgba(18, 58, 93, .09);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--azul), var(--verde) 60%, var(--dourado));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: var(--sombra-suave);
}

.brand-text strong {
  display: block;
  color: var(--azul);
  font-size: 1.02rem;
  letter-spacing: -.02em;
}
.brand-text small {
  display: block;
  color: rgba(31, 41, 51, .72);
  font-size: .76rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(31, 41, 51, .78);
  font-weight: 700;
  font-size: .93rem;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(31, 122, 77, .10);
  color: var(--verde);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-btn { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--azul);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(18, 58, 93, .18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(18,58,93,.22); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: white;
  color: var(--azul);
  border: 1px solid rgba(18,58,93,.12);
  box-shadow: none;
}
.btn.green { background: var(--verde); }
.btn.ghost {
  background: rgba(255, 255, 255, .12);
  color: white;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}
.btn.wide { width: 100%; }
.btn.small { min-height: 38px; padding: 9px 14px; font-size: .88rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 48px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18,58,93,.92), rgba(31,122,77,.70)),
    url("../assets/photos/01-hero-desktop.webp");
  background-size: cover;
  background-position: center;
  clip-path: ellipse(110% 82% at 50% 15%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(247,243,234,.19), transparent 27%),
    radial-gradient(circle at 88% 14%, rgba(201,164,76,.28), transparent 24%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  min-height: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--verde-2);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(167,201,87,.14);
}

.hero h1 {
  color: white;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.07em;
  margin: 0 0 24px;
}
.gradient-word {
  background: linear-gradient(90deg, #fff, #D8F0B3 42%, #F0D47A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 30px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 780px;
}
.point {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}
.point strong { display: block; color: white; margin-bottom: 4px; }

.hero-card {
  position: relative;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,243,234,.86));
  padding: 22px;
  box-shadow: 0 34px 90px rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.32);
  transform: rotate(1.5deg);
}
.hero-card-inner {
  min-height: 480px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(167,201,87,.36), transparent 24%),
    linear-gradient(135deg, rgba(18,58,93,.96), rgba(31,122,77,.9));
  color: white;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.hero-card-inner::before {
  content: "";
  position: absolute;
  width: 310px; height: 310px;
  right: -90px; bottom: -80px;
  border-radius: 50%;
  background: rgba(201,164,76,.25);
}
.placeholder-photo {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.03)),
    radial-gradient(circle at 60% 20%, rgba(247,243,234,.32), transparent 28%);
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}
.placeholder-photo span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  padding: 12px 16px;
  font-weight: 800;
}
.hero-card h2 {
  position: relative;
  margin: 22px 0 10px;
  font-size: 2.2rem;
  letter-spacing: -.04em;
}
.hero-card p { position: relative; margin: 0; font-size: 1rem; }

.float-badge {
  position: absolute;
  right: -18px;
  top: 72px;
  background: white;
  color: var(--azul);
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: var(--sombra);
  font-weight: 900;
  max-width: 190px;
  animation: float 4s ease-in-out infinite;
}
.float-badge.bottom {
  right: auto;
  left: -16px;
  top: auto;
  bottom: 72px;
  background: var(--dourado);
  color: #382c0d;
  animation-delay: -1.2s;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section { padding: 88px 0; }
.section.compact { padding: 58px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.kicker {
  color: var(--verde);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  color: var(--azul);
  margin: 0;
}
.section-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(31,41,51,.76);
  max-width: 720px;
  margin: 16px 0 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--azul);
  color: white;
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  min-width: 100%;
  animation: marquee 22s linear infinite;
}
.marquee span { font-weight: 900; letter-spacing: .03em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.story-card {
  border-radius: var(--raio);
  background: white;
  box-shadow: var(--sombra-suave);
  overflow: hidden;
  border: 1px solid rgba(18,58,93,.08);
}
.story-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
}
.story-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,58,93,.72), rgba(18,58,93,.10) 58%);
}
.story-overlay {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.story-visual h3 { margin: 0; font-size: 2.4rem; line-height: 1; letter-spacing: -.05em; }
.story-body { padding: 28px; }
.story-body p { line-height: 1.7; color: rgba(31,41,51,.8); }

.values-grid {
  display: grid;
  gap: 16px;
}
.value-card {
  background: white;
  border: 1px solid rgba(18,58,93,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--sombra-suave);
  transition: transform .22s ease, box-shadow .22s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}
.value-card .icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--azul), var(--verde));
  margin-bottom: 14px;
}
.value-card h3 { margin: 0 0 8px; color: var(--azul); font-size: 1.18rem; }
.value-card p { margin: 0; line-height: 1.6; color: rgba(31,41,51,.72); }

.axis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.axis-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
  padding: 26px;
  color: white;
  background: var(--azul);
  isolation: isolate;
  transition: transform .24s ease;
}
.axis-card:hover { transform: translateY(-6px) rotate(.5deg); }
.axis-card:nth-child(2) { background: var(--verde); }
.axis-card:nth-child(3) { background: var(--terracota); }
.axis-card:nth-child(4) { background: #2F80B7; }
.axis-card:nth-child(5) { background: #7B5E2A; }
.axis-card:nth-child(6) { background: #264653; }
.axis-card::before {
  content: "";
  position: absolute;
  width: 250px; height: 250px;
  right: -94px; top: -94px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  z-index: -1;
}
.axis-card h3 { margin: 0 0 12px; font-size: 1.42rem; letter-spacing: -.03em; }
.axis-card p { margin: 0; color: rgba(255,255,255,.84); line-height: 1.62; }
.axis-card button {
  margin-top: 22px;
  background: rgba(255,255,255,.16);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.listen-lab {
  display: grid;
  grid-template-columns: .72fr .95fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}
.listen-menu {
  background: white;
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(18,58,93,.08);
}
.listen-tab {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  text-align: left;
  background: transparent;
  color: rgba(31,41,51,.76);
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.listen-tab.active {
  background: linear-gradient(135deg, rgba(18,58,93,.1), rgba(31,122,77,.12));
  color: var(--azul);
}
.listen-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,243,234,.94));
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(18,58,93,.08);
  min-height: 330px;
}
.listen-panel h3 { margin: 0 0 12px; color: var(--azul); font-size: 1.8rem; letter-spacing: -.04em; }
.listen-panel p { color: rgba(31,41,51,.76); line-height: 1.75; font-size: 1.05rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  border-radius: 999px;
  background: rgba(31,122,77,.1);
  color: var(--verde);
  padding: 10px 13px;
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.post-card {
  background: white;
  border: 1px solid rgba(18,58,93,.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sombra); }
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: .78rem; font-weight: 900; color: var(--verde);
  text-transform: uppercase; letter-spacing: .08em;
}
.post-card h3 {
  margin: 12px 0 10px;
  color: var(--azul);
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.post-card p { color: rgba(31,41,51,.72); line-height: 1.6; margin: 0 0 18px; }
.post-card .read-link {
  margin-top: auto;
  font-weight: 900;
  color: var(--azul);
}

.form-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.form-info {
  background: linear-gradient(135deg, var(--azul), var(--verde));
  color: white;
  border-radius: 32px;
  padding: 34px;
  min-height: 100%;
  box-shadow: var(--sombra);
}
.form-info h2 { margin: 0 0 14px; font-size: 2.2rem; line-height: 1; letter-spacing: -.05em; }
.form-info p { color: rgba(255,255,255,.86); line-height: 1.7; }
.form-panel {
  background: white;
  border: 1px solid rgba(18,58,93,.08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--sombra-suave);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 900; color: var(--azul); font-size: .92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(18,58,93,.15);
  background: #fffdf8;
  color: var(--grafite);
  border-radius: 18px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, textarea:focus, select:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 4px rgba(31,122,77,.12);
}
.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  color: rgba(31,41,51,.76);
  line-height: 1.45;
  font-size: .9rem;
}
.checkbox-row input { width: 18px; margin-top: 3px; }
.form-note {
  font-size: .86rem;
  color: rgba(31,41,51,.63);
  line-height: 1.5;
}
.feedback {
  display: none;
  border-radius: 18px;
  padding: 14px 16px;
  margin-top: 14px;
  font-weight: 800;
}
.feedback.ok { display: block; background: rgba(31,122,77,.1); color: var(--verde); }
.feedback.err { display: block; background: rgba(201,107,75,.12); color: #95402b; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 44px;
  background:
    radial-gradient(circle at 86% 22%, rgba(201,164,76,.36), transparent 24%),
    linear-gradient(135deg, var(--azul), var(--verde));
  color: white;
  box-shadow: var(--sombra);
}
.cta-band h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.cta-band p { color: rgba(255,255,255,.84); font-size: 1.1rem; line-height: 1.7; max-width: 720px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.site-footer {
  background: var(--azul);
  color: white;
  padding: 48px 0 32px;
  margin-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr .95fr 1fr;
  gap: 34px;
}
.footer-grid p, .footer-grid a {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.footer-grid h3 { margin: 0 0 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 30px;
  padding-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}

.floating-listen {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 70;
  background: var(--verde);
  color: white;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 18px 48px rgba(31,122,77,.34);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 9px;
}
.floating-listen:hover { transform: translateY(-2px); }

.modal-backdrop, .sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 29, 45, .54);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.modal-backdrop.show, .sheet-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.welcome-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  z-index: 110;
  pointer-events: none;
}
.welcome-modal .modal-card {
  width: min(620px, 100%);
  border-radius: 34px;
  background: white;
  padding: 30px;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.welcome-modal.show { pointer-events: auto; }
.welcome-modal.show .modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal-card h2 { color: var(--azul); margin: 0 0 12px; font-size: 2rem; letter-spacing: -.04em; }
.modal-card p { color: rgba(31,41,51,.76); line-height: 1.7; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.bottom-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: white;
  border-radius: 30px 30px 0 0;
  padding: 18px 20px 24px;
  box-shadow: 0 -22px 60px rgba(18,58,93,.2);
  transform: translateY(105%);
  transition: transform .28s cubic-bezier(.2,.75,.22,1);
}
.bottom-sheet.show { transform: translateY(0); }
.sheet-handle {
  width: 54px; height: 5px; border-radius: 999px;
  background: rgba(18,58,93,.18);
  margin: 0 auto 18px;
}
.sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.sheet-action {
  display: grid;
  gap: 6px;
  background: var(--off);
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(18,58,93,.08);
}
.sheet-action strong { color: var(--azul); }
.sheet-action span { color: rgba(31,41,51,.67); font-size: .9rem; line-height: 1.45; }

.page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(201,164,76,.22), transparent 24%),
    linear-gradient(135deg, var(--azul), var(--verde));
  color: white;
}
.page-hero h1 { margin: 0 0 14px; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.06em; }
.page-hero p { margin: 0; max-width: 760px; color: rgba(255,255,255,.84); font-size: 1.18rem; line-height: 1.65; }

.filterbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin: 30px 0;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.article {
  background: white;
  border-radius: 34px;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(18,58,93,.08);
  overflow: hidden;
}
.article-cover { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.article-body { padding: clamp(24px, 4vw, 48px); }
.article-body h1 {
  margin: 0 0 14px;
  color: var(--azul);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.article-body .subtitle { color: rgba(31,41,51,.7); font-size: 1.22rem; line-height: 1.58; }
.article-body p { font-size: 1.08rem; line-height: 1.86; color: rgba(31,41,51,.82); }
.sidebar-card {
  background: white;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(18,58,93,.08);
  box-shadow: var(--sombra-suave);
  margin-bottom: 18px;
}
.sidebar-card h3 { margin: 0 0 10px; color: var(--azul); }
.comments { margin-top: 34px; }
.comment-list { display: grid; gap: 12px; }
.comment {
  background: #fffdf8;
  border: 1px solid rgba(18,58,93,.08);
  border-radius: 18px;
  padding: 14px;
}
.comment strong { color: var(--azul); }
.comment small { color: rgba(31,41,51,.55); display:block; margin-top: 2px; }
.comment p { margin: 10px 0 0; font-size: .96rem; line-height: 1.6; }

.admin-shell { padding: 40px 0 80px; }
.admin-panel {
  background: white;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(18,58,93,.08);
  box-shadow: var(--sombra-suave);
}
.admin-item {
  border: 1px solid rgba(18,58,93,.1);
  border-radius: 18px;
  padding: 16px;
  margin-top: 12px;
}
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .hero-grid, .about-grid, .listen-lab, .form-wrap, .post-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .hero-card { transform: none; }
  .axis-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 72px; }
  .brand-text small { display: none; }
  .nav-actions .btn:not(.mobile-menu-btn) { display: none; }
  .hero { padding: 48px 0 34px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-points, .axis-grid, .blog-grid, .form-grid, .sheet-grid, .filterbar {
    grid-template-columns: 1fr;
  }
  .section { padding: 62px 0; }
  .section-head { display: block; }
  .hero-card-inner { min-height: 420px; padding: 24px; }
  .float-badge { display: none; }
  .floating-listen {
    left: 14px; right: 14px; bottom: 14px;
    justify-content: center;
  }
  .site-footer { padding-bottom: 86px; }
  .cta-band { padding: 30px 24px; }
}


/* Imagens oficiais inseridas no site */
.hero-photo-wrap {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.listen-image-card {
  min-height: 330px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  border: 1px solid rgba(18,58,93,.08);
  background: white;
}
.listen-image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.form-info-photo {
  width: 100%;
  margin-top: 22px;
  border-radius: 24px;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(.95);
  z-index: 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,58,93,.88), rgba(31,122,77,.68));
  z-index: 0;
}
.cta-band > :not(.cta-band-bg) {
  position: relative;
  z-index: 1;
}

.modal-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, rgba(247,243,234,.96), rgba(231,221,200,.62));
  border-radius: 24px;
  margin-bottom: 20px;
  display: block;
}

.blog-page-hero {
  background:
    linear-gradient(135deg, rgba(18,58,93,.90), rgba(31,122,77,.62)),
    url("../assets/photos/06-blog-ideias.webp");
  background-size: cover;
  background-position: center;
}

.author-mini-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 14px;
  border: 4px solid var(--off);
  box-shadow: var(--sombra-suave);
}

@media (max-width: 980px) {
  .listen-lab { grid-template-columns: 1fr; }
  .listen-image-card { min-height: 260px; }
}

@media (max-width: 680px) {
  .hero::before {
    background:
      linear-gradient(135deg, rgba(18,58,93,.94), rgba(31,122,77,.72)),
      url("../assets/photos/02-hero-mobile.webp");
    background-size: cover;
    background-position: center top;
  }
}


/* Redes sociais oficiais */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,58,93,.12);
  background: rgba(255,255,255,.82);
  color: var(--azul);
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18,58,93,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(31,122,77,.30);
  box-shadow: 0 16px 34px rgba(18,58,93,.14);
}
.social-link img {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}
.nav-social {
  margin-top: 0;
  gap: 6px;
}
.nav-social .social-link {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  background: rgba(247,243,234,.78);
}
.nav-social .social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.nav-social .social-link img {
  width: 21px;
  height: 21px;
}
.site-footer .social-link {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: white;
  box-shadow: none;
}
.site-footer .social-link span {
  color: rgba(255,255,255,.84);
}
.site-footer .social-link:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.30);
}
.modal-social {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18,58,93,.10);
}
.modal-social > span,
.sheet-social > strong {
  display: block;
  color: rgba(31,41,51,.70);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.social-links.compact .social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.social-links.compact .social-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
}
.sheet-social {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18,58,93,.10);
}


/* Ajustes responsivos das redes sociais */
@media (max-width: 980px) {
  .nav-social { display: none; }
}
@media (max-width: 680px) {
  .modal-photo {
    aspect-ratio: 16 / 9;
    max-height: 330px;
  }
  .modal-card h2 {
    font-size: 1.72rem;
  }
  .social-links.compact .social-link {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
}
