/* =========================================
   cssinscricao.css — IBIJS Inscrição
   Estilos exclusivos da página inscricao.php
   ========================================= */

/* ===== HERO ===== */
.inscricao-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 6rem 0 3rem;
  color: #fff;
  position: relative;
}

.inscricao-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.inscricao-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.inscricao-breadcrumb a:hover {
  opacity: 0.7;
}

.inscricao-breadcrumb .sep {
  opacity: 0.5;
}

.inscricao-breadcrumb .current {
  opacity: 0.6;
}

.inscricao-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.inscricao-hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.inscricao-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* ===== FORM SECTION ===== */
.inscricao-form-section {
  padding: 2.5rem 0 4rem;
}

.inscricao-form-section .container {
  max-width: 700px;
}

.inscricao-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

/* ===== STEPPER ===== */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.stepper-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e2db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.stepper-num {
  font-weight: 700;
  font-size: 0.8rem;
  color: #888;
  transition: color 0.35s ease;
}

.stepper-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.stepper-conn {
  flex: 1;
  height: 2px;
  background: #e5e2db;
  margin: 0 0.75rem;
  margin-bottom: 20px;
  transition: background 0.35s ease;
}

/* Stepper: active */
.stepper-step.active .stepper-circle {
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 127, 149, 0.18);
}

.stepper-step.active .stepper-num {
  color: #fff;
}

.stepper-step.active .stepper-label {
  color: var(--color-primary);
  font-weight: 600;
}

/* Stepper: done */
.stepper-step.done .stepper-circle {
  background: #1e8e3e;
}

.stepper-step.done .stepper-num {
  font-size: 0;
}

.stepper-step.done .stepper-circle::after {
  content: "\2713";
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.stepper-step.done .stepper-label {
  color: #1e8e3e;
}

.stepper-conn.done {
  background: #1e8e3e;
}

/* ===== FORM STEPS ===== */
.form-step {
  animation: fadeStepIn 0.3s ease;
}

@keyframes fadeStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}

.field-group {
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.req {
  color: #dc3545;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 127, 149, 0.12);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.step-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
}

/* ===== BUTTONS ===== */
.btn-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-step-next {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-step-next:hover:not(:disabled) {
  background: #006478;
  transform: translateY(-1px);
}

.btn-step-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-step-back {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid #dee2e6;
}

.btn-step-back:hover {
  background: #f8f9fa;
  color: var(--color-text);
}

.btn-step-submit {
  background: #1e8e3e;
  color: #fff;
}

.btn-step-submit:hover {
  background: #167332;
  transform: translateY(-1px);
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ===== EVENT CARDS ===== */
.eventos-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eventos-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--color-text-muted);
}

.eventos-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.evento-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #fff;
}

.evento-radio-card:hover:not(.disabled) {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 127, 149, 0.1);
}

.evento-radio-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #f8f9fa;
  border-color: #dee2e6;
  pointer-events: none;
}

.evento-radio-card.selected {
  border-color: var(--color-primary);
  background: rgba(0, 127, 149, 0.04);
}

.evento-radio-card.selected .evento-card-check {
  display: flex;
}

.evento-card-check {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--color-primary);
  font-size: 1.3rem;
}

.evento-card-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.evento-card-thumb-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #adb5bd;
}

.evento-card-info {
  flex: 1;
  min-width: 0;
}

.evento-card-info h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text);
}

.evento-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  background: #e3f2fd;
  color: #1976d2;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
}

.evento-card-dates {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 4px;
}

.evento-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.evento-card-badge-paid {
  background: #fff3cd;
  color: #856404;
}

.evento-card-badge-free {
  background: #d4edda;
  color: #155724;
}

/* ===== CPF CONDICIONAL ===== */
.cpf-condicional {
  animation: fadeStepIn 0.3s ease;
}

/* ===== LGPD MICROCOPY ===== */
.field-microcopy {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.4;
}

.lgpd-microcopy i {
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--color-primary);
}

/* ===== DYNAMIC FIELDS ===== */
.dynamic-fields-title {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ===== CONFIRMATION SUMMARY ===== */
.confirm-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.confirm-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.confirm-summary-row:last-child {
  border-bottom: none;
}

.confirm-summary-row .label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}

