:root {
  --bg: #f4efe9;
  --surface: #ffffff;
  --primary: #3f6b41;
  --primary-dark: #26492f;
  --text: #1f2833;
  --muted: #6b7a8d;
  --accent: #8b5a34;
  --border: #d8c4af;
  --shadow: 0 24px 60px rgba(41, 60, 94, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  min-width: 0;
}

body {
  min-width: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fcfbf8 0%, var(--bg) 100%);
  line-height: 1.7;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 249, 247, 0.8);
  border-bottom: 1px solid rgba(52, 84, 138, 0.07);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  display: block;
  max-width: 240px;
  width: auto;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  transition: color 0.2s ease;
  color: #7a4b28;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(122, 75, 40, 0.18);
  background: rgba(243, 224, 212, 0.18);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 0.9rem;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: rgba(243, 224, 212, 0.28);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #5b3a21;
}

.hero {
  min-height: 100vh;
  display: block;
  position: relative;
  background-image: url("assets/foto cortada.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* soft white overlay on the left so text is readable while image stays full-bleed */
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 36%, rgba(255,255,255,0.12) 56%, rgba(255,255,255,0.0) 100%);
  pointer-events: none;
}

.hero-image-mobile {
  display: none;
}

@media (min-width: 901px) {
  .hero-image-mobile {
    display: none !important;
  }
}

.hero-image-mobile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

/* position the container slightly to the left so the text sits over the empty wall area */
.hero-inner.container {
  margin-left: clamp(1rem, 6vw, 8rem);
  margin-right: 0;
}

.hero-copy {
  max-width: 620px;
  padding: 2rem 2.4rem;
  background: transparent;
  border-radius: 0.5rem;
  color: #5b3a21;
}

.hero-copy h1 {
  color: #5b3a21;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-copy .eyebrow {
  background: transparent;
  color: #7a4b28;
  padding: 0;
}

.eyebrow {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #eef4fc;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow.eyebrow-brown {
  background: #f3e2cf;
  color: #7a4b28;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.cta h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #5b3a21;
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 10ch;
}

.hero-text {
  font-size: 1.05rem;
  color: #8e674f;
  max-width: 560px;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: #7a4b28;
  color: #fff;
  box-shadow: 0 16px 30px rgba(122, 75, 40, 0.18);
}

.btn-secondary {
  background: #f3e0d4;
  border: 1px solid rgba(122, 75, 40, 0.18);
  color: #5b3a21;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  color: #8e674f;
  font-size: 0.95rem;
}

.hero-highlights li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(220, 180, 150, 0.25);
  border: 1px solid rgba(183, 124, 82, 0.18);
}


.loading-text,
.blog-error {
  color: #7a4b28;
}

.hero-card {
  position: relative;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, #f5efe6, #eef4fc);
  box-shadow: var(--shadow);
}

.hero-card-main,
.hero-card-side {
  overflow: hidden;
}

.hero-card img {
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  min-height: 560px;
}

.hero-card-side {
  margin-top: 2rem;
  min-height: 320px;
}

.hero-card-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 240px;
  font-weight: 600;
  color: var(--primary);
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: rgba(233, 218, 202, 0.25);
}

#faq .section-heading {
  margin-bottom: 2rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.5rem;
  background: rgba(123, 68, 37, 0.08);
}

#faq .section-heading .eyebrow {
  background: #7a4b28;
  color: #fff;
}

.section-heading h2.section-title-brown {
  color: #5b3a21;
}

#faq .section-heading h2 {
  color: #5b3a21;
}

#demandas-principais {
  scroll-margin-top: 5rem;
}

#terapia-etapas {
  scroll-margin-top: 5rem;
}

#terapia .section-heading h2 {
  white-space: normal;
  overflow-wrap: anywhere;
}

.section-heading h2,
.about-copy h2,
.cta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  max-width: 700px;
}

.cta h2 {
  text-align: center;
  max-width: 100%;
  width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.therapy-action {
  margin-top: 1rem;
}

.therapy-steps {
  margin-top: 1.5rem;
}

.therapy-steps h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  margin: 0.8rem 0 2rem;
  color: #5b3a21;
  max-width: 100%;
  line-height: 1.4;
}

.therapy-steps-actions {
  margin-top: 2rem;
}

.therapy-steps-actions .btn {
  padding: 1rem 1.6rem;
}

.btn-icon {
  display: inline-flex;
  width: auto;
  height: 1em;
  max-height: 1.25em;
  margin-right: 0.75rem;
  vertical-align: middle;
  object-fit: contain;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1.7rem 1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.3rem;
  box-shadow: 0 14px 35px rgba(24, 37, 58, 0.06);
}

.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent);
}

.step-number {
  position: absolute;
  top: -1.4rem;
  left: 1.3rem;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.step-card h4 {
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
  color: #5b3a21;
}

.step-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.info-card,
.timeline-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(24, 37, 58, 0.05);
}

.info-card {
  padding: 1.4rem;
}

.info-card h3,
.timeline-card h3 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #5b3a21;
}

.info-card p {
  color: #7a4b28;
  font-size: 0.88rem;
  line-height: 1.45;
}

.timeline-card p,
.about-copy p,
.faq-answer p,
.cta p {
  color: var(--muted);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  padding: 1.5rem;
}

.timeline-card span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-card h3 {
  color: var(--accent);
}

#sobre .about-copy .eyebrow {
  background: #f3e2cf;
  color: #7a4b28;
}

