@import url("./fonts.css");

:root {
  --surface: #ffffff;
  --surface-soft: #eef5f6;
  --paper: #ffffff;
  --ink: #17292b;
  --muted: #5d6d6f;
  --gold: #2c9ba3;
  --gold-dark: #1c7c83;
  --gold-soft: #d7eef0;
  --line: #dceaeb;
  --green: #159b45;
  --green-dark: #0f7d37;
  --button-shadow: #0c6b2f;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 70px rgba(23, 89, 94, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Lato, "Nunito Sans", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fafb 52%, #eef5f6 100%);
}

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

a {
  color: inherit;
}

/* Lenis (scroll suave - desktop) */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid rgba(44, 155, 163, 0.16);
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.site-header .brand-logo {
  width: clamp(112px, 28vw, 148px);
}

.brand-paris {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-dark);
  font-size: clamp(0.5rem, 1.7vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1;
  text-indent: 0.42em;
  text-transform: uppercase;
}

.brand-paris::before,
.brand-paris::after {
  content: "";
  width: clamp(16px, 6vw, 28px);
  height: 1px;
  background: rgba(44, 155, 163, 0.55);
}

.page-shell {
  width: 100%;
  max-width: 100vw;
  min-height: 100dvh;
  padding: 66px 0 0;
  background: var(--paper);
}

.vip-card {
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 116px, rgba(44, 155, 163, 0.14), transparent 220px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 58%, var(--surface) 100%);
  box-shadow: none;
  overflow-x: clip;
}

.vip-card * {
  min-width: 0;
}

.hero-header {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 28px) 24px 0;
  text-align: center;
}

.brand-logo {
  width: clamp(150px, 38vw, 222px);
  height: auto;
}

.offer-label,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: clamp(0.72rem, 2.35vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 28px;
}

.crown-icon {
  width: clamp(15px, 4.4vw, 19px);
  height: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-width: 100vw;
  margin: 0 auto;
  padding: 10px clamp(22px, 6vw, 54px) 4px;
  text-align: center;
}

.eyebrow {
  display: block;
  width: min(100%, 330px);
  margin-right: auto;
  margin-left: auto;
  color: var(--gold-dark);
  font-size: clamp(0.73rem, 2.45vw, 0.86rem);
  letter-spacing: 0.115em;
}

.eyebrow span {
  display: block;
}

.hero-copy h1 {
  width: 100%;
  max-width: min(100%, 620px);
  margin: 8px auto 0;
  font-family: var(--display);
  font-size: clamp(2.12rem, 6.9vw, 4.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
  white-space: nowrap;
}

.headline-divider {
  display: none;
  width: 56px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--gold);
  border-radius: 2px;
}

