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

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --premium-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --ultimate-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);

  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --backdrop-blur: blur(10px);

  --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-medium: 0 15px 35px rgba(31, 38, 135, 0.47);
  --shadow-heavy: 0 25px 50px rgba(31, 38, 135, 0.57);

  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 15px;
  background: var(--primary-gradient);
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
  margin: 0;
}

/* Background Pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Reset styles from original style.css */
html,
h1,
p {
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
  outline: 0;
  appearance: none;
}

/* Links */
a {
  color: #06f;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #005ce6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

/* Alternative container for forms */
.form-container {
  display: grid;
  place-items: center;
  height: 100vh;
}

/* Header Styles */
header {
  text-align: center;
  color: var(--text-white);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--shadow-light);
  animation: float 3s ease-in-out infinite;
}

.logo-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.brand-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.02em;
}

header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #f0f4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Form Styles */
form {
  display: grid;
    /* padding: 5px 24px 24px; */
}

.wrapper {
  transition: transform 0.3s cubic-bezier(0.6, 0.4, 0, 1),
    opacity 0.3s cubic-bezier(0.6, 0.4, 0, 1);
  will-change: transform;
  border-radius: 14px;
  background: #fff;
  width: 100%;
}

.title-wrapper {
  text-align: center;
  padding: 24px;
}

