/* ==========================================================================
   W3PAY.COM.BR & W3 SOLUÇÕES - COMPLETE FINTECH DESIGN SYSTEM & MOTION
   Includes Smart POS Maquininha Showcase, How it Works Steps, Profile Tabs, & Tables
   ========================================================================== */

/* Global Container Constraints */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Base Buttons Design System & Motion */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md, 14px);
  font-family: var(--font-sans, 'DM Sans', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Strict SVG Icon Sizing inside Buttons to prevent distortion */
.btn svg, .btn i {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
  display: inline-block;
}

.btn-lg svg, .btn-lg i {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0;
  display: inline-block;
}

.btn-sm svg, .btn-sm i {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-shrink: 0;
  display: inline-block;
}

span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnimation 0.5s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary-pix {
  background: linear-gradient(135deg, #00d285 0%, #00b370 100%);
  color: #03140c;
  border: 1px solid #00e693;
  box-shadow: 0 4px 14px rgba(0, 210, 133, 0.3);
}

.btn-primary-pix:hover {
  background: linear-gradient(135deg, #00e693 0%, #00c77d 100%);
  box-shadow: 0 6px 20px rgba(0, 210, 133, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid var(--silver-card-border, #e2e8f0);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

/* Light Theme W3Pay Subpage Container */
.w3pay-light-page {
  background: var(--silver-bg-primary, #f8fafc);
  color: var(--silver-text-main, #0f172a);
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* Light Glass Cards */
.light-card {
  background: #ffffff;
  border: 1px solid var(--silver-card-border, #e2e8f0);
  border-radius: var(--radius-lg, 24px);
  padding: 2rem;
  box-shadow: var(--silver-shadow, 0 10px 30px rgba(15, 23, 42, 0.06));
  transition: all 0.3s ease;
}

.light-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--silver-shadow-hover, 0 20px 40px rgba(15, 23, 42, 0.12));
  border-color: var(--silver-card-hover-border, #cbd5e1);
}

/* Smart POS Terminal Hero Image Box */
.pos-showcase-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.pos-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pos-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid #00d285;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 210, 133, 0.2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* "Como Funciona" Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: #00d285;
  box-shadow: 0 12px 30px rgba(0, 210, 133, 0.12);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 210, 133, 0.15), rgba(0, 179, 112, 0.25));
  color: #008f58;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Profile Advantage Cards (Restaurante vs Entregadores) */
.profile-toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.profile-btn {
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #64748b;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Swap / Calculator Widget */
.swap-widget {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.swap-header h3 {
  font-family: var(--font-heading, 'Sora', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.swap-mode-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tab-btn {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #64748b;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: #ffffff;
  color: #00b370;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.input-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.amount-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  outline: none;
}

.currency-select {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  cursor: pointer;
  white-space: nowrap;
}

.swap-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.5rem 0;
  position: relative;
  z-index: 2;
}

.swap-direction-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5.px solid #00d285;
  color: #00b370;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 210, 133, 0.2);
  transition: transform 0.3s ease;
}

.swap-direction-btn:hover {
  transform: rotate(180deg);
}

.quote-details {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-value {
  font-weight: 700;
  font-family: var(--font-mono, monospace);
}

/* Rate Comparison Table */
.comparison-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  margin-top: 2rem;
  overflow-x: auto;
}

.fintech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  text-align: left;
}

.fintech-table th {
  padding: 1.1rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
}

.fintech-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #0f172a;
}

.fintech-table tr:hover td {
  background: rgba(241, 245, 249, 0.5);
}

.check-icon {
  color: #00b370;
  font-weight: 800;
}

.cross-icon {
  color: #ef4444;
  font-weight: 800;
}

/* FAQ Accordion Component */
.faq-container {
  max-width: 860px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: #00d285;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px dashed #e2e8f0;
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-banner {
  background: linear-gradient(135deg, #00d285 0%, #00a866 100%);
  color: #03140c;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  text-align: center;
  margin: 4rem 0 2rem 0;
  box-shadow: 0 20px 40px rgba(0, 210, 133, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: var(--font-heading, sans-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: #03140c;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  opacity: 0.9;
}

/* Modals & Toasts */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 280px;
}

.pix-qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pix-qr-modal.active {
  display: flex;
}

.qr-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .steps-grid, .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE COMPONENTS */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .steps-grid,
  .profile-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .step-card,
  .feature-benefit-card {
    padding: 1.25rem 1.1rem;
  }

  .pos-badge-overlay {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .btn,
  .btn-lg {
    min-height: 44px;
  }
}

/* LANGUAGE SELECTOR SYSTEM */
.w3-language-selector {
  display: inline-flex;
  gap: 0.35rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.25rem 0.35rem;
  border-radius: 24px;
  align-items: center;
  box-sizing: border-box;
}

/* Ajuste do seletor no header silve/dark do portal */
.w3-portal-body .w3-language-selector {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.w3-language-selector .lang-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.2rem 0.3rem;
  border-radius: 6px;
  cursor: pointer;
  filter: grayscale(80%) opacity(60%);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.w3-language-selector .lang-btn .flag-icon {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: block;
}

.w3-language-selector .lang-btn:hover {
  filter: grayscale(0%) opacity(100%);
  background: rgba(15, 23, 42, 0.05);
}

.w3-portal-body .w3-language-selector .lang-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.w3-language-selector .lang-btn.active {
  filter: grayscale(0%) opacity(100%);
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.w3-portal-body .w3-language-selector .lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===== PROPOSAL MODAL ===== */
.proposal-modal {
  overflow: hidden;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.proposal-modal.active {
  animation: proposalModalIn 0.28s ease-out;
}

@keyframes proposalModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.proposal-modal-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.proposal-mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 179, 112, 0.42) 0%, transparent 40%),
    radial-gradient(circle at 90% 18%, rgba(37, 99, 235, 0.34) 0%, transparent 44%),
    radial-gradient(circle at 75% 88%, rgba(8, 145, 178, 0.3) 0%, transparent 42%),
    radial-gradient(circle at 18% 82%, rgba(124, 58, 237, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.08) 0%, transparent 55%);
  background-size: 160% 160%;
  animation: proposalMeshMove 14s ease-in-out infinite alternate;
  filter: saturate(1.15);
}

@keyframes proposalMeshMove {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  100% { transform: translate3d(-6%, 4%, 0) scale(1.12) rotate(2deg); }
}

.proposal-float {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: proposalFloat 6.8s ease-in-out infinite;
}

.proposal-float svg {
  width: 22px;
  height: 22px;
}

.proposal-float-1 { top: 10%; left: 8%; animation-duration: 6.2s; }
.proposal-float-2 { top: 18%; right: 9%; animation-duration: 7.4s; animation-delay: -1.2s; }
.proposal-float-3 { bottom: 16%; left: 11%; animation-duration: 6.9s; animation-delay: -2s; }
.proposal-float-4 { bottom: 12%; right: 12%; animation-duration: 7.8s; animation-delay: -0.6s; }
.proposal-float-5 { top: 46%; left: 4%; animation-duration: 8.6s; animation-delay: -2.8s; opacity: 0.8; }

@keyframes proposalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-18px) rotate(8deg) scale(1.06); }
}

.proposal-card {
  position: relative;
  z-index: 1;
  max-width: 540px !important;
  text-align: left !important;
  padding: 2rem 1.65rem 1.55rem !important;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px !important;
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.28),
    0 2px 0 rgba(255,255,255,0.8) inset !important;
  overflow: hidden;
  animation: proposalCardIn 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes proposalCardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.proposal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 179, 112, 0.14), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.1), transparent 40%);
  pointer-events: none;
}

.proposal-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 68%);
  pointer-events: none;
  animation: proposalSheen 5.5s ease-in-out infinite;
}

@keyframes proposalSheen {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(18%, 12%); opacity: 0.7; }
}

