﻿/* ============================================================
   RESET & VARIÃVEIS GLOBAIS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --orange:    #e67e22;
  --orange-dk: #d35400;
  --navy:      #1a2a4a;
  --gray-bg:   #f4f5f7;
  --gray-line: #dde1e8;
  --text:      #1e1e1e;
  --muted:     #555;
  --white:     #ffffff;
  --max-w:     740px;
  --serif:     Georgia, 'Times New Roman', serif;
  --sans:      'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background: #eef2f6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   SEÃ‡ÃƒO 00 â€” BARRA SUPERIOR (TOP BAR)
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.60);
  font-size: 11px;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar strong {
  color: #fff;
}

.adv-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding: 9px 16px;
  border-bottom: 1px solid var(--gray-line);
}

.adv-brand {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adv-sep {
  opacity: 0.55;
}

.adv-datetime {
  letter-spacing: 0.03em;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.editorial-header {
  background: var(--navy);
  border-bottom: 2px solid #15223d;
}

.editorial-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.editorial-brand {
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.editorial-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.editorial-nav a:hover {
  color: #fff;
}

/* ============================================================
   SEÃ‡ÃƒO 01 â€” HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #0b1828 0%, #1a2a4a 55%, #1e3058 100%);
  color: #fff;
  padding: 24px 18px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(192, 57, 43, 0.22) 0%, transparent 62%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(21px, 4.2vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 14px;
  max-width: 640px;
  text-align: center;
}

.hero h1 em {
  color: #f5c542;
  font-style: normal;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 20px;
  text-align: center;
}

/* â”€â”€ Thumbnail / Imagem de capa â”€â”€ */
.thumb-outer {
  width: 100%;
  max-width: 460px;
  margin-bottom: 2px;
  position: relative;
}

.thumb-outer::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  animation: pulseBorder 2.6s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseBorder {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 0.25; }
}

.thumb-wrap {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.62);
}

.thumb-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.38s ease;
}

.thumb-outer--poster {
  max-width: 320px;
}

.thumb-wrap--poster {
  background: transparent;
}

.thumb-img--poster {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: unset;
  background: transparent;
}

.thumb-wrap:hover img {
  transform: scale(1.03);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.25s;
}

.thumb-wrap:hover .play-overlay {
  background: rgba(0, 0, 0, 0.14);
}

/* Hero thumb only: remove white play overlay/icon */
#section-01-hero .play-overlay {
  display: none;
}



.play-circle {
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.50);
  transition: transform 0.25s, box-shadow 0.25s;
}

.thumb-wrap:hover .play-circle {
  transform: scale(1.10);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
}

.play-circle svg {
  margin-left: 6px;
}

/* Final thumb play icon: YouTube-style button */
#cta-05-thumb-final .play-circle {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
}

#cta-05-thumb-final .play-circle svg {
  margin-left: 0;
}

.thumb-label {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 2px;
  display: inline-block;
}

.thumb-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.46);
  margin-top: 12px;
  margin-bottom: 18px;
}

.hero-hook {
  max-width: 580px;
  font-size: clamp(14px, 2.2vw, 16px);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
  margin-top: 24px;
  margin-bottom: 18px;
  text-align: left;
}

.hero-hook strong {
  color: #fff;
}