.confirm-summary-row .value {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

/* ===== PAYMENT ALERT ===== */
.payment-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.payment-alert-icon {
  color: #f9a825;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-alert strong {
  display: block;
  font-size: 0.85rem;
  color: #6d4c00;
  margin-bottom: 2px;
}

.payment-alert p {
  font-size: 0.8rem;
  color: #8d6e00;
  margin: 0;
  line-height: 1.4;
}

/* ===== LGPD BLOCK ===== */
.lgpd-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f0faf4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.lgpd-icon {
  color: #1e8e3e;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lgpd-text {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

/* ===== SKELETON OVERLAY ===== */
.form-skeleton-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
  border-radius: 16px;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-line-lg {
  width: 70%;
}

.skeleton-line-md {
  width: 50%;
}

.skeleton-line-sm {
  width: 30%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-msg {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}

/* ===== SUCCESS STATE ===== */
.success-container {
  animation: fadeStepIn 0.5s ease;
}

.success-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  text-align: center;
}

.success-header {
  padding: 2.5rem 2rem 1.5rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #1e8e3e;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.success-number-badge {
  display: inline-block;
  font-size: 0.9rem;
  color: #555;
  background: #f8f9fa;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  margin-bottom: 0.5rem;
}

.success-number-badge strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.success-message {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.success-payment-section {
  padding: 1.5rem 2rem;
  background: #f8fafb;
  border-top: 1px solid #eef1f3;
  border-bottom: 1px solid #eef1f3;
}

.success-payment-section.d-none {
  display: none !important;
}

.success-actions {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* ===== PIX QR CODE ===== */
.inscricao-pix-stage {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

.inscricao-qr {
  width: 144px;
  height: 144px;
  border: 3px solid #e8e4dc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.inscricao-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.inscricao-pix-info {
  text-align: left;
}

.inscricao-pix-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.inscricao-pix-key {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f6f3;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 10px;
}

.inscricao-pix-key-text {
  font-size: 0.75rem;
  color: var(--color-text);
  word-break: break-all;
  flex: 1;
  font-family: monospace;
}

.inscricao-pix-copy {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.inscricao-pix-copy:hover {
  background: #1eba58;
}

.inscricao-pix-info-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.inscricao-pix-info-line i {
  color: #25d366;
  font-size: 0.85rem;
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
  animation: fadeStepIn 0.4s ease;
}

.whatsapp-cta + .whatsapp-cta {
  margin-top: 1rem;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
  background: #1eba58;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-whatsapp-cta i {
  font-size: 1.2rem;
}

.btn-payment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.3);
}

.btn-payment-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
  color: #fff;
}

.btn-payment-link i {
  font-size: 1.2rem;
}

.whatsapp-cta-note {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.whatsapp-cta-note strong {
  color: #e67e22;
}

/* ===== CALENDAR BUTTON ===== */
.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-calendar:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== BACK LINK ===== */
.success-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.success-back-link:hover {
  color: var(--color-primary);
}

/* ===== OTHER EVENTS ===== */
.other-events-section {
  margin-top: 2rem;
  animation: fadeStepIn 0.5s ease 0.2s both;
}

.other-events-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.other-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.other-event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.other-event-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.other-event-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.other-event-thumb-placeholder {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.other-event-body {
  padding: 0.75rem;
}

.other-event-body h6 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--color-text);
}

.other-event-body small {
  font-size: 0.72rem;
  color: #888;
}

.other-event-body .evento-card-badge {
  display: inline-block;
  margin-top: 6px;
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.floating-actions.hidden {
  transform: translateX(150%);
  opacity: 0;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.floating-btn-whatsapp {
  background: #25d366;
  animation: pulse-wa 2s ease-in-out infinite;
}

.floating-btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  animation: pulse-ig 2.5s ease-in-out infinite;
}

.floating-btn-youtube {
  background: #ff0000;
  animation: pulse-yt 3s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

@keyframes pulse-ig {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(131, 58, 180, 0.6);
  }
}

@keyframes pulse-yt {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 0, 0, 0.6);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #006478;
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== COOKIE CONSENT ===== */
.cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  width: calc(100% - 2rem);
  animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-icon {
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.78rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.cookie-accept-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cookie-accept-btn:hover {
  background: #006478;
}

/* ===== VLIBRAS ===== */
.vw-plugin-top-wrapper {
  z-index: 1060;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .inscricao-hero {
    padding: 5rem 0 2rem;
  }

  .inscricao-hero-title {
    font-size: 1.5rem;
  }

  .inscricao-hero-subtitle {
    font-size: 0.9rem;
  }

  .inscricao-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .stepper {
    padding: 0 0.25rem;
  }

  .stepper-label {
    font-size: 0.65rem;
  }

  .stepper-circle {
    width: 28px;
    height: 28px;
  }

  .stepper-num {
    font-size: 0.7rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .step-nav {
    flex-direction: column-reverse;
  }

  .step-nav .btn-step {
    width: 100%;
  }

  .evento-radio-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .evento-card-check {
    top: 6px;
    right: 6px;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .vw-plugin-top-wrapper {
    bottom: 70px !important;
  }

  .other-events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .success-header {
    padding: 2rem 1.25rem 1.25rem;
  }

  .success-payment-section {
    padding: 1.25rem;
  }

  .success-actions {
    padding: 1.25rem;
  }

  .cookie-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 479px) {
  .benefit-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
  }

  .other-events-grid {
    grid-template-columns: 1fr;
  }

  .btn-whatsapp-cta,
  .btn-payment-link {
    width: 100%;
    justify-content: center;
  }

  .inscricao-pix-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .inscricao-qr {
    margin: 0 auto;
  }

  .inscricao-pix-info {
    text-align: center;
  }

  .inscricao-pix-key {
    flex-direction: column;
  }
}