.proposal-card > * {
  position: relative;
  z-index: 1;
}

.proposal-card .close-btn,
.proposal-card .proposal-close-btn {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  left: auto !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(241, 245, 249, 0.98) !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  font-size: 0 !important;
  line-height: 1 !important;
  z-index: 6 !important;
  padding: 0 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.proposal-card .proposal-close-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.4;
}

.proposal-card .close-btn:hover,
.proposal-card .proposal-close-btn:hover {
  background: #fff !important;
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
  transform: rotate(90deg);
}

.proposal-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
  padding-right: 2.75rem; /* espaço reservado ao X */
}

.proposal-card-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(0, 210, 133, 0.2), rgba(0, 179, 112, 0.08));
  border: 1px solid rgba(0, 179, 112, 0.32);
  color: #00b370;
  margin: 0;
  box-shadow: 0 8px 20px rgba(0, 179, 112, 0.12);
}

.proposal-card-badge svg {
  width: 24px;
  height: 24px;
}

.proposal-card-copy {
  min-width: 0;
  padding-top: 0.1rem;
}

.proposal-card-head h3,
.proposal-card-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
}

.proposal-card-head p,
.proposal-card-copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 36ch;
}

.proposal-choice {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proposal-option {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.proposal-option:hover {
  border-color: rgba(0, 179, 112, 0.45);
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.proposal-option:hover .proposal-option-arrow {
  color: #00b370;
  transform: translateX(3px);
}

.proposal-option[href*="wa.me"]:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.14);
}

.proposal-option[href*="wa.me"]:hover .proposal-option-arrow {
  color: #16a34a;
}

.proposal-option-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.proposal-option:hover .proposal-option-icon {
  transform: scale(1.06);
}

.proposal-option-icon svg {
  width: 21px;
  height: 21px;
}

.proposal-option-icon--form {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.06));
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.24);
}

.proposal-option-icon--wa {
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.2), rgba(22, 163, 74, 0.08));
  color: #16a34a;
  border: 1px solid rgba(37, 211, 102, 0.32);
}

.proposal-option-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.proposal-option-body strong {
  font-size: 0.98rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.proposal-option-body small {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

.proposal-option-arrow {
  width: 18px !important;
  height: 18px !important;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.22s ease;
}

.proposal-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: proposalCardIn 0.28s ease-out;
}

.proposal-botcheck {
  display: none !important;
  position: absolute;
  left: -9999px;
}

.proposal-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.proposal-form-row label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.proposal-form-row input,
.proposal-form-row select,
.proposal-form-row textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-size: 0.92rem;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.proposal-form-row input:focus,
.proposal-form-row select:focus,
.proposal-form-row textarea:focus {
  outline: none;
  border-color: rgba(0, 179, 112, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 179, 112, 0.12);
}

.proposal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.proposal-form-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.proposal-form-note {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
}

.proposal-form-note a {
  color: #0284c7;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 640px) {
  .proposal-form-grid {
    grid-template-columns: 1fr;
  }
  .proposal-float-5 {
    display: none;
  }
  .proposal-card {
    padding: 1.5rem 1.15rem 1.25rem !important;
  }
  .proposal-card-head h3 {
    font-size: 1.28rem;
  }
}
/* ===== /PROPOSAL MODAL ===== */
