/* =====================================================
   Andes Experience — CSS Principal
   Design system limpo, sem dependência de framework
   ===================================================== */

/* ── Tokens ── */
:root {
  --primary:  #fe6d46;
  --primary-d:#e85a34;
  --navy:     #1d3876;
  --navy-d:   #152a5a;
  --teal:     #28b5a4;
  --sand:     #75674a;
  --green:    #46735f;
  --cream:    #fefaf6;
  --white:    #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-600: #666666;
  --text:     #333333;

  --shadow-sm: 0 4px 14px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-md: 0 10px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 52px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --container: 1320px;
  --font: 'Poppins', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.2; font-weight: 700; color: var(--navy); }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }

/* Section header */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--green);
  max-width: 560px;
  font-size: 1.0rem;
  line-height: 1.8;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .22s var(--ease-spring), box-shadow .22s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(254,109,70,.35);
}
.btn-primary:hover {
  background: var(--primary-d);
  box-shadow: 0 8px 24px rgba(254,109,70,.45);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1dba56;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29,56,118,.3);
}
.btn-navy:hover {
  background: var(--navy-d);
  box-shadow: 0 8px 22px rgba(29,56,118,.4);
  color: var(--white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(254,109,70,.45); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: rgba(254,109,70,.18); color: var(--navy); }

/* ── Focus ── */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.10); }

/* Top bar */
.header-topbar {
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  padding: 7px 0;
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-contact a { color: var(--white); opacity: .9; }
.topbar-contact a:hover { opacity: 1; }
.topbar-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a {
  color: var(--white);
  opacity: .85;
  transition: opacity .15s;
}
.topbar-social a:hover { opacity: 1; }
.topbar-social svg { width: 16px; height: 16px; }

/* Main header bar */
.header-main { padding: 12px 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

/* Nav */
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: var(--navy);
  transition: background .15s, color .15s;
}
.primary-nav a:hover,
.primary-nav a.active { background: rgba(254,109,70,.09); color: var(--primary); }
.primary-nav .btn { padding: 10px 22px; font-size: .85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ════════════════════════════════════════════════════ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(29,56,118,.45);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1000;
  box-shadow: 4px 0 32px rgba(0,0,0,.14);
  transform: translateX(-100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  flex-shrink: 0;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--primary-d); }
.mobile-nav-links { padding: 16px 0; flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: 16px 24px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: color .15s, background .15s;
}
.mobile-nav-links a:hover { color: var(--primary); background: rgba(254,109,70,.05); }
.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-contact a { color: var(--green); font-size: .9rem; }
.mobile-nav-social { display: flex; gap: 12px; margin-top: 8px; }
.mobile-nav-social a { color: var(--navy); }
.mobile-nav-social svg { width: 20px; height: 20px; }


/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-image: url('../assets/uploads/2025/02/747d4714-da85-4d9b-8adb-0f1bff6d8979-scaled.jpg');
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(29,56,118,.78) 0%,
    rgba(29,56,118,.5) 50%,
    rgba(29,56,118,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content .container { padding-block: 64px; }
.hero-inner { max-width: 620px; }
.hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.87);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }


/* ════════════════════════════════════════════════════
   DIFERENCIAIS (features bar)
   ════════════════════════════════════════════════════ */
.features {
  background: var(--white);
  padding-block: clamp(40px, 5vw, 64px);
  box-shadow: 0 -1px 0 var(--gray-200);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease-spring), box-shadow .32s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #ebfbf9;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform .28s var(--ease-spring), background .28s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(40,181,164,.18);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--primary); }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc { font-size: .875rem; color: var(--green); line-height: 1.65; }


