@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: only light;

  --brand: #101d3d;
  --brand-deep: #0a1526;
  --brand-soft: #1a2e63;
  --brand-foreground: #ffffff;

  --accent-blue: #1d4ed8;
  --accent-blue-bright: #3b82f6;
  --accent-blue-soft: #60a5fa;

  --background: #ffffff;
  --background-alt: #f8fafc;

  --ink: #131f3f;
  --ink-muted: #425573;
  --ink-soft: #5b6884;

  --rule: #dbe4ee;

  --whatsapp: #25d366;

  --container-max: 1240px;
  --radius: 12px;
  --radius-sm: 8px;

  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-text-fill-color: #131f3f;
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1300px) {
  .container {
    padding-left: max(40px, calc((100vw - var(--container-max)) / 2));
    padding-right: max(40px, calc((100vw - var(--container-max)) / 2));
  }
}

/* ---------------------------------------------------------
   Tipografia
--------------------------------------------------------- */

.display {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.display-tight {
  letter-spacing: -0.035em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-blue-soft);
}

.eyebrow--dark {
  color: var(--ink-soft);
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------
   Header — sempre sólido, nunca transparente
--------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(16, 29, 61, 0.02), 0 8px 24px -18px rgba(16, 29, 61, 0.25);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  padding: 6px 0;
}

.brand-mark img {
  height: 30px;
  width: auto;
}

.brand-mark__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--brand);
  white-space: nowrap;
  padding-left: 11px;
  border-left: 1px solid var(--rule);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  padding: 4px 0;
  transition: color 0.25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  display: none;
  align-items: center;
}

@media (min-width: 1200px) {
  .header-cta {
    display: flex;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  background: #ffffff;
}

.mobile-nav.is-open {
  display: flex;
}

@media (min-width: 1200px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}

.mobile-nav__cta {
  padding: 16px 20px 20px;
}

/* ---------------------------------------------------------
   Botões
--------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s, color 0.25s,
    border-color 0.25s;
}

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

.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue-bright) 0%, var(--accent-blue) 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(29, 78, 216, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px -6px rgba(29, 78, 216, 0.6);
  filter: brightness(1.05);
}

.btn-brand {
  background: var(--brand);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 6px 16px -6px rgba(16, 29, 61, 0.5);
}

.btn-brand:hover {
  background: var(--brand-soft);
  box-shadow: 0 10px 22px -6px rgba(16, 29, 61, 0.55);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--brand);
  -webkit-text-fill-color: #131f3f;
  border-color: #ffffff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
}

.btn-outline-brand {
  border-color: var(--rule);
  color: var(--brand);
  -webkit-text-fill-color: #101d3d;
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 22px -8px rgba(16, 29, 61, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
  background: #1fb958;
  box-shadow: 0 12px 26px -6px rgba(37, 211, 102, 0.55);
}

/* ---------------------------------------------------------
   Seções base — cada variante declara seu próprio padding
   (nunca herdar de um .section genérico para não gerar gap
   invisível quando a seção também é hero)
--------------------------------------------------------- */

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--background-alt);
}

.section--brand {
  background: var(--brand);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.section--brand .ink-muted-on-brand {
  color: rgba(255, 255, 255, 0.68);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 768px) {
  .section {
    padding: 88px 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 112px 0;
  }
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------------------------------
   Hero (Home) — foto real da proprietária
   Mobile: foto completa acima (sem corte), texto empilhado
   abaixo em bloco sólido — nunca texto sobre o rosto.
   Desktop: foto vira background full-bleed, texto ocupa o
   espaço vazio à esquerda da própria foto.
--------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--brand);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  overflow: hidden;
}

.hero__media {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 118%;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(
    to bottom,
    rgba(16, 29, 61, 0) 0%,
    rgba(16, 29, 61, 0.55) 60%,
    #101d3d 100%
  );
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% top;
  display: block;
}

.hero__scrim {
  display: none;
}

.hero__content {
  padding: 40px 0 56px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 48px 0 64px;
  }

  .hero__media {
    padding-bottom: 78%;
  }
}

@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: clamp(560px, 78vh, 760px);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    z-index: 0;
  }

  .hero__media::after {
    display: none;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 22%;
  }

  .hero__scrim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      100deg,
      rgba(10, 15, 30, 0.94) 0%,
      rgba(10, 15, 30, 0.88) 30%,
      rgba(10, 15, 30, 0.55) 48%,
      rgba(10, 15, 30, 0.1) 64%,
      transparent 76%
    );
  }

  .hero__content {
    position: relative;
    z-index: 2;
    padding: 64px 0;
  }

  .hero__inner {
    max-width: 620px;
  }
}

@media (min-width: 1300px) {
  .hero__inner {
    max-width: 660px;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 6.4vw, 3.4rem);
  max-width: 16ch;
}

.hero__lede {
  margin: 20px 0 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fbbf24;
}

.trust-badge span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82);
}

.trust-badge b {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-weight: 700;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.5);
}

.hero__stat {
  position: relative;
  background: rgba(6, 12, 26, 0.72);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.3s;
}

.hero__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--accent-blue-soft);
}

.hero__stat b {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hero__stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------
   Sub-hero (páginas internas)
--------------------------------------------------------- */

.subhero {
  background: var(--brand);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  padding: 48px 0 56px;
}

@media (min-width: 768px) {
  .subhero {
    padding: 64px 0 72px;
  }
}

.subhero h1 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
  max-width: 22ch;
}