/* â”€â”€ BotÃ£o CTA â”€â”€ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #f0a820 0%, #d35400 100%);
  color: #fff;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 30px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(211, 84, 0, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(211, 84, 0, 0.65);
}

.btn-cta:active {
  transform: translateY(0);
}

#cta-01-hero {
  margin-top: 12px;
}

.btn-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 10px;
}

.page-structure {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 0 16px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.content-column {
  min-width: 0;
}

.page-structure .article,
.page-structure .final-cta {
  max-width: none;
  margin: 0 0 14px;
  padding: 16px 16px 18px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(13, 18, 24, 0.06);
}

.page-structure .final-cta {
  text-align: center;
}

.sidebar-column {
  position: sticky;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card,
.sidebar-promo {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(13, 18, 24, 0.05);
}

.sidebar-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 12px;
}

.sidebar-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.sidebar-list a {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: #1f2937;
  padding-left: 14px;
  position: relative;
}

.sidebar-list a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 8px;
}

.sidebar-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 12px;
}

.sidebar-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-dark);
  text-decoration: underline;
}

.sidebar-promo {
  overflow: hidden;
  padding: 0;
}

.sidebar-promo img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.sidebar-promo--poster {
  background: transparent;
}

.sidebar-promo__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-promo__poster {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
  transition: transform 0.38s ease;
}

.sidebar-promo__play {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
  box-shadow: none;
}

.sidebar-promo__media:hover .sidebar-promo__poster {
  transform: scale(1.03);
}

.sidebar-promo__media:hover .play-overlay {
  background: rgba(0, 0, 0, 0.14);
}

.sidebar-promo__media:hover .sidebar-promo__play {
  transform: scale(1.10);
}

.sidebar-promo-body {
  padding: 16px;
}

.sidebar-promo h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.sidebar-promo p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
}

.sidebar-promo-cta {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SEÃ‡ÃƒO 02 a 06 â€” ARTIGO / CORPO
   ============================================================ */
.article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 20px 24px;
}

.article p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

.article-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 14px;
}

.article-lead {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #f7f4ef;
  border-left: 4px solid var(--red);
}

.article-lead strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.scene-line {
  display: block;
}

.testimonial-grid {
  display: grid;
  gap: 10px;
}