/* ════════════════════════════════════════════════════
   DESTINOS
   ════════════════════════════════════════════════════ */
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.destino-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}
.destino-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destino-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s var(--ease);
}
.destino-card:hover img { transform: scale(1.06); }
.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,56,118,.85) 0%, rgba(29,56,118,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .35s;
}
.destino-card:hover .destino-overlay {
  background: linear-gradient(to top, rgba(29,56,118,.9) 0%, rgba(29,56,118,.4) 70%, rgba(29,56,118,.1) 100%);
}
.destino-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.destino-link {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  transition: color .15s;
}
.destino-card:hover .destino-link { color: var(--teal); }


/* ════════════════════════════════════════════════════
   PASSEIOS (trips)
   ════════════════════════════════════════════════════ */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trip-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .32s var(--ease-spring), box-shadow .32s var(--ease);
}
.trip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.trip-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.trip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.trip-card:hover .trip-img img { transform: scale(1.05); }
.trip-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.trip-tag {
  display: inline-block;
  background: rgba(254,109,70,.1);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.trip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.trip-desc {
  font-size: .875rem;
  color: var(--green);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}
.trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: gap .2s, color .15s;
}
.trip-cta:hover { color: var(--primary-d); gap: 10px; }
.trip-cta svg { width: 14px; height: 14px; }


/* ════════════════════════════════════════════════════
   COUNTERS
   ════════════════════════════════════════════════════ */
.counters {
  background: var(--navy);
  padding-block: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(254,109,70,.18) 0%, transparent 65%);
  pointer-events: none;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.counter-item { text-align: center; }
.counter-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-value span { color: var(--primary); }
.counter-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
}


/* ════════════════════════════════════════════════════
   SOBRE (about preview)
   ════════════════════════════════════════════════════ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sobre-images img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sobre-images img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.sobre-images img:first-child { margin-top: 32px; }
.sobre-text .section-desc {
  max-width: 100%;
  margin-bottom: 20px;
}
.sobre-text p { color: var(--green); line-height: 1.85; margin-bottom: 16px; }
.sobre-text p:last-of-type { margin-bottom: 28px; }


/* ════════════════════════════════════════════════════
   CTA WHATSAPP
   ════════════════════════════════════════════════════ */
.cta-wa {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4899 50%, #163068 100%);
  padding-block: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(254,109,70,.22) 0%, transparent 65%);
}
.cta-wa > .container { position: relative; z-index: 1; }
.cta-wa-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-wa-desc {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-wa .btn { margin-inline: auto; }


/* ════════════════════════════════════════════════════
   BLOG PREVIEW
   ════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .32s var(--ease-spring), box-shadow .32s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 210px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.blog-cat {
  display: inline-flex;
  align-items: center;
  background: rgba(254,109,70,.1);
  color: var(--primary);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.blog-meta time {
  font-size: .72rem;
  color: rgba(70,115,95,.6);
}
.blog-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color .15s;
}
.blog-title a { color: inherit; text-decoration: none; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt {
  font-size: .845rem;
  color: var(--green);
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  flex: 1;
}
.blog-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .07em;
  text-decoration: none;
  transition: color .18s, gap .18s;
  line-height: 1;
}
.blog-readmore svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.blog-readmore:hover { color: var(--primary-dark); gap: 10px; }
.blog-readmore:hover svg { transform: translateX(2px); }
.blog-more {
  text-align: center;
  margin-top: 52px;
}


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding-top: clamp(40px, 5vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.2);
}
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--white);
  display: block;
}
.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}
.footer-contact-list a { color: rgba(255,255,255,.85); }
.footer-contact-list a:hover { color: var(--white); }
.footer-contact-list svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.3); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-links li a {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  display: block;
  padding: 5px 0;
  transition: color .15s, padding-left .15s;
}
.footer-links li a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  padding-block: 18px;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--white); }


/* ════════════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(254,109,70,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .25s, transform .25s, box-shadow .25s;
  z-index: 800;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { box-shadow: 0 8px 20px rgba(254,109,70,.55); }
.scroll-top svg { width: 18px; height: 18px; }


/* ════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
   ════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4899 50%, #163068 100%);
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(254,109,70,.22) 0%, transparent 65%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 700;
}
.page-banner-breadcrumb {
  margin-top: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.page-banner-breadcrumb a { color: rgba(255,255,255,.8); }
.page-banner-breadcrumb a:hover { color: var(--white); }


/* ════════════════════════════════════════════════════
   QUEM SOMOS PAGE
   ════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p { color: var(--green); line-height: 1.85; margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 32px; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.about-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-images img:first-child { margin-top: 32px; }

/* Pillar cards */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease-spring), box-shadow .32s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #ebfbf9;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform .28s var(--ease-spring);
}
.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-4deg); }
.pillar-icon svg { width: 28px; height: 28px; color: var(--primary); }
.pillar-title { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.pillar-desc { font-size: .875rem; color: var(--green); line-height: 1.65; }


/* ════════════════════════════════════════════════════
   CONTATO PAGE
   ════════════════════════════════════════════════════ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contato-form-col {
  background: var(--cream);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
.contato-info-col {
  background: var(--navy);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  color: var(--white);
}
.form-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 16px;
}
.form-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.form-subtitle { color: var(--green); font-size: .9rem; margin-bottom: 28px; }

/* Form fields */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(29,56,118,.18);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254,109,70,.14);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* Info column */
.info-col-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}
.info-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.info-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: rgba(254,109,70,.15);
  border: 1.5px solid rgba(254,109,70,.4);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.info-text { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.55; }
