/* ============================================================
   LARISSA LOPES — Landing Page
   styles.css
   ============================================================ */

/* ── Fonte local ────────────────────────────────────────────── */
@font-face {
  font-family: 'Times New Normal';
  src: url('../assets/fonts/Times New Normal Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --color-white:      #FFFFFF;
  --color-red:        #780102;
  --color-red-light:  #9b0103;
  --color-black:      #000000;
  --color-gray-90:    #0f0f0f;
  --color-gray-80:    #1a1a1a;
  --color-gray-20:    #d4d4d4;
  --color-gray-10:    #f2f2f2;

  --font-display:     'Playfair Display', Georgia, serif;
  --font-script:      'Pinyon Script', 'Great Vibes', cursive;
  --font-subtitle:    'Times New Normal', 'Times New Roman', Georgia, serif;
  --font-body:        'Montserrat', 'Times New Normal', sans-serif;

  --spacing-xs:       0.5rem;
  --spacing-sm:       1rem;
  --spacing-md:       2rem;
  --spacing-lg:       4rem;
  --spacing-xl:       8rem;

  --transition-fast:  180ms ease;
  --transition-med:   360ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  600ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:        1140px;
  --nav-height:       72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* previne scroll horizontal em iOS */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

/* ── Scroll-reveal base ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-med),
              box-shadow var(--transition-med);
}

.nav.scrolled {
  background-color: rgba(0, 0, 0, 0.92);
  box-shadow: 0 1px 0 rgba(120, 1, 2, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* O logo é branco/colorido sobre transparente — drop-shadow sutil para legibilidade */
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: border-color var(--transition-fast),
              background-color var(--transition-fast),
              color var(--transition-fast);
}

.nav__cta:hover {
  border-color: var(--color-red);
  background-color: var(--color-red);
}

/* Ícone Instagram na nav */
.nav__instagram {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  margin-left: 0.5rem;
}
.nav__instagram:hover { color: var(--color-white); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* desktop: ocupa tela cheia; mobile: abraça o conteúdo */
  min-height: 100vh;       /* fallback iOS/Safari antigo */
  min-height: 100dvh;      /* browsers modernos */
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  padding-bottom: 3rem;
  overflow: visible;
  gap: 1.5rem;
  overflow: hidden;
}

/* Degradê de saída do hero — faz parte da seção, sem borda */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    #000000 0%,
    rgba(60, 1, 1, 0.18) 55%,
    #F7F4F1 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* ── Hero Frame (foto + vignette + nome) ─────────────────── */
.hero__frame {
  position: relative;
  width: min(82vw, 520px);
  flex-shrink: 0;
  background: transparent;
  border: none;
  line-height: 0;         /* remove gap abaixo do img (bug clássico de inline) */
  overflow: visible;
  /* Visível por padrão — animação só em desktop com mouse (ver @media hover abaixo) */
}

/* Vignette radial — escurece bordas, especialmente cantos e base */
.hero__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* escurece as quatro bordas (vignette clássico) */
    radial-gradient(
      ellipse 74% 76% at 50% 38%,
      transparent 28%,
      rgba(0, 0, 0, 0.45) 52%,
      rgba(0, 0, 0, 0.80) 70%,
      rgba(0, 0, 0, 0.96) 86%,
      #000 100%
    ),
    /* reforça escurecimento na base para o nome ficar legível */
    linear-gradient(
      to bottom,
      transparent 45%,
      rgba(0, 0, 0, 0.55) 68%,
      rgba(0, 0, 0, 0.92) 84%,
      #000 100%
    );
}

.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 10%;
  min-height: 380px;
  max-height: 72vh;
  /* Isola o clipping do vignette apenas na foto */
  position: relative;
  z-index: 0;
}

/* Rosa decorativa no hero — mobile first (corner peek: esquerda) */
.hero__rose {
  position: absolute;
  bottom: 22%;
  left: -30px;          /* sai ~30px pela borda esquerda */
  width: 115px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.50;
  filter: blur(2px) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transform: rotate(-16deg);
  z-index: 0;
}

/* Assinatura PNG — levemente deslocada, estilo manuscrito */
.hero__name-img {
  display: block;
  width: min(72vw, 340px);
  height: auto;
  margin-top: -4rem;
  transform: translateX(8%);
  pointer-events: none;
  filter: drop-shadow(0 0 16px rgba(120, 1, 2, 0.5))
          drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  /* Visível por padrão — animação só em desktop com mouse (ver @media hover abaixo) */
}

/* ── Tagline abaixo da assinatura ──────────────────────── */
.hero__tagline {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.6rem;
  width: min(360px, calc(100vw - 3rem));
  text-align: center;
  /* Visível por padrão — sem opacity:0 para garantir visibilidade em qualquer browser */
}

