:root {
  --primary: #f4acb7;
  --primary-dark: #0b1040;
  --dark: #111111;
  --light-gray: #f9f9f9;
  --border: #e5e5e5;
  --text: #333333;
  --text-muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column; /* Força os elementos a ficarem um embaixo do outro */
  align-items: center; /* Centraliza os elementos horizontalmente */
  justify-content: center;
  gap: 16px; /* Adiciona um espaço de 16px entre a logo e o selo */
  padding: 24px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.logo {
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  display: inherit;
}

.logo span {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 60px 0;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: var(--dark);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge::before {
  content: "✓";
  margin-right: 8px;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--primary);
  text-decoration: underline;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features span::before {
  content: "$";
  color: var(--primary);
}

.hero-features span.time::before {
  content: "🕒";
}
.hero-features span.own::before {
  content: "✓";
}

.hero-subtext {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.success-banner {
  background: #fff5ed;
  border: 1px solid #ffe0cc;
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.success-banner span {
  color: var(--primary-dark);
}

/* Showcase Grid */
.showcase {
  padding: 40px 0;
  overflow: hidden;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--light-gray);
  border-radius: 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder Section */
.founder {
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.founder-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--light-gray);
  overflow: hidden;
}

.founder-content {
  flex: 1;
  min-width: 300px;
}

.founder-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* Features List */
.features-list {
  font-weight: 800;
  padding: 80px;
  background: var(--light-gray);
  border-radius: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.feature-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
}

.trade-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.trade-pill {
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.trade-pill span {
  font-weight: 600;
}
.trade-tag {
  display: none;
}

.trade-pill:hover {
  border-color: var(--primary);
  background: #fff5ed;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}
/* Efeito quando a pílula está SELECIONADA */
.trade-pill input[type="radio"]:checked + span {
  border-color: var(--primary);

  color: var(--primary);
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

summary {
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 15px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  .trade-options {
    grid-template-columns: 1fr;
  }
  .founder {
    text-align: center;
    justify-content: center;
  }
}

/* --- NOVO: Ticker Infinito (Slider de Palavras) --- */
.ticker-wrapper {
  font-family: "Aminute", sans-serif;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.ticker-container {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 20px;
}

.ticker-item::after {
  content: "·";
  margin-left: 20px;
  font-size: 20px;
  color: var(--border);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Efeito de fade nas bordas */
.ticker-wrapper::before,
.ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
/* --- FIM DO TICKER --- */