.subtitle {
  width: 100%;
  max-width: min(100%, 540px);
  margin: 12px auto 0;
  color: rgba(93, 109, 111, 0.85);
  font-size: clamp(0.78rem, 2.25vw, 0.92rem);
  line-height: 1.34;
  overflow-wrap: break-word;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.subtitle strong {
  color: rgba(23, 41, 43, 0.9);
  font-weight: 900;
}

.hero-photo {
  width: 100%;
  max-width: 640px;
  margin: 4px auto 0;
  padding: 0;
}

.hero-photo-first {
  margin: 0 auto;
}

.hero-photo-first + .hero-header {
  padding-top: clamp(14px, 3.4vw, 22px);
}

.hero-original-image {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.conversion-area {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  padding: 0 clamp(22px, 5.5vw, 48px);
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
}

.post-photo {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 540px;
  margin: 24px auto 0;
  padding: 0 clamp(22px, 5.5vw, 48px);
  text-align: center;
}

.post-photo .subtitle {
  margin: 0 auto;
}

.fashion-gold-badge {
  display: flex;
  justify-content: center;
  margin: 4px auto 0;
}

.fashion-gold-badge img {
  width: clamp(96px, 22vw, 130px);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(23, 89, 94, 0.12);
}

.urgency-alert {
  max-width: 100%;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(44, 155, 163, 0.5);
  border-radius: var(--radius-md);
  background: rgba(215, 238, 240, 0.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(23, 89, 94, 0.1);
  color: #10585d;
  font-size: clamp(0.84rem, 2.8vw, 0.96rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.whatsapp-button {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 60px;
  border: none;
  border-radius: 10px;
  background: #159b45;
  color: #fff;
  box-shadow: 0 5px 0 #0b6b2e;
  font-size: clamp(0.94rem, 3.4vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  touch-action: manipulation;
  overflow: hidden;
  animation: whatsapp-click 1.8s ease-in-out infinite;
  transition: box-shadow 120ms ease, filter 120ms ease;
  will-change: transform;
  position: relative;
}

.cta-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 58px;
  background: rgba(0, 0, 0, 0.16);
}

.cta-text {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 14px;
  overflow-wrap: anywhere;
  text-align: center;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  animation-play-state: paused;
  filter: brightness(1.05);
}

.whatsapp-button:active {
  animation-play-state: paused;
  box-shadow: 0 1px 0 #0b6b2e;
  transform: translateY(4px);
}

.whatsapp-button.is-waiting-link {
  animation: cta-nudge 280ms ease-out;
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(7, 143, 37, 0.35);
  outline-offset: 3px;
}

.whatsapp-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(7, 94, 37, 0.4), 0 2px 6px rgba(0, 0, 0, 0.22);
  touch-action: manipulation;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  pointer-events: none;
  animation: whatsapp-shine 3.6s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  animation-play-state: paused;
  transform: scale(1.06);
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.whatsapp-float:focus-visible {
  outline: 4px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  filter: invert(1);
}

.benefits {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  width: calc(100vw - 28px);
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding: 34px clamp(18px, 4.5vw, 48px) 0;
}

.benefits-header {
  display: grid;
  gap: 4px;
  text-align: center;
  margin: 0 auto 2px;
  max-width: 520px;
}

.benefits-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  color: var(--gold-dark);
  font-size: clamp(0.62rem, 1.6vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-kicker::before,
.benefits-kicker::after {
  content: "";
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.benefits-kicker::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.benefits-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 3.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 12px 18px;
  border: 1px solid rgba(44, 155, 163, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 248, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(23, 89, 94, 0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  animation: benefit-in 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:nth-child(1) { animation-delay: 60ms; }
.benefit-card:nth-child(2) { animation-delay: 140ms; }
.benefit-card:nth-child(3) { animation-delay: 220ms; }
.benefit-card:nth-child(4) { animation-delay: 300ms; }
.benefit-card:nth-child(5) { animation-delay: 380ms; }
.benefit-card:nth-child(6) { animation-delay: 460ms; }

.benefit-card:hover,
.benefit-card:active {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(44, 155, 163, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(23, 89, 94, 0.12);
}

.benefit-card-star {
  border-color: rgba(44, 155, 163, 0.4);
  background:
    linear-gradient(180deg, rgba(235, 248, 249, 0.98), rgba(215, 238, 240, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(23, 89, 94, 0.13);
}

.benefit-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2c9ba3, var(--gold-dark));
  box-shadow: 0 4px 10px rgba(23, 89, 94, 0.28);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.benefit-icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(155deg, #eaf6f7, #cfeced);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(23, 89, 94, 0.14);
}

.benefit-card h3 {
  margin: 0;
  color: #17292b;
  font-size: clamp(0.68rem, 1.7vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.6rem, 1.4vw, 0.7rem);
  font-weight: 700;
  line-height: 1.22;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.benefits-cta {
  margin-top: 4px;
  min-height: 56px;
  font-size: clamp(0.86rem, 3vw, 1rem);
}

@keyframes benefit-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 26px 22px 96px;
  color: var(--muted);
  text-align: center;
}

.footer-link {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: rgba(28, 124, 131, 0.85);
  font-size: clamp(0.66rem, 2.1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(28, 124, 131, 0.85);
  font-size: clamp(0.66rem, 2.1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.developer-credit {
  grid-column: 1 / -1;
  color: rgba(28, 124, 131, 0.55);
  font-size: clamp(0.58rem, 1.8vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: none;
}

.developer-credit:hover,
.developer-credit:focus-visible {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-footer span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 155, 163, 0.6));
}

.page-footer span:last-child {
  background: linear-gradient(90deg, rgba(44, 155, 163, 0.6), transparent);
}

.page-footer p {
  max-width: 100%;
  margin: 0;
  font-size: clamp(0.66rem, 2.1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

@media (min-width: 760px) {
  .page-shell {
    padding: 70px 0 0;
  }

  .vip-card {
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }
}

/* Tablet / desktop: titulo fluido na horizontal, sem coluna */
@media (min-width: 521px) {
  .hero-copy {
    max-width: 680px;
  }

  .hero-copy h1 {
    max-width: 680px;
    margin-top: 8px;
    font-size: clamp(2rem, 4.1vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-copy h1 em {
    white-space: nowrap;
  }

  .conversion-area {
    max-width: 480px;
  }

  .whatsapp-button .cta-text {
    white-space: nowrap;
  }

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

  .benefits-cta {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-copy h1 {
    max-width: calc(100vw - 34px);
    font-size: clamp(1.62rem, 6.4vw, 2rem);
    line-height: 1.08;
  }

  .hero-copy h1 em {
    white-space: normal;
  }

  .subtitle {
    max-width: 380px;
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .conversion-area {
    padding-right: 20px;
    padding-left: 20px;
  }

  .urgency-alert {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.92rem;
  }

  .benefits {
    gap: 14px;
    width: calc(100vw - 20px);
    padding-right: 10px;
    padding-left: 10px;
  }

  .benefit-grid {
    gap: 9px;
  }

  .benefit-card {
    padding: 18px 8px 14px;
    border-radius: 14px;
  }

  .benefit-card h3 {
    font-size: 0.52rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .benefit-card p {
    font-size: 0.46rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .benefit-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
  }

  .benefit-tag {
    font-size: 0.42rem;
    padding: 2px 7px;
    top: -8px;
  }

  .whatsapp-button {
    min-height: 56px;
    font-size: 0.86rem;
  }

  .cta-icon {
    width: 48px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .cta-text {
    padding: 6px 10px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 span:nth-child(2),
  .hero-copy h1 em {
    white-space: normal;
  }

  .whatsapp-button {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .benefit-card {
    padding-right: 6px;
    padding-left: 6px;
  }

  .benefit-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .benefit-icon {
    width: 22px;
    height: 22px;
  }

  .cta-icon {
    width: 44px;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 430px) and (max-width: 520px) {
  .hero-copy h1 span:nth-child(2),
  .hero-copy h1 em {
    white-space: nowrap;
  }
}

@keyframes cta-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-3px);
  }

  70% {
    transform: translateX(3px);
  }
}

@keyframes whatsapp-click {
  0%,
  55%,
  100% {
    transform: translateY(0);
    box-shadow: 0 5px 0 #0b6b2e;
  }

  75% {
    transform: translateY(4px);
    box-shadow: 0 1px 0 #0b6b2e;
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes whatsapp-shine {
  0% {
    transform: translateX(-180%) skewX(-18deg);
  }

  60%,
  100% {
    transform: translateX(320%) skewX(-18deg);
  }
}

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