.title-wrapper > h1 {
  color: #000;
  line-height: 1.1em;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.title-wrapper > p {
  color: #7d7c83;
  line-height: 1.4em;
  font-size: 16px;
}

/* Input Styles */
.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-icon {
  position: relative;
}

.input {
  border-radius: 10px;
  height: 46px;
  font-size: 15px;
  transition: box-shadow 0.15s ease;
  box-shadow: inset #d8d8da 0 0 0 1px, inset #fff 0 0 0 100px !important;
  border: none;
  width: 100%;
  outline: 0;
  padding: 0 14px;
  padding-left: 52px;
}

.input:hover:not(:disabled) {
  box-shadow: inset #b1b0b5 0 0 0 1px, inset #fff 0 0 0 100px !important;
}

.input:focus:not(:disabled) {
  box-shadow: inset #06f 0 0 0 1px, inset #fff 0 0 0 100px !important;
}

.icon {
  left: 15px;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transition: all 0.15s ease;
  transform: translate3d(0, -50%, 0);
  font-style: normal;
}

/* Button Styles */
.btn {
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border: none;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-primary {
  background: #06f;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  padding: 0 21px;
  height: 46px;
  line-height: 45px;
}

.btn-primary:not(:disabled):not(.is-disabled):hover {
  background: #005ce6;
}

.btn-show-hide {
  position: absolute;
  top: 13%;
  width: auto;
  right: 6px;
  border-radius: 8px;
  font-size: 14px;
  padding: 0 12px;
  height: 34px;
  line-height: 34px;
  color: #000;
  box-shadow: inset rgb(0 0 0 / 15%) 0 0 0 1px;
}

.btn-show-hide:not(:disabled):not(.is-disabled):hover {
  box-shadow: inset rgb(0 0 0 / 30%) 0 0 0 1px;
}

/* Login Method Tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.login-method {
  display: flex;
  justify-content: center;
}

.login-method ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.login-method li {
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

.login-method li:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.login-method-active {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Error Styles */
.error {
  padding: 0 10px 20px;
  color: #ed1245;
}

/* Table Styles */
table {
  border-collapse: collapse;
  margin: 0 auto 20px;
  text-align: left;
  min-width: 300px;
}

td,
th {
  border: 1px solid #e3e3e3;
  padding: 10px;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Plan Cards */
.plan-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(102, 126, 234, 0.4);
}

.plan-card:hover::before {
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
  height: 6px;
}

/* Special Card Styles */
.trial-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
  border-color: rgba(245, 158, 11, 0.3);
}

.trial-card::before {
  background: var(--warning-gradient);
}

.popular {
  border-color: rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  transform: scale(1.05);
}

.popular::before {
  background: var(--primary-gradient);
  height: 6px;
}

.ultimate-card {
  background: linear-gradient(135deg, rgba(255, 154, 158, 0.1), rgba(254, 207, 239, 0.1));
  border-color: rgba(255, 154, 158, 0.3);
  position: relative;
}

.ultimate-card::before {
  background: var(--ultimate-gradient);
}

.ultimate-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--ultimate-gradient);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.7;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0.8;
  }
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.trial-icon {
  background: var(--warning-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.basic-icon {
  background: var(--success-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.premium-icon {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.ultimate-icon {
  background: var(--ultimate-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 154, 158, 0.4);
}

.plan-card:hover .plan-icon {
  transform: scale(1.1) rotate(5deg);
}

.plan-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.plan-price {
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.duration {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Plan Details */
.plan-details {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item span:first-child {
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-item span:first-child i {
  font-size: 1rem;
  color: var(--text-light);
}

.detail-item span:last-child {
  font-weight: 700;
  color: var(--text-primary);
}

/* Plan Features */
.plan-features {
  margin-bottom: 2rem;
}

.plan-features h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-features ul {
  list-style: none;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.plan-features li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Plan Buttons */
.plan-button {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.plan-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.plan-button:hover::before {
  left: 100%;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.trial-btn {
  background: var(--warning-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.trial-btn:hover {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.premium-btn {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.premium-btn:hover {
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.ultimate-btn {
  background: var(--primary-gradient);
  color: white;
  box-shadow: #ef4444;
}

.ultimate-btn:hover {
  box-shadow: 0 12px 35px rgba(255, 154, 158, 0.4);
}

/* Popular Badge */
.popular-badge {
  top: 600px;
  left: 50%;
  background: #25d366;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Member Login Styles */
.member-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.member-form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 400px;
  width: 100%;
}

.member-form-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

/* Client Data Section */
.client-data-section {
  margin-bottom: 3rem;
}

.client-form-wrapper,
.voucher-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
}

.client-form-wrapper h3,
.voucher-form-wrapper h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.client-inputs,
.voucher-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.client-inputs input,
.voucher-inputs input,
.voucher-inputs select,
.voucher-inputs textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.client-inputs input:focus,
.voucher-inputs input:focus,
.voucher-inputs select:focus,
.voucher-inputs textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.voucher-inputs textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 80px;
}

.voucher-container {
  max-width: 800px;
  margin: 0 auto;
}

.voucher-activate-btn {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Form Footer */
.form-footer {
  flex-basis: 100%;
  flex-grow: 1;
  box-shadow: rgb(0 0 0 / 11%) 0 -1px;
  text-align: center;
  line-height: 1.7em;
  padding: 24px;
}

.copy-right {
  color: #7d7c83;
  font-size: 13px;
}

.copy-right a {
  font-weight: normal;
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-white);
  margin-top: 2rem;
}

.footer-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.footer-item i {
  font-size: 1.25rem;
  color: #10b981;
}

/* Payment Modal */
.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}

.payment-overlay.active {
  display: flex;
}

.payment-modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 24px 24px 0 0;
}

.payment-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-title i {
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.payment-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-button:hover {
  background: #f1f5f9;
  color: var(--text-secondary);
}

.payment-content {
  padding: 2rem;
}

.plan-summary {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.plan-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

.total-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pix-section {
  margin-bottom: 2rem;
}

.pix-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pix-header i {
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.pix-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.qr-code-container {
  text-align: center;
  margin-bottom: 2rem;
}

.qr-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  padding: 0;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}

.qr-code-img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f8fafc;
  color: var(--text-secondary);
  font-weight: 600;
  border-radius: 12px;
}

.qr-placeholder i {
  font-size: 3rem;
  color: var(--text-light);
}

.pix-key-section {
  margin-bottom: 1.5rem;
}

.pix-key-section label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.pix-key-container {
  display: flex;
  gap: 0.75rem;
}

#pix-key {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-family: "SF Mono", "Monaco", "Cascadia Code", monospace;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.copy-button {
  padding: 1rem 1.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.payment-status {
  text-align: center;
  margin-bottom: 1.5rem;
}

.payment-status .plan-button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  color: #92400e;
  font-weight: 600;
  border: 1px solid #fbbf24;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #fbbf24;
  border-top: 2px solid #92400e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.payment-actions {
  text-align: center;
}

.cancel-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cancel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Spinner Styles */
.spinner {
  margin: 0;
  text-align: left;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #9e9e9e;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Animation utilities */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (min-width: 576px) {
  .wrapper {
    width: 468px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .brand-text h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.75rem;
  }

  header p {
    font-size: 1.1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .popular {
    transform: none;
  }

  .login-method ul {
    border-radius: 25px;
  }

  .login-method li {
    padding: 10px 16px;
    font-size: 14px;
  }

  .member-form-card {
    padding: 2rem;

  }

  .client-form-wrapper,
  .voucher-form-wrapper {
    padding: 1.5rem;
    
  }

  .client-inputs,
  .voucher-inputs {
    grid-template-columns: 1fr;
  }

  .payment-modal {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }

  .payment-content {
    padding: 1.5rem;
  }

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

  .qr-placeholder {
    width: 150px;
    height: 150px;
  }

  .footer-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .logo-container {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .plan-card {
    padding: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .total-price {
    font-size: 2rem;
  }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form textarea.input {
    min-height: 100px;
    padding-top: 14px;
    resize: vertical;
}

.contact-form .input-icon .icon {
    align-items: flex-start;
    top: 18px;
}

/* Contact Modal Styles */
.contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* Valor alto para ficar acima de tudo */
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 2rem;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.plan-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.plan-summary p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* Valor alto para ficar acima de tudo */
  padding: 1rem;
}

.contact-overlay.active {
  display: flex;
}

.contact-modal {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 2001; /* Acima do overlay */
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
}