/* =========================================
   Do Conhecimento à Venda — Modern Minimal
   ========================================= */

:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-2: #f4f5f1;
  --ink: #0f1a1a;
  --ink-2: #1f2937;
  --muted: #6b7280;
  --line: #ececea;

  --primary: #0d7377;
  --primary-dark: #09585b;
  --primary-soft: #e6f4f4;
  --accent: #f59f00;
  --accent-dark: #d98c00;
  --danger: #b91c1c;
  --success: #0f7a3d;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 26, 0.04), 0 1px 3px rgba(15, 26, 26, 0.04);
  --shadow:    0 8px 24px rgba(15, 26, 26, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(15, 26, 26, 0.18);

  --max: 1160px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), #14a8ad);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 6px 14px -4px rgba(15,111,114,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-links a:not(.btn):hover { color: var(--ink); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid var(--primary);
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 6px 20px -8px rgba(13, 115, 119, 0.45);
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 14px 30px -10px rgba(13, 115, 119, 0.5); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; }

.btn-accent {
  background: #0d7377;
  color: #ffffff;
  border-color: #0d7377;
  box-shadow: 0 12px 28px -10px rgba(13, 115, 119, 0.55);
}

.btn-accent:hover {
  background: #09585b;
  border-color: #09585b;
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 14px 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 600px;
  background:
    radial-gradient(60% 50% at 70% 20%, rgba(15,111,114,0.10), transparent 60%),
    radial-gradient(50% 50% at 20% 30%, rgba(245,159,0,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,111,114,0.15);
  animation: pulse 2s infinite;
}
.badge-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(15,111,114,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(15,111,114,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 18px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-points svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta strong { display: block; font-size: 0.95rem; }
.hero-meta small { color: var(--muted); font-size: 0.82rem; }
.avatars { display: inline-flex; }
.avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e3e3, var(--primary));
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #ffd9a0, var(--accent)); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #d8d2f5, #6c5ce7); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #ffd0d0, #e74c5e); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}
.book-card {
  position: relative;
  width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  transform: rotate(-4deg);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card:hover { transform: rotate(0deg) translateY(-6px); }
.book-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
.ebook-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.book-fallback-content {
  display: none;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 30px;
}
.book-fallback .book-fallback-content { display: block; }
.book-fallback-content small {
  display: inline-block;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 18px;
}
.book-fallback-content h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.05;
  margin-bottom: 14px;
}
.book-fallback-content span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  opacity: 0.9;
}

.floating-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.tag-1 { top: 10%; right: 0; }
.tag-2 { bottom: 12%; left: 0; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ STRIP ============ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--surface-2);
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.section-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============ CARDS ============ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d9dad6;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 0.96rem; }
.card-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ============ MODULES ============ */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.module:hover { transform: translateY(-3px); border-color: var(--primary); }
.module-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.25;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.module h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.module p { color: var(--muted); font-size: 0.93rem; }

/* ============ SPLIT (problema/solução) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.tag-red   { background: #fee2e2; color: var(--danger); }
.tag-green { background: #dcfce7; color: var(--success); }

.card-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.card-dark p { color: rgba(255,255,255,0.7); }
.card-dark h3 { color: #fff; }
.card-bright {
  background: linear-gradient(160deg, #ffffff, var(--primary-soft));
  border-color: var(--primary-soft);
}

/* ============ TESTIMONIALS ============ */
.testimonial { display: flex; flex-direction: column; }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-bottom: 22px;
  flex-grow: 1;
}
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #14a8ad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.t-person strong { display: block; font-size: 0.92rem; }
.t-person small { color: var(--muted); font-size: 0.82rem; }

/* ============ AUTHOR ============ */
.author {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.author .section-title { text-align: left; margin-top: 8px; }
.author p { color: var(--muted); margin-top: 14px; max-width: 620px; }
.author-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.author-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  color: #fff;
  font-weight: 600;
}

/* ============ OFFER ============ */
.section-cta {
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(160deg, #0a4a4d, #0f6f72);
  color: #fff;
}
.section-cta .badge { color: #fff; }

.offer-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.offer-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 16px 0 8px;
  letter-spacing: -0.02em;
}
.offer-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; }