/* Animação fade-in apenas em dispositivos com mouse (desktop) — touch devices sempre visível */
@media (hover: hover) and (pointer: fine) {
  .hero__frame {
    opacity: 0;
    -webkit-transition: opacity 1.2s ease 0.1s;
    transition: opacity 1.2s ease 0.1s;
  }
  .hero__name-img {
    opacity: 0;
    -webkit-transition: opacity 1s ease 0.35s;
    transition: opacity 1s ease 0.35s;
  }
  .hero__tagline {
    opacity: 0;
    -webkit-transition: opacity 0.9s ease 0.65s;
    transition: opacity 0.9s ease 0.65s;
  }
  .hero--visible .hero__frame,
  .hero--visible .hero__name-img,
  .hero--visible .hero__tagline {
    opacity: 1;
  }
}

.hero__tagline-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  letter-spacing: -0.07em;
}

.hero__tagline-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.hero__tagline-text strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.hero__tagline-arrow {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
  -webkit-animation: arrowBob 2s ease-in-out infinite;
  animation: arrowBob 2s ease-in-out infinite;
}

@-webkit-keyframes arrowBob {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50%       { -webkit-transform: translateY(5px); transform: translateY(5px); }
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* (scroll indicator removido) */

/* ── Services Section ──────────────────────────────────────── */
.services {
  position: relative;
  background-color: #F7F4F1;
  padding-block: var(--spacing-xl) calc(var(--spacing-xl) + 2rem);
  overflow: hidden; /* impede que a rosa decorativa cause scroll horizontal */
}

/* Rosa decorativa serviços — mobile first (corner peek: direita) */
.services__rose {
  position: absolute;
  top: 1rem;
  right: -28px;
  width: 105px;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.45;
  filter: blur(1.5px) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transform: rotate(18deg);
  z-index: 0;
}

/* Garante que conteúdo fique acima da rosa */
.services .container {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.services__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1rem;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-black);
}

.services__title em {
  font-style: italic;
  color: var(--color-red);
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: var(--color-gray-20);
  border: 2px solid var(--color-gray-20);
}

/* ── Service Card ──────────────────────────────────────────── */
.card {
  position: relative;
  background-color: #FAF7F4;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  transition: background-color var(--transition-med);
}

.card__img-wrap {
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 180px;
  min-width: 180px;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card__img {
  transform: scale(1.04);
}

.card__content {
  padding: 2.5rem 2.5rem 2.25rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0; /* previne overflow do texto dentro do flex */
  gap: 1.1rem;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.card:hover {
  background-color: var(--color-gray-10);
}

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

.card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.02em;
  user-select: none;
  transition: color var(--transition-med);
}

.card:hover .card__number {
  color: rgba(120, 1, 2, 0.08);
}

.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

.card__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.card__badge--soon .card__badge-dot {
  background: var(--color-gray-20);
}

.card__badge--soon {
  color: var(--color-gray-20);
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.card__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  flex: 1;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--color-red);
  border-radius: 2px;
  align-self: flex-start;
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.card__cta:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}

.card__cta--disabled {
  color: var(--color-gray-20);
  border-color: var(--color-gray-20);
  cursor: not-allowed;
  pointer-events: none;
}

/* CTA primário — serviços ativos (cards 1 e 2) */
.card__cta--primary {
  color: var(--color-white);
  background-color: var(--color-red);
  border-color: var(--color-red);
}
.card__cta--primary:hover {
  background-color: var(--color-red-light);
  border-color: var(--color-red-light);
  color: var(--color-white);
}

/* CTA lista de espera — card 3, menos ênfase */
.card__cta--waitlist {
  color: var(--color-red);
  background-color: transparent;
  border-color: var(--color-red);
  opacity: 0.75;
}
.card__cta--waitlist:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  opacity: 1;
}

/* ── Footer social ──────────────────────────────────────────── */
.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social-link {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}
.footer__social-link:hover { color: var(--color-white); }

/* ── WhatsApp FAB ────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: var(--color-white);
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab__label {
  white-space: nowrap;
}

/* No mobile, esconde o label e fica só o ícone circular */
@media (max-width: 480px) {
  .whatsapp-fab {
    padding: 0.85rem;
    border-radius: 50%;
  }
  .whatsapp-fab__label { display: none; }
}

.card__cta svg {
  transition: transform var(--transition-fast);
}

.card__cta:hover svg {
  transform: translateX(4px);
}


/* ── Manifesto / Quote Banner (não utilizado) ────────────────── */
.manifesto {
  background-color: var(--color-gray-90);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 1.5rem;
  overflow: hidden;
}

.manifesto__inner {
  display: flex;
  justify-content: center;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 400;
  font-style: italic;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 900px;
  white-space: nowrap;
}