#sobre .about-copy h2 {
  color: #5b3a21;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 1rem;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .nav-links li {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    background-image: none;
    background-color: #fcfbf8;
    background-position: center top;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .hero::before {
    display: none;
  }

  .hero-image-mobile {
    display: block;
    margin-bottom: 1rem;
  }

  .hero-image-mobile img {
    max-height: 45vh;
    object-fit: cover;
  }

  .hero-inner {
    padding: 2.5rem 0;
  }

  .hero-inner.container {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy {
    padding: 1.6rem 1.6rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.95rem;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.65rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .cards-grid,
  .steps-list,
  .timeline-grid,
  .about-grid,
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .therapy-steps {
    margin-top: 2rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .about-copy,
  .cta-copy {
    text-align: left;
  }

  .about-image img,
  .cta-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
  }

  .therapy-steps-actions,
  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cta-actions a {
    width: 100%;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }

  .whatsapp-float {
    width: 3.8rem;
    height: 3.8rem;
    padding: 0.75rem;
  }

  .section-heading h2,
  .hero h1,
  .about-copy h2,
  .cta h2 {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .hero-copy {
    padding: 1.25rem 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-text,
  .info-card p,
  .step-card p,
  .faq-answer p,
  .cta p {
    font-size: 0.98rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .nav-links li {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .faq-list {
    display: grid;
    gap: 1rem;
  }

  .faq-question {
    width: 100%;
    padding: 1rem 1rem;
    text-align: left;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(122, 75, 40, 0.18);
  background: rgba(243, 224, 212, 0.18);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 0.9rem;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  order: 2;
  margin-top: 0.75rem;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle .menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.mobile-menu-toggle .menu-icon span {
  display: block;
  width: 1rem;
  height: 0.15rem;
  background: #5b3a21;
  border-radius: 999px;
}

.nav-links {
  transition: max-height 0.3s ease;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    order: 1;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    order: 2;
    margin-top: 0.75rem;
  }

  .nav-links {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-top: 0.75rem;
    transition: max-height 0.3s ease;
    order: 3;
  }

  .nav-links.open {
    max-height: 500px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: rgba(243, 224, 212, 0.16);
    color: #5b3a21;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(122, 75, 40, 0.1);
  }
}

#sobre .about-copy p {
  color: #7a4b28;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

.about-image img {
  border-radius: 1.5rem;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy p + p {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-question {
  width: 100%;
  border: none;
  background: #fbf3ea;
  padding: 1.1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #5b3a21;
  cursor: pointer;
  border-radius: 1.1rem;
  text-align: left;
}

.faq-icon {
  color: #7a4b28;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  padding: 0.6rem 1.2rem 1rem;
}

.cta {
  padding: 2.5rem;
  border-radius: 2rem;
  background: #f1e8dc;
  color: var(--text);
  box-shadow: 0 18px 40px rgba(26, 41, 63, 0.08);
  border: 1px solid rgba(139, 90, 52, 0.14);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-image {
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 220px;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-copy {
  text-align: left;
}

.cta .eyebrow {
  background: rgba(139, 90, 52, 0.08);
  color: var(--accent);
}

.cta h2 {
  color: #5b3a21;
  text-align: left;
  max-width: none;
  width: 100%;
}

.cta p {
  color: var(--muted);
  margin-bottom: 1.3rem;
  text-align: left;
}

.cta .btn-primary {
  background: var(--accent);
  color: #fff;
}

.cta .btn-secondary {
  background: transparent;
  border-color: rgba(139, 90, 52, 0.22);
  color: var(--primary-dark);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.whatsapp-float img {
  width: 2.2rem;
  height: 2.2rem;
}

.whatsapp-float {
  width: 4.4rem;
  height: 4.4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .timeline-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 420px;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    background-position: center center;
    min-height: auto;
    padding: 2.5rem 0;
  }

  .hero-copy {
    margin: 0 1rem 1.25rem;
    padding: 0 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 0.6rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 280px;
    background-position: center center;
  }

  .about-image img {
    max-height: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-image {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card-badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
    border-radius: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 900px) {
  .container,
  .site-header,
  .navbar,
  .hero,
  .hero-inner,
  .hero-copy,
  .section,
  .section-alt,
  .cards-grid,
  .steps-list,
  .timeline-grid,
  .about-grid,
  .cta-grid,
  .faq-list,
  .footer-content,
  .cta,
  .about-image,
  .cta-image,
  .info-card,
  .step-card,
  .faq-item,
  .hero-actions,
  .cta-actions,
  .nav-links {
    min-width: 0;
    max-width: 100%;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    background-position: center top;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy,
  .cta,
  .faq-question,
  .faq-answer,
  .info-card,
  .step-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cards-grid,
  .steps-list,
  .timeline-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-grid {
    grid-template-columns: 1fr !important;
  }

  .about-image img,
  .cta-image img,
  .hero-card img,
  .logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
  }

  .nav-links li {
    min-width: 0;
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  html,
  body,
  .container,
  .site-header,
  .navbar,
  .hero,
  .hero-inner,
  .hero-copy,
  .section,
  .section-alt,
  .cards-grid,
  .steps-list,
  .timeline-grid,
  .about-grid,
  .cta-grid,
  .faq-list,
  .footer-content,
  .cta,
  .about-image,
  .cta-image,
  .info-card,
  .step-card,
  .faq-item {
    min-width: 0;
    max-width: 100%;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    background-position: center top;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy,
  .cta,
  .faq-question,
  .faq-answer,
  .info-card,
  .step-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .btn,
  .mobile-menu-toggle,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-links li {
    min-width: 0;
  }

  .about-image img,
  .cta-image img,
  .hero-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
