@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Arimo:ital,wght@0,400;0,500;0,600;1,400&family=Mrs+Saint+Delafield&display=swap');

:root{
  --sand:#F5F0EA;
  --sand-deep:#EDE5DA;
  --ink:#141210;
  --ink-soft:#3a3632;
  --gold:#B99562;
  --line: rgba(20,18,16,0.14);
  --serif: 'Libre Caslon Text', 'Times New Roman', serif;
  --sans: 'Arimo', Helvetica, Arial, sans-serif;
  --script: 'Mrs Saint Delafield', cursive;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

html, body{
  overflow-x: hidden;
  max-width: 100%;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

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

.wrap{
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- top quote bar ---------- */
.quote-bar{
  background: var(--ink);
  color: var(--sand);
  overflow:hidden;
  position:relative;
  height: 32px;
}
.quote-bar .wrap{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.quote-slide{
  position:absolute;
  left:40px; right:40px;
  text-align:center;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity:0;
  transition: opacity .8s ease;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.quote-slide.active{ opacity:1; }
.quote-slide em{ font-style: normal; opacity:.65; }

/* ---------- header ---------- */
header.site-header{
  padding: 20px 0 18px;
  background: var(--sand-deep);
  border-bottom: 1px solid var(--line);
}
header.site-header .wrap{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 32px;
}
.brand{ justify-self:start; }
nav.main-nav{ justify-self:center; }
.header-actions{ justify-self:end; }
.brand{
  display:inline-block;
  line-height:1;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}
.brand .brand-name{
  font-family: var(--script);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .02em;
  margin:0;
}
.brand .brand-tag{
  display:block;
  margin-top:5px;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

nav.main-nav{
  display:flex;
  gap: 36px;
}
nav.main-nav a{
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
nav.main-nav a:hover{ border-color: var(--ink); }

.header-actions{
  display:flex;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-outline{ background: transparent; color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--sand); }
.btn-solid{ background: var(--ink); color: var(--sand); }
.btn-solid:hover{ background: transparent; color: var(--ink); }
.btn-tint{ background: var(--sand-deep); border-color: var(--sand-deep); color: var(--ink); }
.btn-tint:hover{ background: transparent; border-color: var(--ink); }

.btn-sm{ padding: 7px 14px; font-size: 8px; }

.nav-toggle{ display:none; }

/* ---------- hero ---------- */
.hero{
  padding: 16px 0 14px;
  background: var(--sand-deep);
  text-align:center;
}
.hero h1{
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 58px);
  margin: 0 0 6px;
  letter-spacing: .01em;
}
.hero .hero-actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
}

/* ---------- links grid ---------- */
.links-section{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  padding: 40px 0 48px;
}
.links-section .wrap{
  width:100%;
}
.links-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.link-card{
  display:block;
  min-width: 0;
  aspect-ratio: 8 / 5;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  background: var(--sand-deep);
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 1px 2px rgba(20,18,16,0.06);
}
.link-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,18,16,0.16);
}
.link-card img{ width:100%; height:100%; object-fit: cover; }

.link-card-text{
  aspect-ratio: 589 / 368;
  display:flex;
  align-items:center;
}
.link-card-body{
  padding: 9% 9%;
}
.link-card-title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--gold);
  margin: 0 0 16px;
}
.link-card-divider{
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 0 0 18px;
  max-width: 220px;
}
.link-card-divider i{
  flex:1;
  height:1px;
  background: var(--ink-soft);
  opacity:.45;
}
.link-card-divider b{
  width:4px; height:4px;
  border-radius:50%;
  background: var(--ink-soft);
  opacity:.6;
}
.link-card-desc{
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 300px;
}
.link-card .card-cta{
  position:absolute;
  bottom: 18px; right: 18px;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(245,240,234,0.92);
  color: var(--ink);
  opacity:0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.link-card:hover .card-cta{ opacity:1; transform: translateY(0); }

/* ---------- webinar list page ---------- */
.webinar-page .wrap{
  max-width: 820px;
}
.webinar-list{
  display:flex;
  flex-direction:column;
  gap: 0;
}
.webinar-empty{
  margin:0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.webinar-item{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.webinar-item:first-child{
  border-top: none;
  padding-top: 0;
}
.webinar-item-media{
  width: 140px;
  height: 100px;
  overflow: hidden;
  background: var(--sand-deep);
}
.webinar-item-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.webinar-item-media--empty{
  background:
    linear-gradient(135deg, var(--sand-deep) 0%, var(--sand) 55%, var(--sand-deep) 100%);
}
.webinar-item-body h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 10px;
  letter-spacing: .01em;
  line-height: 1.25;
}
.webinar-item .webinar-texto{
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.webinar-item .webinar-texto p{
  margin: 0 0 10px;
}
.webinar-item .webinar-texto p:last-child{
  margin-bottom: 0;
}
.webinar-item .webinar-link{
  display:inline-flex;
}

/* ---------- footer ---------- */
footer.site-footer{
  background: var(--sand-deep);
  border-top: 1px solid var(--line);
  padding: 20px 0;
  flex-shrink: 0;
  margin-top: auto;
}
footer.site-footer .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer.site-footer p{
  margin:0;
  font-size: 10px;
  letter-spacing: .05em;
  color: var(--ink-soft);
}
footer.site-footer .footer-links{
  display:flex;
  gap: 18px;
}
footer.site-footer .footer-links a{
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
footer.site-footer .footer-links a:hover{ color: var(--ink); }

/* ---------- inner pages ---------- */
.page-hero{
  padding: 110px 0 70px;
}
.page-hero .eyebrow{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity:.7;
  margin: 0 0 16px;
}
.page-hero h1{
  font-family: var(--serif);
  font-weight:400;
  font-size: clamp(24px,3.2vw,34px);
  margin: 0 0 14px;
}
.page-hero .lede{
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  max-width: 640px;
  opacity:.85;
  margin:0;
}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity:.75;
  margin-bottom: 30px;
}
.back-link:hover{ opacity:1; }

.page-body{
  padding-bottom: 130px;
}
.page-body .content{
  max-width: 720px;
}
.page-body p{
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 22px;
}
.page-body p strong{ font-weight:600; }
.page-body p em{ font-style: italic; color: var(--ink-soft); }
.page-body h2{
  font-family: var(--serif);
  font-weight:400;
  font-size: 19px;
  margin: 48px 0 18px;
}
.page-body ul,
.page-body ol{
  margin: 0 0 22px;
  padding-left: 20px;
}
.page-body li{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.page-body li strong{ font-weight:600; }
.page-body li em{ font-style: italic; color: var(--ink-soft); }
.page-cta{
  margin-top: 46px;
}
.page-cta .btn{ padding: 12px 26px; font-size: 10px; }

/* dark theme (Sensibilidade Visceral) */
.theme-dark{
  background: var(--ink);
  color: var(--sand);
}
.theme-dark .quote-bar{ background: #000; }
.theme-dark header.site-header{ background: var(--ink); border-bottom-color: rgba(245,240,234,0.16); }
.theme-dark nav.main-nav a{ color: var(--sand); }
.theme-dark nav.main-nav a:hover{ border-color: var(--sand); }
.theme-dark .brand .brand-tag{ color: rgba(245,240,234,0.65); }
.theme-dark .btn-outline{ border-color: var(--sand); color: var(--sand); }
.theme-dark .btn-outline:hover{ background: var(--sand); color: var(--ink); }
.theme-dark .btn-solid{ background: var(--sand); color: var(--ink); }
.theme-dark .btn-solid:hover{ background: transparent; color: var(--sand); }
.theme-dark .btn-tint{ background: rgba(245,240,234,0.14); border-color: rgba(245,240,234,0.14); color: var(--sand); }
.theme-dark .btn-tint:hover{ background: transparent; border-color: var(--sand); }
.theme-dark .page-hero .eyebrow{ opacity:.6; }
.theme-dark .back-link{ color: var(--sand); }
.theme-dark footer.site-footer{ background: var(--ink); border-top-color: rgba(245,240,234,0.16); }
.theme-dark footer.site-footer p,
.theme-dark footer.site-footer .footer-links a{ color: rgba(245,240,234,0.65); }
.theme-dark footer.site-footer .footer-links a:hover{ color: var(--sand); }

.page-photo{
  border-radius: 18px;
  overflow:hidden;
  margin-bottom: 60px;
  max-width: 420px;
}
.page-photo img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- landing pages (Sensibilidade / Chandra) ---------- */
.lp-hero{
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: var(--sand);
}
.lp-hero__media{
  position: absolute;
  inset: 0;
}
.lp-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.02);
  animation: lp-ken-burns 18s ease-out both;
}
@keyframes lp-ken-burns{
  from{ transform: scale(1.08); }
  to{ transform: scale(1.02); }
}
.lp-hero__veil{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.35) 0%, rgba(20,18,16,0.22) 35%, rgba(20,18,16,0.78) 72%, rgba(20,18,16,0.94) 100%);
}
.theme-dark .lp-hero__veil{
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.28) 32%, rgba(0,0,0,0.82) 70%, rgba(0,0,0,0.96) 100%);
}
.lp-hero--warm .lp-hero__veil{
  background:
    linear-gradient(180deg, rgba(20,18,16,0.32) 0%, rgba(20,18,16,0.2) 28%, rgba(20,18,16,0.7) 62%, rgba(20,18,16,0.88) 82%, rgba(245,240,234,0.98) 100%);
}
.lp-hero--warm{
  color: var(--sand);
}
.lp-hero--warm .back-link{ color: var(--sand); }
.lp-hero--warm .btn-solid{
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}
.lp-hero--warm .btn-solid:hover{
  background: transparent;
  color: var(--sand);
}
.lp-hero__content{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 72px;
  text-align: center;
}
.lp-hero .back-link{
  color: inherit;
  opacity: .7;
  margin-bottom: 28px;
}
.lp-hero .eyebrow{
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75;
  margin: 0 0 14px;
}
.lp-hero h1{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 18px;
}
.lp-hero .lp-headline{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 14px;
  opacity: .95;
}
.lp-hero .lede{
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: .85;
}
.lp-hero__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-hero__content > *{
  animation: lp-fade-up .85s ease both;
}
.lp-hero__content > *:nth-child(1){ animation-delay: .05s; }
.lp-hero__content > *:nth-child(2){ animation-delay: .15s; }
.lp-hero__content > *:nth-child(3){ animation-delay: .25s; }
.lp-hero__content > *:nth-child(4){ animation-delay: .35s; }
.lp-hero__content > *:nth-child(5){ animation-delay: .45s; }
.lp-hero__content > *:nth-child(6){ animation-delay: .55s; }
@keyframes lp-fade-up{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}