.info-text a { color: rgba(255,255,255,.85); }
.info-text a:hover { color: var(--white); }
.info-social-title { font-size: 1rem; color: var(--white); margin: 28px 0 14px; font-weight: 600; }
.info-social { display: flex; gap: 10px; }
.info-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.info-social a:hover { background: var(--primary); transform: translateY(-2px); }
.info-social svg { width: 18px; height: 18px; }


/* ════════════════════════════════════════════════════
   BLOG PAGE
   ════════════════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}
.widget-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(254,109,70,.25);
}


/* ════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }


/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-images { grid-template-columns: 1fr 1fr; max-width: 540px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { position: static; max-width: 480px; margin-inline: auto; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
   ════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .header-topbar { display: none; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo img { height: 42px; }

  .hero-bg { background-image: url('../assets/uploads/2025/02/747d4714-da85-4d9b-8adb-0f1bff6d8979-scaled.jpg'); background-position: center center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .destinos-grid { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .sobre-images { max-width: 100%; }
  .sobre-images img { height: 200px; }
  .sobre-images img:first-child { margin-top: 0; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: span 1; }
  .blog-layout { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }

  .scroll-top { bottom: 20px; right: 20px; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 390px)
   ════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-title { font-size: 1.75rem; }
  .btn { padding: 13px 22px; font-size: .9rem; }
  .counter-value { font-size: 1.75rem; }
}

/* ════════════════════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════════════════════ */
.section--video { background: var(--navy); }
.section--video .section-label { color: var(--teal); }
.section--video .section-title { color: #fff; }
.section--video .section-desc { color: rgba(255,255,255,.75); }

.video-facade {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.video-facade:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.video-poster {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background .25s;
}
.video-facade:hover .video-play-btn { background: rgba(0,0,0,.45); }

.video-play-btn svg {
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  transform: scale(1);
  transition: transform .2s;
}
.video-facade:hover .video-play-btn svg { transform: scale(1.12); }

.video-facade.video-active { cursor: default; }
.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ════════════════════════════════════════════════════
   PARCEIROS
   ════════════════════════════════════════════════════ */
.section--partners { padding-top: 60px; padding-bottom: 60px; }
.section--partners .section-label { color: var(--primary); }

.partners-track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 1;
  pointer-events: none;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.partners-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.partners-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: partnersScroll 18s linear infinite;
  width: max-content;
}
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; } }

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.6);
  transition: filter .3s;
  flex-shrink: 0;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }

/* ════════════════════════════════════════════════════
   PAGE BANNER (destinos, passeios, etc.)
   ════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0 0 12px; }
.page-banner-desc { font-size: 1.05rem; opacity: .88; max-width: 540px; margin: 0 auto 20px; }
.page-banner-breadcrumb { font-size: .85rem; opacity: .75; }
.page-banner-breadcrumb a { color: #fff; text-decoration: none; }
.page-banner-breadcrumb a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   DESTINO NAV (jump links)
   ════════════════════════════════════════════════════ */
.dest-nav {
  background: var(--navy);
  position: sticky;
  top: 74px;
  z-index: 90;
}
.dest-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dest-nav-list::-webkit-scrollbar { display: none; }
.dest-nav-list a {
  display: block;
  padding: 14px 20px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.dest-nav-list a:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ════════════════════════════════════════════════════
   DESTINOS SECTIONS
   ════════════════════════════════════════════════════ */
.dest-section { padding: 0 0 70px; }
.dest-section--alt { background: var(--cream); }

.dest-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-bottom: 48px;
}
.dest-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 40px;
  color: #fff;
}
.dest-hero-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.dest-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 0; }

.dest-desc {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.75;
}
.dest-desc p { margin: 0 0 12px; }
.dest-desc p:last-child { margin: 0; }

.dest-trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.dest-trip-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
}
.dest-trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.dest-trip-card:hover img { transform: scale(1.06); }
.dest-trip-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.dest-trip-info span {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}

.dest-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════
   PASSEIOS — FILTER BAR
   ════════════════════════════════════════════════════ */
.trips-filter-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 74px;
  z-index: 90;
}
.trips-filter-list {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.trips-filter-list::-webkit-scrollbar { display: none; }
.filter-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn--active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ════════════════════════════════════════════════════
   RESPONSIVE — destinos / passeios
   ════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .dest-hero { height: 220px; }
  .dest-hero-overlay { padding: 20px; }
  .dest-trips-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dest-nav-list a { padding: 12px 14px; font-size: .82rem; }
  .page-banner { padding: 80px 0 40px; }
}

/* ════════════════════════════════════════════════════
   BLOG POST / ARTIGO
   ════════════════════════════════════════════════════ */
.post-hero {
  position: relative;
  height: clamp(280px, 42vw, 500px);
  overflow: hidden;
  background: var(--navy);
}
.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .82;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,56,118,.75) 0%, rgba(29,56,118,.25) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 0;
}
.post-hero-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.post-hero-cat {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.post-hero-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
.post-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .8rem;
  color: rgba(70,115,95,.7);
  flex-wrap: wrap;
}
.post-byline a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.post-byline a:hover { text-decoration: underline; }
.post-content {
  padding: 36px 0 48px;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.85;
}
.post-content p { margin-bottom: 1.25em; }
.post-content p:last-child { margin-bottom: 0; }
.post-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2em 0 .6em;
  line-height: 1.3;
}
.post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.6em 0 .5em;
}
.post-content ul, .post-content ol {
  padding-left: 1.4em;
  margin-bottom: 1.25em;
}
.post-content li { margin-bottom: .5em; }
.post-content strong { font-weight: 700; color: var(--navy); }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: rgba(254,109,70,.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--green);
}
.post-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5em 0;
  display: block;
}
.post-content .tip-box {
  background: rgba(0,188,212,.07);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 1.5em 0;
}
.post-cta {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 48px 0 0;
}
.post-cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.post-cta-desc { font-size: .9rem; color: var(--green); margin-bottom: 20px; }
.post-nav {
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
  margin: 48px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-nav a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .post-hero { height: 240px; }
  .post-hero-title { font-size: 1.25rem; }
  .post-content { font-size: .93rem; }
  .post-cta { padding: 24px 18px; }
}

/* ════════════════════════════════════════════════════
   PRINT / REDUCE MOTION
   ════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