.manifesto__quote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--color-white);
}

.manifesto__line {
  width: 1px;
  min-height: 44px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.manifesto__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: 0;
}

.manifesto__name {
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.06em;
}

.manifesto__role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background-color: var(--color-gray-90);
  color: rgba(255,255,255,0.72);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer__brand span {
  color: var(--color-red);
}

.footer__copy {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ── Hero Keyframes ─────────────────────────────────────────── */
@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@-webkit-keyframes fadeUp {
  from { opacity: 0; -webkit-transform: translateY(24px); transform: translateY(24px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleX {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(1.15); }
}

/* ── Responsive ─────────────────────────────────────────────── */
/* Desktop: rosas reposicionadas com mais espaço */
@media (min-width: 769px) {
  /* Hero rose: canto superior esquerdo */
  .hero__rose {
    top: calc(var(--nav-height) + 2rem);
    bottom: auto;
    left: 5%;
    width: clamp(130px, 12vw, 190px);
    transform: rotate(-10deg);
    opacity: 0.55;
  }
  /* Services rose: borda direita, peek */
  .services__rose {
    top: 3rem;
    right: -50px;
    width: clamp(160px, 15vw, 220px);
    transform: rotate(14deg);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 5rem;
    --spacing-lg: 3rem;
  }

  /* No mobile: nav limpo — só logo + Instagram */
  .nav__cta { display: none; }
  .nav__instagram { margin-left: auto; color: rgba(255,255,255,0.85); }

  /* Hero mobile: remove altura mínima forçada, abraça o conteúdo */
  .hero {
    min-height: unset;
    height: auto;
    padding-bottom: 2.5rem;
    gap: 0.5rem; /* reduzido: menos espaço entre foto e assinatura */
  }

  .hero__frame {
    width: min(90vw, 380px);
    background: none;
    border: none;
    outline: none;
    margin-bottom: -2px; /* elimina seam de renderização na borda inferior */
  }

  .hero__photo { max-height: 60vh; }

  /* Assinatura: puxa mais para cima, cola na foto */
  .hero__name-img {
    margin-top: -4rem;
    width: min(78vw, 300px);
  }

  /* Tagline mobile */
  .hero__tagline {
    gap: 0.75rem;
    width: calc(100vw - 2.5rem);
  }

  .hero__tagline-title {
    font-size: 1rem;
  }

  .hero__tagline-text {
    font-size: 0.76rem;
  }

  /* Rosa: fica sobre a assinatura, saindo pela esquerda */
  .hero__rose {
    bottom: 14%;
    left: -22px;
    width: 100px;
  }

  .manifesto__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .manifesto__line {
    width: 40px;
    min-height: 1px;
  }

  .manifesto__author {
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .services__grid {
    gap: 1.25rem;
    background-color: transparent;
    border: none;
  }

  .card {
    border: 1px solid var(--color-gray-20);
  }

  .card__img-wrap {
    width: 68px;
    min-width: 68px;
  }

  .card__content {
    padding: 0.9rem 0.85rem;
    gap: 0.5rem;
  }

  .card__title {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .card__desc {
    font-size: 0.74rem;
    line-height: 1.6;
  }

  .card__cta {
    align-self: flex-start;
    width: fit-content;
    font-size: 0.6rem;
    padding: 0.45rem 0.8rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .card__badge {
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .hero__frame { width: 92vw; }
  .hero__photo { max-height: 55vh; }
  .hero__name { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .manifesto__quote { white-space: normal; font-size: 0.8rem; }

  /* Cards: colunas mais estreitas em telas pequenas */
  .card__img-wrap { width: 62px; min-width: 62px; }

  /* Credo: menos padding lateral */
  .credo__inner {
    padding-inline: 1.25rem;
    padding-left: 1.25rem;
    max-width: 100%;
  }

  /* Footer: texto menor */
  .footer__copy { font-size: 0.72rem; }
}

/* ── Credo / Manifesto ──────────────────────────────────────── */
.credo {
  background-color: var(--color-black);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.credo__inner {
  max-width: 500px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-inline: 2rem;
  border-left: 2px solid var(--color-red);
  padding-left: 1.75rem;
}

.credo__intro {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

.credo__ellipsis { display: none; }

.credo__statement {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.credo__sep { display: none; }

.credo__closing {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.credo__closing em {
  font-style: normal;
  color: rgba(255,255,255,0.75);
}

/* ── Human Design Promo card ─────────────────────────────────── */
/* Placeholder: bodygraph.png precisa de fundo escuro */
.hd-promo__img-wrap {
  background-color: var(--color-gray-90);
}

.hd-promo__card-img {
  object-position: center 30%;
}