.price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
}
.price-new {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.price-tag {
  background: var(--accent);
  color: #1f1300;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
}
.price-note {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-align: left;
}
.guarantee-icon { color: var(--accent); display: inline-flex; }
.guarantee-icon svg { width: 28px; height: 28px; }
.guarantee strong { display: block; font-size: 0.92rem; }
.guarantee small { color: rgba(255,255,255,0.65); font-size: 0.82rem; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--muted);
  padding: 0 0 18px;
  font-size: 0.96rem;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-inner strong { display: block; font-size: 0.95rem; }
.footer-inner small { color: var(--muted); font-size: 0.82rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: left;
  }
  .hero-visual { min-height: 380px; }
  .book-card { width: 260px; }
  .cards-3, .modules, .split { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .author {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .author-photo { margin: 0 auto; width: 140px; height: 140px; }
  .author-initials { font-size: 2.8rem; }
  .author .section-title { text-align: center; }
  .offer-box { padding: 40px 24px; }
  .price-new { font-size: 2.6rem; }
}

@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .btn-ghost { justify-content: center; }
  .floating-tag { font-size: 0.78rem; padding: 8px 12px; }
  .tag-1 { right: -10px; }
  .tag-2 { left: -10px; }
}

/* Reveal animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.autora-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.autora-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* 🔥 isso aqui garante o corte circular */
}
.autora-photo img {
  border-radius: 50% !important;
}
.problem-solution {
  padding: 90px 20px;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d7377;
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: 2.8rem;
  line-height: 1.15;
  color: #102022;
}

.section-header p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #6b7280;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ps-card {
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(13, 115, 119, 0.10);
}

.ps-card h3 {
  margin: 0 0 18px;
  font-size: 1.85rem;
  line-height: 1.2;
}

/* 🔥 CARD ESCURO AJUSTADO */
.ps-card-dark {
  background: linear-gradient(135deg, #063c3f 0%, #0d7377 100%);
  color: #fafcfc;
}

/* 🔥 CARD CLARO AJUSTADO */
.ps-card-light {
  background: #f0fafa;
  border: 1px solid rgba(13, 115, 119, 0.15);
  color: #102022;
}

.ps-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* 🔥 TAGS MAIS COERENTES COM A PALETA */
.ps-tag-red {
  background: #ffe8e5;
  color: #d43c2f;
}

.ps-tag-green {
  background: #d9f3f3;
  color: #0d7377;
}

.ps-text {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #667085;
}

.ps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #394150;
}

/* 🔥 ÍCONE PRINCIPAL */
.ps-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(13, 115, 119, 0.12);
  color: #0d7377;
}

/* 🔥 VERSÃO PARA CARD ESCURO */
.ps-list-light li {
  color: rgba(250, 252, 252, 0.92);
}

.ps-list-light li::before {
  background: rgba(255, 255, 255, 0.15);
  color: #b8f1ee;
}

@media (max-width: 900px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  .ps-card {
    padding: 28px 24px;
  }

  .ps-card h3 {
    font-size: 1.55rem;
  }
}
.footer-contact {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #6b7280;
}

.footer-contact a {
  color: #0d7377;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  text-decoration: underline;
}
/* ===== AJUSTE FINAL BOTÃO + GARANTIA ===== */

/* BOTÃO BRANCO */
.btn-accent {
  background: #ffffff !important;
  color: #0d7377 !important;
  border: 1px solid #0d7377 !important;
  box-shadow: 0 10px 24px -12px rgba(13, 115, 119, 0.35) !important;
}

.btn-accent:hover {
  background: #0d7377 !important;
  color: #ffffff !important;
  border-color: #0d7377 !important;
}

/* GARANTIA BRANCA */
.guarantee {
  background: #ffffff !important;
  border: 1px solid rgba(13, 115, 119, 0.2) !important;
  box-shadow: 0 10px 24px -12px rgba(13, 115, 119, 0.25) !important;
}

/* TEXTO DA GARANTIA */
.guarantee strong {
  color: #0d7377 !important;
}

.guarantee small {
  color: #5f6f73 !important;
}

/* ÍCONE */
.guarantee-icon {
  color: #0d7377 !important;
}