/* ============================================================
   SHE. — Marcações · Porto
   Landing de conversão direta · Preto & branco · Editorial
   ============================================================ */

:root {
  --bg: #f7f6f3;
  --bg-soft: #efede8;
  --dark: #0e0d0c;
  --dark-card: #1a1918;
  --ink: #121110;
  --ink-soft: #45423e;
  --ink-mute: #7c7770;
  --cream: #f6f4f0;
  --cream-soft: rgba(246, 244, 240, 0.68);
  --cream-mute: rgba(246, 244, 240, 0.42);

  --grad-silver: linear-gradient(135deg, #111010 0%, #2e2c2a 18%, #6e6a64 38%,
    #a8a49d 50%, #6e6a64 62%, #2e2c2a 82%, #111010 100%);
  --grad-ink-btn: linear-gradient(135deg, #34302c 0%, #141210 55%, #000000 100%);

  --shadow-md: 0 14px 34px -14px rgba(18, 17, 16, 0.2);
  --shadow-lg: 0 30px 70px -24px rgba(18, 17, 16, 0.32);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-full: 999px;
  --r-btn: 20px 3px 20px 3px;

  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.44, 1);

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --container: min(1120px, 92%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

::selection { background: rgba(18, 17, 16, 0.88); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Keyframes ---------- */
@keyframes silverShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes riseUp {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badgeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes btnShine {
  0% { left: -120%; }
  45%, 100% { left: 140%; }
}
@keyframes btnGlowGreen {
  0%, 100% {
    box-shadow: 0 12px 30px -10px rgba(18, 140, 126, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow: 0 16px 42px -10px rgba(18, 140, 126, 0.55),
      0 0 34px -2px rgba(37, 211, 102, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes checkPop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.noise {
  position: fixed; inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: var(--container); margin-inline: auto; }

.gradient-text {
  background: var(--grad-silver);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: silverShimmer 9s ease-in-out infinite;
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--dark);
  color: var(--cream-soft);
  overflow: hidden;
  padding: 10px 0;
}
.announce__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.announce span {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.announce i { font-style: normal; font-size: 9px; opacity: 0.6; }

/* ---------- Header mínimo ---------- */
.top {
  padding: 18px 0 6px;
}
.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.top__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.lang {
  display: flex;
  gap: 6px;
  border: 1px solid rgba(18, 17, 16, 0.16);
  border-radius: var(--r-full);
  padding: 4px;
  background: rgba(255, 255, 255, 0.55);
}
.lang__btn {
  border: none;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  padding: 6px 9px;
  border-radius: var(--r-full);
  cursor: pointer;
  opacity: 0.45;
  filter: grayscale(0.6);
  transition: opacity 0.3s ease, filter 0.3s ease, background 0.3s ease,
    transform 0.3s var(--ease-bounce);
}
.lang__btn:hover { opacity: 0.85; filter: grayscale(0.2); transform: translateY(-1px); }
.lang__btn.is-active {
  opacity: 1;
  filter: grayscale(0);
  background: var(--ink);
}
.service span i { font-style: normal; }

/* ---------- Hero de conversão ---------- */
.hero {
  position: relative;
  padding: clamp(26px, 4vw, 56px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(18, 17, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 16, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 35% 30%, black 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 70% at 35% 30%, black 30%, transparent 78%);
  pointer-events: none;
}
.hero__watermark {
  position: absolute;
  right: -4vw;
  bottom: -12vw;
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(18, 17, 16, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-soft) 0.15s forwards;
}
.hero__kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: badgeBlink 2.2s ease-in-out infinite;
}

.hero h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(112%);
  animation: riseUp 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.18s; }
.hero h1 em { font-style: italic; font-weight: 500; }

.hero__sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 430px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.5s forwards;
}
.hero__sub strong { font-weight: 650; color: var(--ink); }

.hero__points {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 11px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-soft) 0.7s forwards;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.hero__points strong { color: var(--ink); font-weight: 600; }
.hero__points .tick {
  flex: 0 0 auto;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
}
.hero__points .tick svg { width: 11px; height: 11px; }

/* ---------- Card de marcação (claro) ---------- */
.book {
  position: relative;
  background: #fdfcfa;
  color: var(--ink);
  border: 1px solid rgba(18, 17, 16, 0.09);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: fadeUp 1s var(--ease-soft) 0.35s forwards;
}
.book__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}
.book__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 26px);
}
.book__badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #128c7e;
  border: 1px solid rgba(18, 140, 126, 0.35);
  background: rgba(37, 211, 102, 0.07);
  padding: 7px 13px;
  border-radius: var(--r-full);
  white-space: nowrap;
  animation: badgeBlink 2.6s ease-in-out infinite;
}

.book .field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.book input[type="text"] {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(18, 17, 16, 0.16);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: 14px 17px;
  font-size: 15px;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  appearance: none;
  margin-bottom: 20px;
}
.book input[type="text"]::placeholder { color: rgba(18, 17, 16, 0.32); }
.book input[type="text"]:focus {
  outline: none;
  border-color: #25d366;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

/* Serviços em pills */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.service {
  position: relative;
}
.service input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.service span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 13px 10px;
  border: 1px solid rgba(18, 17, 16, 0.16);
  border-radius: var(--r-sm);
  background: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
    transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
  user-select: none;
  min-height: 48px;
  line-height: 1.3;
}
.service:hover span {
  border-color: rgba(18, 140, 126, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(18, 17, 16, 0.18);
}
.service input:checked + span {
  background: linear-gradient(135deg, #43e97b 0%, #25d366 50%, #17a589 100%);
  color: #ffffff;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 8px 20px -8px rgba(18, 140, 126, 0.55);
  animation: checkPop 0.35s var(--ease-bounce);
}
.service input:focus-visible + span {
  outline: 2px solid #128c7e;
  outline-offset: 2px;
}

.book__error {
  display: none;
  margin: -10px 0 14px;
  font-size: 12.5px;
  color: #b3392f;
}
.book__error.show { display: block; }

/* Botão */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  padding: 19px 30px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  background: linear-gradient(135deg, #43e97b 0%, #25d366 40%, #128c7e 100%);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  animation: btnGlowGreen 3.4s ease-in-out infinite;
  transition: transform 0.45s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 90%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.6s var(--ease) infinite;
  z-index: 1;
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { animation-duration: 1.1s; }
.btn .arrow { transition: transform 0.4s var(--ease); font-size: 15px; letter-spacing: 0; }
.btn:hover .arrow { transform: translateX(5px); }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.7s var(--ease-soft) forwards;
  pointer-events: none;
  z-index: 0;
}

.book__privacy {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.7;
}
.book__safe {
  margin-top: 10px;
  text-align: center;
  font-size: 11.5px;
  color: #128c7e;
  font-weight: 500;
}
.book__safe a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.book__safe a:hover { color: #0d6e63; }

/* ---------- Marquee decorativo ---------- */
.deco-marquee {
  overflow: hidden;
  padding: clamp(12px, 2.2vw, 24px) 0;
  border-top: 1px solid rgba(18, 17, 16, 0.1);
  border-bottom: 1px solid rgba(18, 17, 16, 0.1);
  background: var(--bg-soft);
  position: relative;
}
.deco-marquee::before,
.deco-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.deco-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.deco-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }
.deco-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.deco-marquee span {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 44px);
  color: rgba(18, 17, 16, 0.13);
}
.deco-marquee em { font-style: italic; }
.deco-marquee i { font-style: normal; font-size: 0.5em; color: rgba(18, 17, 16, 0.25); }

/* ---------- Prova / porquê ---------- */
.why {
  padding: clamp(50px, 7vw, 90px) 0;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.why__item {
  text-align: center;
  padding: 8px 10px;
}
.why__item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
}
.why__item h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}
.why__item p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-mute);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 30px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}
.footer__meta {
  font-size: 12px;
  color: rgba(246, 244, 240, 0.4);
  letter-spacing: 0.04em;
}
.footer__links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(246, 244, 240, 0.1);
}
.footer__links a {
  font-size: 11.5px;
  color: rgba(246, 244, 240, 0.55);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  text-underline-offset: 3px;
}
.footer__links a:hover { color: var(--cream); text-decoration: underline; }

/* ---------- Responsividade ---------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: clamp(36px, 9vw, 54px); }
  .hero__points { display: none; }
  .hero__sub { margin-top: 14px; }
  .why__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .why__item { text-align: left; display: grid; grid-template-columns: 34px 1fr; gap: 4px 12px; }
  .why__item h3, .why__item p { grid-column: 2; margin-top: 0; }
  .why__item p { margin-top: 4px; }
}

@media (max-width: 520px) {
  .announce span { font-size: 9px; letter-spacing: 0.22em; }
  .top__logo { font-size: 24px; }
  .top__tag { display: none; }
  .book { padding: 24px 18px; }
  .services { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service span { font-size: 12.5px; padding: 12px 8px; }
  .btn { padding: 18px 24px; font-size: 11px; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1 .line > span { transform: none; }
  .hero__kicker, .hero__sub, .hero__points, .book { opacity: 1; }
}