.testimonial-card {
  border: 1px solid var(--gray-line);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.testimonial-avatar--thomas-aged {
  filter: grayscale(0.28) sepia(0.16) contrast(1.08) brightness(0.96);
}

.testimonial-card__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.testimonial-card__author {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

p.lead {
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  border-left: 4px solid var(--orange);
  padding-left: 12px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(19px, 3.2vw, 25px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.28;
  margin: 0 0 14px;
}

.section-title span {
  color: var(--red);
}

.divider {
  border: none;
  border-top: 2px solid var(--gray-line);
  margin: 44px 0;
}

/* â”€â”€ Pull quote â”€â”€ */
.pull-quote {
  background: #fef9f0;
  border-left: 5px solid var(--orange);
  padding: 14px 16px;
  margin: 16px 0;
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 8px !important;
  line-height: 1.65;
}

.pull-quote cite {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* â”€â”€ Alert box â”€â”€ */
.alert-box {
  background: #fdf0f0;
  border: 1.5px solid #e8b4b4;
  border-left: 5px solid var(--red);
  border-radius: 4px;
  padding: 14px 16px;
  margin: 16px 0;
}

.alert-box p {
  margin-bottom: 0 !important;
  font-size: 16px;
  color: #2c1010;
}

.alert-box strong {
  color: var(--red-dark);
}

/* â”€â”€ Chain â”€â”€ */
.chain {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
}

.chain-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.chain-item:last-child {
  margin-bottom: 0;
}

.chain-num {
  min-width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.chain-text {
  font-size: 15px;
  line-height: 1.55;
  color: #222;
}

.chain-text strong {
  color: var(--navy);
}

/* Simple dot bullets for the pain list in section 02 */
.pain-bullet-list .chain-num {
  min-width: auto;
  width: auto;
  height: auto;
  background: transparent;
  color: currentColor;
  border-radius: 0;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-top: 2px;
}

/* â”€â”€ Dr Block â”€â”€ */
.dr-block {
  border: 2px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
}

.dr-header {
  background: var(--navy);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dr-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2c4070;
  border: 2px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  flex-shrink: 0;
}

.dr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dr-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.dr-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 2px;
}

.dr-body {
  padding: 14px;
  background: #fafbfc;
}

.dr-body p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 0 !important;
  line-height: 1.7;
}

/* ============================================================
   SEÃ‡ÃƒO 06 â€” FAQ ACCORDION
   ============================================================ */
/* ============================================================
   SECTION 05 - STORY FEATURE
   ============================================================ */
.story-feature-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 34px;
  align-items: start;
}

.story-feature-media {
  margin: 0;
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.story-feature-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.story-feature-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #101f3a;
  color: #fff;
  border-radius: 4px;
  padding: 11px 12px;
  text-align: center;
}

.story-feature-caption-kicker {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.story-feature-caption p {
  margin: 0 !important;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  font-size: 15px;
}

.story-feature-kicker {
  margin: 0 0 10px !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f7b3a !important;
}

.story-feature-name {
  font-family: var(--sans);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  color: #111827;
  margin: 0 0 12px;
}

.story-feature-subtitle {
  margin: 0 0 24px !important;
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4b5563 !important;
  line-height: 1.4 !important;
}

.story-feature-bridge {
  width: 100%;
  margin: 14px 0 8px;
  padding: 12px 14px;
  border-left: 4px solid var(--navy);
  background: #f7f9fc;
  border-radius: 0 4px 4px 0;
}

.story-feature-bridge p {
  margin: 0 !important;
  font-size: 18px;
  line-height: 1.75;
  color: #1f2937;
}

.story-feature-quote {
  width: 100%;
  margin: 14px 0 8px;
}

.story-feature-quote p {
  font-size: 20px;
  line-height: 1.6;
}

.story-feature-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.story-feature-cta {
  text-align: center;
  margin: 14px 0 0;
}

.faq-section {
  margin: 4px 0 10px;
}

.faq-section > h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
}

.faq-item {
  border: 1.5px solid var(--gray-line);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  line-height: 1.45;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--gray-bg);
}

.faq-item.is-open .faq-q {
  background: var(--gray-bg);
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, transform 0.3s;
  user-select: none;
}

.faq-item.is-open .faq-icon {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  height: 0;
  transition: height 0.36s ease;
}

.faq-a-inner {
  padding: 4px 14px 12px;
  font-size: 15.5px;
  color: #333;
  line-height: 1.65;
}

/* ============================================================
   SEÃ‡ÃƒO 07 â€” FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(150deg, #0b1828 0%, #1a2a4a 100%);
  color: #fff;
  text-align: center;
  padding: 18px 16px;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin-bottom: 12px;
}

.final-cta strong {
  color: #fff;
}

.final-cta .thumb-outer {
  max-width: 540px;
  margin: 0 auto 36px;
}

.final-cta .thumb-outer--poster {
  max-width: 420px;
}

/* ============================================================
   SEÃ‡ÃƒO 08 â€” RODAPÃ‰
   ============================================================ */
footer {
  background: #0d1218;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  text-align: center;
  padding: 28px 20px;
  line-height: 1.7;
}

footer a {
  color: rgba(255, 255, 255, 0.44);
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  margin: 0 8px;
}

.disclaimer {
  max-width: 680px;
  margin: 14px auto 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.65;
}

/* ============================================================
   SEÃ‡ÃƒO 09 â€” STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 10px 16px;
  z-index: 999;
  border-top: 2px solid var(--orange);
  text-align: center;
}

@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }
}

.sticky-cta .btn-cta {
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .page-structure {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sidebar-column {
    position: static;
  }
}

@media (max-width: 700px) {
  .editorial-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .dr-header {
    flex-direction: column;
  }

  .chain-num {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px; /* espaÃ§o para sticky CTA nÃ£o tapar conteÃºdo */
  }
}

@media (max-width: 760px) {
  .story-feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-feature-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .story-feature-media img {
    height: 430px;
  }

  .story-feature-name {
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (min-width: 761px) {
  #section-05-story .story-feature-grid {
    display: grid !important;
    grid-template-columns: minmax(240px, 320px) 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }
}
