:root {
  --color-black: #000000;
  --color-red: #f50b0f;
  --color-white: #ffffff;
  --color-yellow: #f4c701;
  --color-ink: #0a0a0a;
  --color-ink-soft: #141414;
  --color-ink-muted: #202020;
  --color-paper: #f5f3ef;
  --color-paper-soft: #faf9f7;
  --color-paper-warm: #f1eee8;
  --color-line: rgba(255, 255, 255, 0.08);
  --color-text-soft: rgba(255, 255, 255, 0.72);
  --color-dark-text: rgba(0, 0, 0, 0.76);
  --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-hero-panel: 0 18px 44px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 22px 40px rgba(0, 0, 0, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-white);
  font-family: "Archivo", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 11, 15, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f5f0 0%, var(--color-paper) 46%, #efe9e1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
  opacity: 0.28;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-tag::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-yellow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--color-white);
  background: linear-gradient(135deg, #ff1d21 0%, #c4070a 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.button--accent {
  color: var(--color-white);
  background: linear-gradient(135deg, #ff2a2f 0%, #c4070a 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.button--ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: none;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  font-weight: 800;
  min-height: 42px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(18px);
}

.topbar__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.ticker--header {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  border-top: 0;
  box-shadow: none;
}

.brand img {
  width: clamp(170px, 18vw, 245px);
  height: auto;
}

.topbar__highlight {
  display: grid;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.topbar__highlight strong {
  font-family: "Barlow Condensed", sans-serif;
  position: relative;
  display: inline-block;
  padding: 12px 30px 14px;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--color-white);
  text-shadow: 0 10px 26px rgba(245, 11, 15, 0.34);
}

.topbar__highlight strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(245, 11, 15, 0.22), rgba(244, 199, 1, 0.1));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(245, 11, 15, 0.12);
  z-index: -1;
}

.hero {
  position: relative;
  padding: 42px 0 84px;
  overflow: visible;
}

.hero__photo-note {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.46)),
    linear-gradient(135deg, rgba(245, 11, 15, 0.18), rgba(244, 199, 1, 0.06)),
    url("../images/hero-vergalhao-bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

.hero__panel {
  width: min(100%, 1360px);
  margin: 0 auto;
  position: relative;
  padding: 52px 52px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(245, 11, 15, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(244, 199, 1, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(34, 34, 34, 0.94), rgba(16, 16, 16, 0.96));
  box-shadow: var(--shadow-hero-panel);
  overflow: hidden;
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.18;
  pointer-events: none;
}

.hero__panel-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.18;
  pointer-events: none;
}

.hero__panel-glow--left {
  left: -120px;
  top: 28px;
  background: radial-gradient(circle, rgba(245, 11, 15, 0.9), transparent 72%);
}

.hero__panel-glow--right {
  right: -120px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(244, 199, 1, 0.85), transparent 72%);
}

.hero__backdrop {
  display: none;
}