.subhero p {
  margin: 16px 0 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   Grids & Cards
--------------------------------------------------------- */

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-ops {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 860px) {
  .grid-ops {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 30px 26px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(16, 29, 61, 0.06), 0 10px 24px -16px rgba(16, 29, 61, 0.22);
  transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--brand-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 24px 50px -18px rgba(10, 21, 38, 0.32), 0 8px 20px -10px rgba(10, 21, 38, 0.18);
  transform: translateY(-4px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--background-alt) 0%, #eef2f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s;
}

.card:hover .card__icon {
  background: linear-gradient(150deg, var(--accent-blue) 0%, var(--brand-soft) 100%);
  color: #ffffff;
  transform: scale(1.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--brand);
}

.card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.card--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.card--dark:hover {
  border-color: var(--accent-blue-soft);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.card--dark h3 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.card--dark p {
  color: rgba(255, 255, 255, 0.65);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.65);
}

/* ---------------------------------------------------------
   Sidebar CTA (páginas de produto)
--------------------------------------------------------- */

.sidebar-cta {
  position: relative;
  background: linear-gradient(165deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: none;
  border-radius: var(--radius);
  padding: 30px 26px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 20px 45px -18px rgba(10, 21, 38, 0.4), 0 6px 16px -8px rgba(10, 21, 38, 0.25);
  overflow: hidden;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  pointer-events: none;
}

.sidebar-cta__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-blue-soft);
}

.sidebar-cta h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.sidebar-cta p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.72);
}

.sidebar-cta__action {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

/* ---------------------------------------------------------
   Operadoras table-ish list
--------------------------------------------------------- */

.op-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
  margin: 0 -16px;
  border-bottom: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.op-row:hover {
  background: var(--background-alt);
}

.op-row:first-child {
  padding-top: 24px;
}

.op-row:last-child {
  border-bottom: none;
}

@media (min-width: 700px) {
  .op-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .op-row__name {
    width: 200px;
    flex-shrink: 0;
  }
}

.op-row__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
}

.op-row__tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-blue);
}

.op-row__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------
   FAQ (accordion)
--------------------------------------------------------- */

.faq-item {
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}

.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-item[data-open="true"] {
  background: linear-gradient(180deg, var(--background-alt) 0%, transparent 100%);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  transition: color 0.25s;
}

.faq-item__q:hover {
  color: var(--accent-blue);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s,
    border-color 0.3s;
  color: var(--brand);
}

.faq-item[data-open="true"] .faq-item__icon {
  transform: rotate(135deg);
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[data-open="true"] .faq-item__a {
  max-height: 400px;
}

.faq-item__a p {
  margin: 0 4px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 68ch;
}

/* ---------------------------------------------------------
   Blog cards
--------------------------------------------------------- */

.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-card__tag {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-blue);
}

.post-card h3 {
  margin: 0;
  font-size: 19px;
  color: var(--brand);
  line-height: 1.3;
}

.post-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.post-card__link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
}

/* ---------------------------------------------------------
   Direct-answer block (AEO)
--------------------------------------------------------- */

.direct-answer {
  background: var(--background-alt);
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 22px;
  margin: 20px 0 32px;
}

.direct-answer p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}

/* ---------------------------------------------------------
   Prose (páginas de conteúdo)
--------------------------------------------------------- */

.prose {
  max-width: 74ch;
}

.prose h2 {
  color: var(--brand);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  margin: 40px 0 14px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  color: var(--brand);
  font-size: 18px;
  margin: 28px 0 10px;
}

.prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.75;
  padding-left: 20px;
  margin: 0 0 16px;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: underline;
}

/* ---------------------------------------------------------
   Portrait (página Sobre) — foto acima, texto abaixo no mobile
--------------------------------------------------------- */

.portrait-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 900px) {
  .portrait-block {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .portrait-frame {
    margin: 0;
    flex-shrink: 0;
    width: 340px;
  }
}

.portrait-frame__accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -16px;
  bottom: -16px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--accent-blue) 0%, var(--brand-soft) 100%);
  z-index: 0;
}

.portrait-frame__ratio {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background-alt);
  box-shadow: 0 28px 60px -24px rgba(10, 21, 38, 0.45), 0 10px 24px -14px rgba(10, 21, 38, 0.3);
}

.portrait-frame__ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-caption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
}

@media (min-width: 900px) {
  .portrait-caption {
    text-align: left;
  }
}

.portrait-caption b {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand);
}

.portrait-caption span {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.portrait-caption::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-blue);
  margin: 0 auto 12px;
}

@media (min-width: 900px) {
  .portrait-caption::before {
    margin: 0 0 12px;
  }
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--brand-deep);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  padding: 56px 0 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--brand-soft), transparent);
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40ch;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.54);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--accent-blue-soft);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.54);
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-disclaimer {
  max-width: 62ch;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Botões flutuantes (Instagram + WhatsApp)
--------------------------------------------------------- */

.social-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-float__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.social-float__btn:hover {
  transform: scale(1.08);
}

.instagram-float {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 10px 26px -8px rgba(214, 36, 159, 0.55);
}

.instagram-float:hover {
  box-shadow: 0 14px 30px -6px rgba(214, 36, 159, 0.65);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2.8s ease-out infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 14px 32px -6px rgba(0, 0, 0, 0.45);
  animation-play-state: paused;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------------------------------------------------------
   Utilities
--------------------------------------------------------- */

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--brand);
  color: #ffffff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
