/* Vibe Charge — tokens inspired by Datarails marketing UI (Poppins, navy, magenta) */

:root {
  --color-primary-1: #001f37;
  --color-primary-2: #f93576;
  --color-primary-2-deep: #c90345;
  --color-primary-3: #f9ab10;
  --color-green: #5bc899;
  --color-blue: #444bc6;
  --color-light-blue: #f8f9ff;
  --color-cream: #f7f6f0;
  --color-muted: #63676d;
  --color-navy-deep: #0c142b;
  --gradient-dark: linear-gradient(135deg, rgb(15, 13, 45) 0%, rgb(11, 11, 68) 100%);
  --gradient-cta-soft: linear-gradient(180deg, #ffffff 0%, #fbcfd5 100%);
  --gradient-accent: linear-gradient(120deg, var(--color-primary-2) 0%, var(--color-primary-3) 100%);
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;
  --bg-page: var(--color-cream);
  --bg-elevated: #ffffff;
  --border: rgba(0, 31, 55, 0.1);
  --shadow-soft: 0 24px 80px rgba(12, 20, 43, 0.12);
  --pink-dim: rgba(249, 53, 118, 0.12);
  --blue-dim: rgba(68, 75, 198, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--color-primary-1);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.glow {
  position: fixed;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.glow-a {
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, var(--color-primary-2) 0%, transparent 68%);
}

.glow-b {
  bottom: -28%;
  right: -12%;
  background: radial-gradient(circle, var(--color-blue) 0%, transparent 70%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-wrap nav a {
  color: rgba(255, 255, 255, 0.75);
}

.hero-wrap nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 3rem;
  width: auto;
  display: block;
}

.brand span {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--color-primary-1);
  background: rgba(0, 31, 55, 0.06);
}

/* Hero: dark band */
.hero-wrap {
  background: var(--gradient-dark);
  margin: 0 -1.25rem;
  padding: 0 1.25rem 0.5rem;
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 900px) {
  .hero-wrap {
    margin: 0 calc(50% - 50vw);
    padding-left: max(1.25rem, calc(50vw - 36rem));
    padding-right: max(1.25rem, calc(50vw - 36rem));
    border-radius: 0 0 2rem 2rem;
  }
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 0 4rem;
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-copy h1 .grad {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy .lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

.hero-copy .lead strong {
  color: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-2) 0%, var(--color-primary-2-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(249, 53, 118, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 53, 118, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.hero-card {
  width: 100%;
  max-width: min(100%, 560px);
  aspect-ratio: 1024 / 628;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(249, 53, 118, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  padding: 0.65rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 1.1rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.badge {
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  background: var(--color-navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 14rem;
  line-height: 1.4;
}

section {
  padding: 3rem 0;
}

section h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--color-primary-1);
}

.section-intro {
  color: var(--color-muted);
  max-width: 58ch;
  margin: 0 0 2rem;
}

.section-intro a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}

.section-intro a:hover {
  text-decoration: underline;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(12, 20, 43, 0.06);
}

.card:hover {
  border-color: rgba(68, 75, 198, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(12, 20, 43, 0.08);
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary-1);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

ul.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(12, 20, 43, 0.04);
}

.icon-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.icon-dot.g {
  background: var(--pink-dim);
  color: var(--color-primary-2);
}

.icon-dot.b {
  background: var(--blue-dim);
  color: var(--color-blue);
}

ul.benefits strong {
  display: block;
  color: var(--color-primary-1);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

ul.benefits span {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.quote-block {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--color-primary-2);
  background: linear-gradient(90deg, var(--pink-dim), transparent);
  border-radius: 0 1rem 1rem 0;
}

.quote-block.alt {
  border-left-color: var(--color-blue);
  background: linear-gradient(90deg, var(--blue-dim), transparent);
}

.quote-block p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-primary-1);
}

.equipment {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .equipment {
    grid-template-columns: 1.2fr 1fr;
  }
}

.equipment-box {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--color-light-blue);
}

.equipment-box p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.equipment-box a.link-out {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.equipment-box a.link-out:hover {
  text-decoration: underline;
}

.form-section {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: var(--gradient-cta-soft);
  border: 1px solid rgba(249, 53, 118, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--color-primary-1);
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(249, 53, 118, 0.45);
  box-shadow: 0 0 0 3px var(--pink-dim);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.form-section .btn-primary {
  color: #fff;
}

footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--color-blue);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s ease forwards;
}

.reveal:nth-child(1) {
  animation-delay: 0.05s;
}
.reveal:nth-child(2) {
  animation-delay: 0.12s;
}
.reveal:nth-child(3) {
  animation-delay: 0.18s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* obrigado.html */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--gradient-dark);
}

.thanks-card {
  max-width: 28rem;
  text-align: center;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.thanks-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thanks-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.thanks-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-2) 0%, var(--color-primary-2-deep) 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 28px rgba(249, 53, 118, 0.35);
}

.thanks-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 53, 118, 0.42);
}
