:root {
  --dourado: #c9a84c;
  --dourado-l: #f0d98a;
  --dourado-d: #8b6820;
  --terracota: #c1603a;
  --terra-d: #8b3e22;
  --vinho: #6b1f3a;
  --vinho-d: #3d0e1f;
  --creme: #faf6f0;
  --offwhite: #f3ede4;
  --dark: #1a0a0f;
}

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

body {
  font-family: "Lato", sans-serif;
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BOTÃO PRINCIPAL ── */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 204, 113, 0.55);
}

/* ── SEPARADOR NAGÔ ── */
.nago {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  margin: 0 auto 28px;
}
.nago::before,
.nago::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}
.nago span {
  color: var(--dourado);
  font-size: 18px;
  letter-spacing: 4px;
}

/* ══════════════════════════════════
   1. HERO
══════════════════════════════════ */
#hero {
  background: linear-gradient(
    135deg,
    var(--vinho-d) 0%,
    var(--vinho) 50%,
    var(--terra-d) 100%
  );
  padding: 56px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201, 168, 76, 0.05) 0,
    rgba(201, 168, 76, 0.05) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid var(--dourado);
  color: var(--dourado-l);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-mockup-wrap {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto 36px;
  padding: 0 0 34px;
  isolation: isolate;
}

.hero-mockup-wrap::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 8px;
  height: 62%;
  border-radius: 0 0 160px 160px;
  background: linear-gradient(
    to top,
    rgba(240, 217, 138, 0.3) 0%,
    rgba(201, 168, 76, 0.2) 18%,
    rgba(193, 96, 58, 0.14) 42%,
    rgba(107, 31, 58, 0.06) 62%,
    rgba(107, 31, 58, 0) 100%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.hero-mockup-wrap::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -2px;
  height: 26px;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 4, 8, 0.46) 0%,
    rgba(10, 4, 8, 0.22) 34%,
    rgba(10, 4, 8, 0) 74%
  );
  filter: blur(9px);
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter:
    drop-shadow(0 26px 38px rgba(12, 3, 7, 0.42))
    drop-shadow(0 10px 18px rgba(240, 217, 138, 0.06));
}

@media (max-width: 640px) {
  .hero-mockup-wrap {
    width: min(100%, 360px);
    padding-bottom: 24px;
    margin-bottom: 30px;
  }

  .hero-mockup-wrap::before {
    left: 4%;
    right: 4%;
    height: 56%;
    filter: blur(22px);
  }

  .hero-mockup-wrap::after {
    left: 12%;
    right: 12%;
    height: 20px;
  }
}

#hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}
#hero h1 em {
  color: var(--dourado-l);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-sub strong {
  color: var(--dourado-l);
}

.hero-price-wrap {
  margin-bottom: 28px;
}
.hero-de {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  text-decoration: line-through;
}
.hero-por {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--dourado-l);
  line-height: 1;
}
.hero-parcel {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}

.hero-garantia {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   2. ESTILOS QUE VOCÊ VAI DOMINAR
══════════════════════════════════ */
.hero-payments {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}



.hero-payments-card {
  width: min(100%, 380px);
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(240, 217, 138, 0.16);
  box-shadow:
    0 16px 28px rgba(12, 3, 7, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.hero-payments-image {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .hero-payments {
    margin-top: 16px;
    gap: 8px;
  }


  .hero-payments-card {
    width: min(100%, 330px);
    padding: 10px 14px;
  }

  .hero-payments-image {
    width: min(100%, 280px);
  }
}

#estilos {
  background: var(--creme);
  padding: 64px 20px;
  text-align: center;
}

#estilos h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--vinho);
  max-width: 680px;
  margin: 0 auto 12px;
  line-height: 1.35;
}
#estilos h2 em {
  color: var(--terracota);
  font-style: italic;
}

#estilos .sub {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.estilos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .estilos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.estilo-card {
  background: var(--offwhite);
  border: 1px solid rgba(107, 31, 58, 0.12);
  border-radius: 6px;
  overflow: hidden;
}
.estilo-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    rgba(107, 31, 58, 0.08),
    rgba(201, 168, 76, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--vinho);
  opacity: 0.6;
  font-size: 0.7rem;
  letter-spacing: 1px;
}
.estilo-img svg {
  opacity: 0.5;
}
.estilo-nome {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vinho);
  text-align: center;
  background: #fff;
}

/* ══════════════════════════════════
   3. DEPOIMENTOS (WhatsApp)
══════════════════════════════════ */
#depoimentos {
  background: var(--vinho-d);
  padding: 64px 20px;
  text-align: center;
}

#depoimentos h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  margin-bottom: 8px;
}
#depoimentos h2 em {
  color: var(--dourado-l);
  font-style: italic;
}
#depoimentos .sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .depo-grid {
    grid-template-columns: 1fr;
  }
}