.hero__stack {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.hero h1,
.section-heading h2,
.about h2 {
  margin: 16px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: none;
  margin-top: 0;
  font-size: clamp(3rem, 4.4vw, 4.35rem);
  line-height: 0.9;
  text-wrap: balance;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero__headline-sub {
  display: block;
  margin-top: 12px;
  font-size: 0.92em;
  color: rgba(255, 255, 255, 0.95);
}

.about p {
  margin: 20px 0 0;
  line-height: 1.72;
}

.hero__copy--center {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 10px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero__actions--center {
  justify-content: center;
  margin-top: 4px;
}

.carousel {
  position: relative;
}

.carousel--hero {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel__viewport {
  position: relative;
  padding: 6px;
  border-radius: calc(var(--radius-xl) + 2px);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  will-change: transform;
}

.slide {
  position: relative;
  min-height: 320px;
  padding: 18px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 24px rgba(0, 0, 0, 0.1);
  opacity: 0.72;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.slide.is-active,
.slide.is-near {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 284px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  mix-blend-mode: normal;
  filter: contrast(1) saturate(1);
}

.slide__caption {
  position: absolute;
  left: 16px;
  top: 16px;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 0;
  max-width: calc(100% - 32px);
}

.slide__caption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.36rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-red);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.benefits__actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.carousel__button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.ticker {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ff1d21 0%, #c4070a 100%);
  color: var(--color-white);
  overflow: hidden;
}

.ticker::before,
.ticker::after {
  content: none;
}

.ticker__viewport {
  overflow: hidden;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 11px 0;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__track span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.benefits,
.about {
  color: var(--color-black);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--color-yellow);
}

.section-kicker--dark {
  color: rgba(0, 0, 0, 0.64);
}
.section-heading h2,
.about h2 {
  font-size: clamp(3.2rem, 6vw, 5.1rem);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 11, 15, 0.14), rgba(244, 199, 1, 0.12));
  color: var(--color-red);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(245, 11, 15, 0.08);
}

.benefit-card em {
  display: block;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefit-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.65rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.benefit-card strong small {
  font-size: 0.72em;
  font-weight: 700;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--color-dark-text);
  display: none;
}

.benefits {
  position: relative;
  padding: 78px 0 68px;
  background: #ffffff;
}

.benefits::before {
  display: none;
}

.benefits__header {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 0 4px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.section-heading h2 {
  margin-top: 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  position: relative;
  min-height: 200px;
  padding: 28px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    var(--color-paper-soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-red), rgba(244, 199, 1, 0.9));
  opacity: 0.9;
}

.benefit-card--wide {
  background:
    radial-gradient(circle at top right, rgba(244, 199, 1, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--color-paper-soft);
}

.benefit-card--accent {
  color: var(--color-black);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    var(--color-paper-soft);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.benefit-card--accent::before {
  background: linear-gradient(90deg, var(--color-red), rgba(244, 199, 1, 0.9));
}

.benefit-card--accent span {
  background: linear-gradient(135deg, rgba(245, 11, 15, 0.14), rgba(244, 199, 1, 0.12));
  color: var(--color-red);
  box-shadow: inset 0 0 0 1px rgba(245, 11, 15, 0.08);
}

.benefit-card--accent em {
  color: rgba(0, 0, 0, 0.48);
}

.benefit-card--accent strong {
  color: var(--color-black);
}

.about {
  padding: 38px 0 96px;
}

.about__single {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}

.about__single h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  text-align: center;
}

.about__copy {
  padding: 24px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.74)),
    var(--color-paper-soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.about__media {
  overflow: hidden;
  border-radius: 26px;
}

.about__media img {
  width: 100%;
  height: clamp(260px, 36vw, 440px);
  object-fit: cover;
  object-position: center;
}

.about__text {
  padding: 14px 18px 18px;
}

.about__copy p {
  color: var(--color-dark-text);
}

.about__copy--full {
  min-height: 100%;
  display: grid;
  gap: 8px;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.about__text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about__actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.footer {
  color: var(--color-white);
  background:
    linear-gradient(180deg, #101010 0%, #060606 100%);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.footer__brand img {
  width: clamp(160px, 18vw, 220px);
  height: auto;
}

.footer__info {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: center;
}

.footer__info strong {
  color: var(--color-yellow);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__info span,
.footer__info a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer__whatsapp-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #25d366;
}

.footer__whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bar p {
  margin: 0;
  padding: 16px 0 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
  .topbar__content,
  .footer__content {
    grid-template-columns: 1fr;
  }

  .topbar__content {
    padding: 18px 0;
  }

  .benefits__header {
    flex-wrap: wrap;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel__track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar .button--primary {
    display: none;
  }

  .topbar {
    border-bottom-color: rgba(255, 255, 255, 0.04);
  }

  .topbar__content {
    gap: 10px;
    min-height: auto;
    padding: 12px 0 8px;
    justify-items: center;
  }

  .brand img {
    width: clamp(150px, 42vw, 190px);
  }

  .topbar__highlight {
    width: 100%;
  }

  .topbar__highlight strong {
    width: min(100%, 320px);
    padding: 8px 16px 10px;
    font-size: clamp(1.05rem, 4.2vw, 1.4rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
  }

  .floating-whatsapp {
    display: inline-flex;
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.7rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: calc(100vw - 24px);
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
  }

  .hero__panel {
    padding: 20px 14px 18px;
    border-radius: 26px;
  }

  .hero__panel-glow {
    opacity: 0.12;
    filter: blur(26px);
  }

  .hero__copy--center {
    padding-top: 2px;
  }

  .hero__headline-sub {
    margin-top: 8px;
  }

  .hero__actions {
    margin-top: 10px;
    justify-content: center;
  }

  .hero__actions .button {
    width: fit-content;
    max-width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .carousel__track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .carousel__viewport {
    padding: 0 2px;
    border-radius: 22px;
  }

  .slide {
    min-height: 244px;
    padding: 10px;
    border-radius: 22px;
  }

  .slide img {
    height: 202px;
  }

  .slide__caption {
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
  }

  .slide__caption strong {
    font-size: 0.86rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .carousel__controls {
    gap: 12px;
    margin-top: 14px;
  }

  .carousel__button {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .ticker__track {
    gap: 18px;
    padding: 8px 0;
    animation-duration: 34s;
  }

  .ticker__track span {
    gap: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .benefits {
    padding: 48px 0 42px;
  }

  .benefits__header {
    padding: 0;
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .section-kicker {
    justify-content: center;
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 0.95;
  }

  .benefits__actions {
    margin-top: 18px;
  }

  .benefits__actions .button {
    width: fit-content;
    max-width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .about__copy,
  .benefit-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .benefit-card {
    min-height: 0;
  }

  .benefit-card span {
    width: 40px;
    height: 40px;
    font-size: 0.82rem;
  }

  .benefit-card em {
    margin-top: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .benefit-card strong {
    margin-top: 10px;
    font-size: 2rem;
  }

  .about {
    padding: 30px 0 62px;
  }

  .about__single {
    gap: 12px;
  }

  .about__single h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    text-align: center;
  }

  .about__text {
    padding: 8px 4px 4px;
  }

  .about__copy p {
    margin-top: 14px;
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .about__media {
    border-radius: 18px;
  }

  .about__media img {
    height: 220px;
  }

  .footer__content {
    text-align: center;
    justify-items: center;
    gap: 18px;
    padding: 24px 0;
  }

  .footer__brand img {
    width: 168px;
  }

  .footer__info {
    gap: 6px;
  }

  .footer__info strong {
    font-size: 0.74rem;
  }

  .footer__info span,
  .footer__info a {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .footer__bar p {
    padding: 14px 0 18px;
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .ticker--header {
    margin-top: 8px;
  }

  .hero__panel {
    padding: 18px 12px 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .slide {
    min-height: 238px;
    padding: 12px;
  }

  .slide img {
    height: 190px;
  }

  .slide__caption strong {
    font-size: 0.78rem;
  }

  .slide__caption {
    display: none;
  }

  .benefit-card strong {
    font-size: 1.8rem;
  }

  .about__copy p {
    font-size: 0.93rem;
  }

  .hero__actions .button,
  .benefits__actions .button,
  .about__actions .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .floating-whatsapp {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.66rem;
  }
}