.lp-section{
  padding: 88px 0;
}
.lp-section .wrap{
  max-width: 820px;
  text-align: center;
}
.lp-section .eyebrow{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .65;
  margin: 0 0 14px;
}
.lp-section h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.2;
  margin: 0 0 18px;
}
.lp-section .lp-lead{
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 0;
  max-width: 620px;
  opacity: .9;
}
.lp-section p{
  font-size: 15px;
  line-height: 1.85;
  margin: 0 auto 20px;
  max-width: 620px;
  text-align: center;
}
.lp-section p:last-child{ margin-bottom: 0; }
.lp-section--tint{
  background: var(--sand-deep);
}
.theme-dark .lp-section--tint{
  background: #0c0b0a;
}
.lp-section--split .wrap{
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  text-align: left;
}
.lp-section--split .lp-portrait{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  max-width: 280px;
  aspect-ratio: 4 / 5;
}
.lp-section--split .lp-portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.lp-section--split .lp-copy{
  text-align: left;
}
.lp-section--split .lp-copy .eyebrow,
.lp-section--split .lp-copy h2,
.lp-section--split .lp-copy p{
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.lp-section--split .lp-copy .lp-lead,
.lp-section--split .lp-copy p{
  max-width: none;
}

.lp-features{
  list-style: none;
  margin: 36px auto 0;
  padding: 0;
  max-width: 640px;
  text-align: left;
}
.lp-features li{
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.lp-features li:last-child{
  border-bottom: 1px solid var(--line);
}
.lp-features li::before{
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  justify-self: center;
}
.theme-dark .lp-features li{
  border-color: rgba(245,240,234,0.14);
}

.lp-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  text-align: center;
}
.lp-meta h3{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 8px;
}
.lp-meta p{
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  opacity: .8;
  max-width: none;
}

.lp-cta{
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(185,149,98,0.18), transparent 55%),
    var(--sand-deep);
}
.theme-dark .lp-cta{
  background:
    radial-gradient(ellipse at 50% 0%, rgba(185,149,98,0.16), transparent 50%),
    #0c0b0a;
}
.lp-cta .wrap{ max-width: 640px; }
.lp-cta h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 14px;
  line-height: 1.2;
}
.lp-cta p{
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto 28px;
  opacity: .85;
  max-width: 480px;
}
.lp-cta .btn{ padding: 14px 28px; font-size: 10px; }

