/* Design system Holdprint — base compartilhada por todas as campanhas.
   Componentes: .btn-cta .btn-ghost .badge-pill .text-gradient .step-card .feat-card
   .dor-item .form-card .form-field .reveal #exit-popup etc. */

*, *::before, *::after { box-sizing: border-box; }
:root { --teal: #29B393; --navy: #0B1220; --navy2: #111827; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: #29B39355; border-radius: 4px; }
::selection { background: #29B39333; color: #29B393; }

/* Noise overlay */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}

/* Hero mesh */
.hero-mesh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-mesh::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(41,179,147,.12) 0%, transparent 65%);
  animation: drift 8s ease-in-out infinite alternate;
}
.hero-mesh::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(41,179,147,.06) 0%, transparent 65%);
  animation: drift 12s ease-in-out infinite alternate-reverse;
}

.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.text-gradient {
  background: linear-gradient(135deg, #29B393 0%, #5ee8cc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,179,147,.08); border: 1px solid rgba(41,179,147,.2);
  color: #29B393; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; letter-spacing: .08em; text-transform: uppercase;
}

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #29B393; color: #0B1220;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .95rem;
  padding: 14px 28px; border-radius: 12px;
  transition: all .2s; position: relative; overflow: hidden;
}
.btn-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0; transition: opacity .2s;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(41,179,147,.35); }
.btn-cta:hover::after { opacity: 1; }
.btn-cta:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7);
  font-weight: 600; font-size: .95rem; padding: 14px 28px; border-radius: 12px;
  transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(41,179,147,.4); color: #fff; }

/* Floating metric cards */
.metric-float {
  position: absolute; background: rgba(11,18,32,.85);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 12px 16px; white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.metric-float-2 { animation-delay: -2s; animation-duration: 5s; }

/* Marquee */
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee-wrap { overflow: hidden; mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-item {
  display: flex; align-items: center; gap: 10px; padding: 0 40px;
  color: rgba(255,255,255,.35); font-size: .85rem; font-weight: 600; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: #29B393; border-radius: 50%; opacity: .5; }

/* Step cards — Como funciona */
.step-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 32px 28px;
  transition: all .3s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(41,179,147,.0), rgba(41,179,147,.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background .3s; pointer-events: none;
}
.step-card:hover::before {
  background: linear-gradient(135deg, rgba(41,179,147,.35), rgba(41,179,147,.05) 50%, rgba(41,179,147,.2));
}
.step-card:hover { border-color: transparent; transform: translateY(-3px); }
.step-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 700; line-height: 1;
  color: rgba(41,179,147,.12); margin-bottom: 20px; transition: color .3s;
}
.step-card:hover .step-num { color: rgba(41,179,147,.3); }

/* Feature cards — Solução */
.feat-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 24px;
  transition: all .3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: linear-gradient(135deg, rgba(41,179,147,.0), rgba(41,179,147,.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: background .3s; pointer-events: none;
}
.feat-card:hover::before {
  background: linear-gradient(135deg, rgba(41,179,147,.3), rgba(41,179,147,.05) 50%, rgba(41,179,147,.15));
}
.feat-card:hover { border-color: transparent; transform: translateY(-2px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(41,179,147,.1); border: 1px solid rgba(41,179,147,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background .3s;
}
.feat-card:hover .feat-icon { background: rgba(41,179,147,.18); }

/* Dores */
.dor-item {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .3s; position: relative;
}
.dor-item::before {
  content: ''; position: absolute; left: -24px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, #29B393, transparent);
  opacity: 0; transition: opacity .3s;
}
.dor-item:hover::before { opacity: 1; }
.dor-num {
  font-family: 'Montserrat', sans-serif; font-size: 3.8rem; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,.04); transition: color .3s; flex-shrink: 0; user-select: none; min-width: 72px;
}
.dor-item:hover .dor-num { color: rgba(41,179,147,.15); }
.inline-highlight {
  display: inline-block; background: rgba(41,179,147,.08);
  border: 1px solid rgba(41,179,147,.15); color: #29B393;
  padding: 1px 8px; border-radius: 6px; font-size: .85em;
}

/* Trial benefits list */
.trial-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 10px 0;
}
.trial-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(41,179,147,.15); border: 1px solid rgba(41,179,147,.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* Form glassmorphism */
.form-card {
  position: relative; background: rgba(17,24,39,.7);
  backdrop-filter: blur(20px); border-radius: 24px; padding: 40px; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(41,179,147,.4), rgba(41,179,147,.05) 50%, rgba(41,179,147,.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.form-card::after {
  content: ''; position: absolute; top: -120px; right: -80px; z-index: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(41,179,147,.07) 0%, transparent 70%);
  pointer-events: none;
}
.field-wrap { position: relative; margin-bottom: 12px; }
.field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.2); font-size: 14px; pointer-events: none; transition: color .2s;
}
.field-wrap:focus-within .field-icon { color: #29B393; }
.form-field {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); color: #fff; border-radius: 10px;
  padding: 13px 14px 13px 38px; font-family: 'Open Sans', sans-serif;
  font-size: .9rem; transition: all .2s; appearance: none;
}
.form-field::placeholder { color: rgba(255,255,255,.25); }
.form-field:focus {
  outline: none; border-color: rgba(41,179,147,.5);
  background: rgba(41,179,147,.04); box-shadow: 0 0 0 3px rgba(41,179,147,.08);
}
select.form-field option { background: #111827; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Exit popup */
#exit-popup {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
#exit-popup.show { opacity: 1; pointer-events: all; }
#exit-popup .popup-box {
  background: #111827; border: 1px solid rgba(41,179,147,.25);
  border-radius: 24px; padding: 40px 36px; max-width: 440px; width: 100%;
  position: relative;
  animation: popIn .35s ease both;
}
#exit-popup .popup-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.06); border: none; color: rgba(255,255,255,.4);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
#exit-popup .popup-close:hover { background: rgba(255,255,255,.12); color: #fff; }

@media (max-width: 768px) {
  .dor-num { font-size: 3rem !important; min-width: 52px !important; }
  .metric-float { display: none; }
  .form-2col { grid-template-columns: 1fr !important; }
  .solucao-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .feat-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr !important; }
}
