:root {
  /* Paleta (mulheres 25–50): elegante e quente */
  --primary: #B65D78;
  /* dusty rose */
  --deep: #3B1E2A;
  /* vinho profundo */
  --bg: #F6EFEA;
  /* creme quente */

  --text-main: #2f2527;
  --text-soft: #6f6064;
  --pure-white: #ffffff;

  --whatsapp-green: #25D366;
  --shadow: 0 10px 30px rgba(59, 30, 42, 0.12);
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(182, 93, 120, 0.10) 1px, transparent 1px);
  background-size: 20px 20px;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  padding: 58px 16px 110px;
}

.urgency-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--deep) 0%, #2a131c 100%);
  color: #fff;
  padding: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.05em;
}

.urgency-top-fixed i {
  color: var(--primary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.container {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: var(--pure-white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  padding: 28px 22px 26px;
  position: relative;
  border: 1px solid rgba(182, 93, 120, 0.22);
}

.logo-container {
  width: 115px;
  height: 115px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 3px solid rgba(182, 93, 120, 0.55);
  box-shadow: 0 10px 22px rgba(59, 30, 42, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-main);
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 10px;
  font-weight: 700;
}

.highlight {
  color: var(--deep);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(182, 93, 120, 0.22);
  z-index: -1;
  border-radius: 4px;
}

.subtitle {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 14px;
  font-weight: 400;
  padding: 0 2px;
}

.cta-box {
  margin: 8px 0 6px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.40);
  transition: transform 0.2s, background 0.2s;
  width: 100%;
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #20bd5a;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  20%,
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.social-proof-text {
  font-size: 12px;
  color: var(--deep);
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 800;
}

.progress-card {
  background: rgba(246, 239, 234, 0.70);
  border: 1px solid rgba(182, 93, 120, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 18px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--text-main);
  font-size: 14px;
}

.percent-text {
  color: var(--deep);
}

.progress-track {
  width: 100%;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(59, 30, 42, 0.10);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--deep) 0%, var(--primary) 100%);
  border-radius: 20px;
  transition: width 0.8s ease-out;
}

.spots-left {
  text-align: right;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 700;
}

.spots-left span {
  color: var(--text-main);
  font-weight: 900;
}

.section-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.benefits-section {
  text-align: left;
  margin-bottom: 18px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  background: #fff;
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-left: 3px solid var(--primary);
}

.benefit-icon {
  font-size: 18px;
  margin-right: 12px;
  color: var(--deep);
  min-width: 25px;
  text-align: center;
  margin-top: 2px;
}

.benefit-text h3 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 3px;
  color: var(--text-main);
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}

.benefit-text p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  color: #9e8a8a;
  border-top: 1px solid rgba(182, 93, 120, 0.25);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer a.doc-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 800;
}

a.zecaads-credit {
  background: var(--deep);
  color: #fff !important;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(59, 30, 42, 0.22);
  transition: transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}

a.zecaads-credit:hover {
  transform: scale(1.05);
}

a.zecaads-credit i {
  color: var(--primary);
  font-size: 10px;
}

a.zecaads-credit strong {
  font-weight: 900;
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  z-index: 1000;
  max-width: 360px;
  width: calc(100% - 32px);
  border: 1px solid rgba(182, 93, 120, 0.35);
}

.toast.show {
  animation: slideUp 0.35s ease forwards, slideDown 0.35s ease 2.55s forwards;
}

@keyframes slideUp {
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  to {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
  }
}

.toast-icon {
  width: 38px;
  height: 38px;
  background: var(--deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 30, 42, 0.22);
}

.toast-text {
  font-size: 13px;
  color: #444;
  line-height: 1.3;
  font-weight: 700;
}

.toast-text strong {
  color: var(--deep);
  font-weight: 900;
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(182, 93, 120, 0.22);
  border-top: 3px solid var(--whatsapp-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 14px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 420px;
    margin: 24px auto;
  }

  h1 {
    font-size: 26px;
  }
}