:root {
  --green: #6e7f5b;
  --gold: #d8a24a;
  --beige: #f3efea;
  --white: #faf9f7;
  --dark: #1f281f;
  --dark2: #1b221b;
  --dark3: #141a14;
  --dark4: #0e130e;
  --text: var(--white);
  --text-muted: #f3efea;
  --accent: var(--gold);
  --success: #4ADE80;
  --error: #d32f2f;
  --border: rgba(250, 249, 247, 0.18);
  --border-active: rgba(216, 162, 74, 0.7);
  --gold-light: #e6bb5c;
  --gold-dark: #b07b2f;
}

.highlight-gold {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(216, 162, 74, 0.3);
}

/* ============================================================
   REFORMULAÇÃO DE CORES (WEB DESIGN SENIOR)
   Tema: Natureza Elegante (Verde, Dourado, Bege, Branco)
============================================================ */


/* ============================================================
   REFORMULAÇÃO DE CORES (WEB DESIGN SENIOR)
   Tema: Natureza Elegante (Verde, Dourado, Bege, Branco)
============================================================ */

/* Ajuste de Tipografia Global */
body {
  font-family: 'Lato', sans-serif;
  background: var(--dark4);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Gradients - Suavizados para o Verde */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(110, 127, 91, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, var(--dark4) 0%, var(--dark3) 35%, var(--dark2) 70%, var(--dark2) 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(110, 127, 91, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 127, 91, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  box-sizing: border-box;
}

/* Header */
.header {
  text-align: center;
  padding: 3rem 0 2.5rem;
  animation: fadeDown 0.8s ease both;
}

.header-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(216, 162, 74, 0.15), rgba(216, 162, 74, 0.05));
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.header-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Programação */
.programacao {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.prog-card {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.prog-card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.prog-date {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  text-align: center;
  min-width: 68px;
  flex-shrink: 0;
}

.prog-date-day {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.prog-date-month {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark2);
  text-transform: uppercase;
}

.prog-info {
  flex: 1;
}

.prog-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.prog-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.prog-local {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.prog-time {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  text-align: right;
}

/* Badge valor */
.valor-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(216, 162, 74, 0.12), rgba(216, 162, 74, 0.04));
  border: 1px solid var(--border-active);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.valor-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.valor-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* Formulário */
.form-card {
  background: linear-gradient(160deg, var(--dark3) 0%, var(--dark2) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2rem 2.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-title svg {
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-label span {
  color: var(--error);
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 162, 74, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(216, 162, 74, 0.05);
  box-shadow: 0 0 0 3px rgba(216, 162, 74, 0.1);
}

.form-input.error,
.form-select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d8a24a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--dark3);
  color: var(--text);
}

.field-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Checkbox LGPD */
.lgpd-group {
  background: rgba(216, 162, 74, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-top: 1.5rem;
}

/* Checkbox Senior Unified - Robust Hidden Approach */
input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accordion Effect */
.kids-controls {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}

.kids-section.active .kids-controls {
  max-height: 200px;
  /* Adjust as needed */
  opacity: 1;
  pointer-events: auto;
  margin-top: 1rem;
}

input[type="checkbox"]:checked+.checkbox-custom {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 12px rgba(216, 162, 74, 0.4);
}

input[type="checkbox"]:checked+.checkbox-custom::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 10px;
  border: 2px solid var(--dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  display: block;
}

input[type="checkbox"]:checked~.lgpd-text strong {
  color: var(--gold);
}

.lgpd-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lgpd-text strong {
  color: var(--text);
}

/* Botão */
.btn-submit {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  border: none;
  border-radius: 12px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 24px rgba(216, 162, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(216, 162, 74, 0.45);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ============================================================
   TELA DE PAGAMENTO PIX
============================================================ */
.pix-screen {
  display: none;
  animation: fadeUp 0.6s ease both;
}

.pix-screen.active {
  display: block;
}

.form-card.hidden {
  display: none;
}

.pix-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pix-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(216, 162, 74, 0.2), rgba(216, 162, 74, 0.05));
  border: 1px solid var(--border-active);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.pix-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pix-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pix-amount {
  text-align: center;
  margin: 1.5rem 0;
}

.pix-amount-value {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.pix-amount-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.qr-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.qr-container {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  border: 3px solid rgba(216, 162, 74, 0.4);
  box-shadow: 0 0 40px rgba(216, 162, 74, 0.15);
  position: relative;
}

.qr-container canvas,
.qr-container img {
  display: block;
  border-radius: 4px;
}

.pix-copy-section {
  margin: 1.5rem 0;
}

.pix-copy-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pix-copy-box {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.pix-copy-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: text;
  outline: none;
}

.btn-copy {
  background: linear-gradient(135deg, var(--dark4), var(--dark3));
  border: 1px solid var(--border-active);
  border-radius: 10px;
  padding: 0 1rem;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
}

.btn-copy.copied {
  background: var(--success);
  color: var(--dark);
  border-color: var(--success);
}

/* Status pagamento */
.payment-status-bar {
  border-radius: 14px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.5s;
}

.payment-status-bar.waiting {
  background: rgba(216, 162, 74, 0.08);
  border: 1px solid rgba(216, 162, 74, 0.3);
}

.payment-status-bar.paid {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.waiting .status-dot {
  background: var(--accent);
  animation: pulse 1.5s ease infinite;
}

.paid .status-dot {
  background: var(--success);
}


/* ============================================================
   RESPONSIVIDADE COMPLETA — MOBILE FIRST (Senior Level)
============================================================ */

/* Tablet / celulares médios (≤ 600px) */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1rem 4rem;
  }

  .header {
    padding: 2rem 0 1.5rem;
  }

  .header-badge {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.9rem;
  }

  .form-card {
    padding: 1.5rem 1rem 2rem;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .prog-card {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .valor-badge {
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  /* Stepper: esconder labels de steps inativas */
  .step-label {
    display: none;
  }

  .step.active .step-label,
  .step.done .step-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .step-connector {
    width: 20px;
  }

  /* Kids: empilhar meninos e meninas verticalmente em mobile */
  .kids-controls-inner {
    grid-template-columns: 1fr;
  }

  /* Pix: copiar código empilhado */
  .pix-amount-value {
    font-size: 2rem;
  }

  /* Botões de sucesso: empilhar */
  .btn-success-group {
    grid-template-columns: 1fr;
  }
}

/* Celulares muito pequenos (≤ 400px: iPhone SE, Galaxy A12, etc.) */
@media (max-width: 400px) {
  .container {
    padding: 1rem 0.75rem 3rem;
  }

  .header-badge {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .form-card {
    padding: 1.25rem 0.75rem;
  }

  .step-label {
    display: none;
  }

  .step.active .step-label {
    display: block;
    font-size: 0.6rem;
  }

  .step-circle {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .step-connector {
    width: 12px;
  }

  .btn-counter {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .counter-value {
    font-size: 1.5rem;
  }

  .btn-submit {
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
  }

  .pix-copy-box {
    flex-direction: column;
  }

  .btn-copy {
    padding: 0.7rem;
    width: 100%;
  }
}

/* Tela de sucesso */
.success-screen {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  animation: scaleIn 0.5s ease both;
}

.success-screen.active {
  display: block;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.05));
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  animation: bounceIn 0.6s 0.1s ease both;
}

.success-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 0.75rem;
}

.success-message {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.success-name {
  color: var(--gold);
  font-weight: 700;
}

/* Alerta global */
.alert {
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

.alert.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.alert.error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: var(--error);
}

.alert.info {
  background: rgba(216, 162, 74, 0.1);
  border: 1px solid rgba(216, 162, 74, 0.3);
  color: var(--gold);
}

/* Progress steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease both;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.4s;
  border: 2px solid rgba(216, 162, 74, 0.3);
  color: var(--text-muted);
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 16px rgba(216, 162, 74, 0.4);
}

.step.done .step-circle {
  background: rgba(74, 222, 128, 0.15);
  border-color: var(--success);
  color: var(--success);
}

.step-label {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.step.active .step-label {
  color: var(--gold);
}

.step.done .step-label {
  color: var(--success);
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* Animações */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(216, 162, 74, 0.5);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(216, 162, 74, 0);
  }
}

/* Kids Section Senior Accordion */
.kids-section {
  background: rgba(216, 162, 74, 0.06);
  border: 1px solid rgba(216, 162, 74, 0.25);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kids-section.active {
  border-color: var(--gold);
  background: rgba(216, 162, 74, 0.08);
  box-shadow: 0 0 20px rgba(216, 162, 74, 0.1);
}

.kids-controls {
  opacity: 0.5 !important;
  pointer-events: none !important;
  filter: grayscale(0.5) blur(0.5px) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.kids-section.active .kids-controls {
  opacity: 1 !important;
  pointer-events: auto !important;
  filter: none !important;
}

.kids-controls-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.counter-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.counter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-counter {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}

.btn-counter:hover:not(:disabled) {
  background: var(--gold);
  color: var(--dark);
}

.btn-counter:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-value {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  min-width: 20px;
}

/* Success Buttons */
.btn-success-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
}

.btn-whatsapp {
  background: #25D366;
  border: none;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 480px) {
  .btn-success-group {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}