.depo-slot {
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  aspect-ratio: 9/14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.depo-slot:hover {
  border-color: var(--dourado);
}

.depo-wpp-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* depoimento em texto (fallback) */
.depo-text {
  background: #1e1e1e;
  border-radius: 10px 10px 10px 0;
  padding: 14px 16px;
  text-align: left;
  position: relative;
}
.depo-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #1e1e1e transparent transparent transparent;
}
.depo-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}
.depo-text .nome {
  color: var(--dourado-l);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 10px;
}

.depo-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 500px) {
  .depo-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════
   4. O QUE VOCÊ VAI APRENDER
══════════════════════════════════ */
#aprende {
  background: #fff;
  padding: 64px 20px;
}

.aprende-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 640px) {
  .aprende-wrap {
    grid-template-columns: 1fr;
  }
}

.aprende-img-block {
  background: linear-gradient(135deg, var(--vinho-d), var(--vinho));
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 1px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.aprende-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--vinho);
  margin-bottom: 24px;
  line-height: 1.3;
}
.aprende-copy h2 em {
  color: var(--terracota);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.check-list li .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--vinho);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  margin-top: 1px;
}

/* ══════════════════════════════════
   5. BÔNUS
══════════════════════════════════ */
#bonus {
  background: var(--vinho);
  padding: 64px 20px;
  text-align: center;
}
#bonus h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}
#bonus .sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 44px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.bonus-card:hover {
  border-color: var(--dourado);
}

.bonus-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dourado);
  color: var(--vinho-d);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.bonus-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  margin: 16px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.bonus-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--dourado-l);
  margin-bottom: 10px;
}
.bonus-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.bonus-valor {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: line-through;
}

/* ══════════════════════════════════
   6. OFERTA
══════════════════════════════════ */
#oferta {
  background: var(--offwhite);
  padding: 72px 20px;
  text-align: center;
}

#oferta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--vinho);
  margin-bottom: 8px;
}
#oferta .sub {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 44px;
}

.oferta-box {
  background: #fff;
  border: 2px solid rgba(107, 31, 58, 0.15);
  border-radius: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.oferta-header {
  background: linear-gradient(135deg, var(--vinho-d), var(--vinho));
  padding: 24px 28px 20px;
  text-align: center;
}
.oferta-header .ebook-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--dourado-l);
}
.oferta-header .ebook-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.oferta-body {
  padding: 32px 28px 28px;
}

.oferta-inclui {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.oferta-inclui li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #444;
}
.oferta-inclui li .ck {
  width: 20px;
  height: 20px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

.price-area {
  margin: 28px 0;
}
.price-de {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: line-through;
}
.price-por {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--vinho);
  line-height: 1;
  margin: 6px 0;
}
.price-por sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.price-parcel {
  font-size: 0.88rem;
  color: #777;
}

.vitalicio-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-d));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.btn-cta-full {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.35);
  transition: transform 0.2s;
}
.btn-cta-full:hover {
  transform: translateY(-2px);
}

.oferta-seguro {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #aaa;
}

/* ══════════════════════════════════
   7. GARANTIA
══════════════════════════════════ */
#garantia {
  background: #fff;
  padding: 56px 20px;
}

.garantia-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .garantia-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.garantia-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--dourado);
  background: linear-gradient(135deg, var(--vinho-d), var(--vinho));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
}
.garantia-badge .dias {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--dourado-l);
  line-height: 1;
}
.garantia-badge .label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.garantia-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--vinho);
  margin-bottom: 10px;
}
.garantia-copy p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ══════════════════════════════════
   8. SOBRE A MENTORA
══════════════════════════════════ */
#mentora {
  background: var(--offwhite);
  padding: 64px 20px;
}

.mentora-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .mentora-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.mentora-foto {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--vinho-d), var(--terra-d));
  border-radius: 8px;
  border: 3px solid var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.mentora-copy .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado-d);
  margin-bottom: 8px;
}
.mentora-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vinho);
  margin-bottom: 16px;
}
.mentora-copy p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
}
.mentora-copy p strong {
  color: var(--vinho);
}

/* ══════════════════════════════════
   9. FAQ
══════════════════════════════════ */
#faq {
  background: #fff;
  padding: 64px 20px;
}

#faq h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--vinho);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(107, 31, 58, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: "Lato", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--vinho);
  text-align: left;
  cursor: pointer;
  gap: 12px;
}
.faq-q .arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--vinho);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
  font-style: normal;
}
.faq-item.open .faq-q .arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ══════════════════════════════════
   10. CTA FINAL
══════════════════════════════════ */
#cta-final {
  background: linear-gradient(135deg, var(--vinho-d), var(--vinho));
  padding: 72px 20px;
  text-align: center;
}
#cta-final h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
#cta-final h2 em {
  color: var(--dourado-l);
}
#cta-final p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.cta-capsule {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #0a0408;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
}
footer .brand {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--dourado);
  margin-bottom: 6px;
}