@media (max-width: 800px){
  .lp-hero{ min-height: min(78vh, 680px); }
  .lp-hero__content{ padding: 40px 24px 56px; }
  .lp-section{ padding: 64px 0; }
  .lp-section--split .wrap{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .lp-section--split .lp-portrait{
    max-width: 220px;
    margin: 0 auto;
  }
  .lp-section--split .lp-copy,
  .lp-section--split .lp-copy .eyebrow,
  .lp-section--split .lp-copy h2,
  .lp-section--split .lp-copy p{
    text-align: center;
  }
  .lp-meta{ grid-template-columns: 1fr; gap: 22px; }
  .lp-cta{ padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce){
  .lp-hero__media img,
  .lp-hero__content > *{
    animation: none;
  }
}

/* ---------- bio layout (Sobre mim: photo left, text right) ---------- */
.bio-layout{
  display:flex;
  align-items:stretch;
  gap: 64px;
  max-width: 980px;
  margin: 0 auto;
}
.bio-layout .page-photo{
  flex: 0 0 230px;
  width: 230px;
  margin-bottom: 0;
}
.bio-layout .page-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.bio-layout .content{
  flex: 1 1 auto;
  max-width: 560px;
}

@media (max-width: 800px){
  .bio-layout{ flex-direction:column; gap: 24px; }
  .bio-layout .page-photo{
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    flex: 0 0 auto;
  }
  .bio-layout .page-photo img{ height:auto; }
  .bio-layout .content{ max-width:none; }
}

.placeholder-hero{
  min-height: 60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 60px 0;
}
.placeholder-hero h1{
  font-family: var(--serif);
  font-weight:400;
  font-size: clamp(26px,3.6vw,38px);
  margin: 0 0 14px;
}
.placeholder-hero p{
  font-size:12px;
  letter-spacing:.05em;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

/* ---------- blog / newsletter ---------- */
.blog-page .wrap{
  max-width: 820px;
}

.blog-empty-state{
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  text-align: center;
  padding: 40px 0 20px;
}
.blog-empty-state a{
  display: inline-block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.blog-posts{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-card{
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.blog-card:first-child{
  border-top: none;
  padding-top: 0;
}
.blog-card-link{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  color: inherit;
  text-decoration: none;
}
.blog-card-media{
  width: 140px;
  height: 100px;
  overflow: hidden;
  background: var(--sand-deep);
}
.blog-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.blog-card-media--empty{
  background:
    linear-gradient(135deg, var(--sand-deep) 0%, var(--sand) 55%, var(--sand-deep) 100%);
}
.blog-card-link:hover .blog-card-media img{
  transform: scale(1.04);
}
.blog-card-body .blog-post-date{
  margin: 0 0 8px;
}
.blog-card-body h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 10px;
  letter-spacing: .01em;
  line-height: 1.25;
}
.blog-card-excerpt{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.blog-card-more{
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* post dedicada */
.blog-post-page .page-hero{
  padding-bottom: 8px;
}
.blog-post-detail[hidden]{
  display: none !important;
}
.blog-post-detail .blog-post-date{
  margin: 0 0 12px;
}
.blog-post-detail h1{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 24px;
  letter-spacing: .01em;
  line-height: 1.2;
}
.blog-post-detail .blog-post-media{
  width: 100%;
  overflow: hidden;
  background: var(--sand-deep);
  margin: 0 0 28px;
}
.blog-post-detail .blog-post-media img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.blog-post-date{
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.blog-post-body p{
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 18px;
}
.blog-post-body p:last-child{ margin-bottom: 0; }
.blog-post-body strong{ font-weight: 600; }
.blog-post-body em{ font-style: italic; color: var(--ink-soft); }

@media (max-width: 720px){
  .blog-card-link{
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }
  .blog-card-media{
    width: 96px;
    height: 72px;
  }
  .blog-card{
    padding: 22px 0;
  }
  .webinar-item{
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }
  .webinar-item-media{
    width: 96px;
    height: 72px;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .wrap{ padding: 0 24px; }
  nav.main-nav{ gap: 28px; }
  .links-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 40px 0 28px; }
}

@media (max-width: 720px){
  header.site-header{ padding: 18px 0 16px; }
  header.site-header .wrap{ grid-template-columns: 1fr auto; }
  .header-actions{ display:none; }
  nav.main-nav{ justify-self:end; gap: 20px; }
  .quote-slide{
    font-size: 10px;
    left: 100%;
    right: auto;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    opacity: 1;
    visibility: hidden;
    transition: none;
  }
  .quote-slide.active{ visibility: visible; }
  .quote-bar{ height:28px; }
  .hero{ padding: 42px 0 32px; }
  .hero h1{ margin: 0 0 12px; }
  .links-section{ padding: 16px 0 10px; }
  .links-grid{ gap: 16px; }
  .link-card{ aspect-ratio: 2.3 / 1; }
  footer.site-footer{ padding: 14px 0; }
}

@media (max-width: 480px){
  .brand .brand-name{ font-size: 19px; white-space: nowrap; }
  .hero .hero-actions{ flex-direction: column; align-items:stretch; }
  .hero .hero-actions .btn{ width:100%; }
  .hero .hero-tag{ letter-spacing: .06em; font-size: 12px; padding: 0 8px; }
}
