@import url('boot.css');
@import url('../plugins/bootstrap/css/bootstrap.min.css');
@import url('../font/font-awesome/css/all.min.css');


 :root {
    --brand: #1a7fc4;
    --brand-dark: #0f5a8e;
    --brand-light: #e8f2fb;
    --accent: #f5b500;
    --ink: #0b1929;
    --ink-2: #3d4f63;
    --ink-3: #7a8a9c;
    --line: #e3e8ef;
    --line-2: #eef2f6;
    --bg: #f7f9fc;
    --white: #ffffff;
    --success: #10b981;
    --success-bg: #ecfdf5;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px rgba(11, 25, 41, 0.04);
    --shadow-md: 0 4px 16px rgba(11, 25, 41, 0.06);
    --shadow-lg: 0 12px 40px rgba(11, 25, 41, 0.08);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    font-size: 15px;
    min-height: 100vh;
    padding: 0 0 40px;
  }

  /* Header */
  .top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    color: var(--brand);
    letter-spacing: -0.02em;
  }
  .logo-pin {
    width: 22px; height: 22px;
    background: var(--brand);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    flex-shrink: 0;
  }
  .logo-pin::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: var(--accent);
    border-radius: 50%;
  }
  .logo span { color: var(--ink); }
  .secure-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .secure-pill svg { width: 14px; height: 14px; color: var(--success); }

  /* Layout */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 20px 0;
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
  }
  @media (max-width: 860px) {
    .grid { grid-template-columns: 1fr; gap: 16px; }
    .summary-col { order: -1; }
  }

  /* Headline */
  .headline {
    margin-bottom: 20px;
  }
  .eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(28px, 5vw, 38px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  h1 em {
    font-style: italic;
    color: var(--brand);
  }
  .subtitle {
    color: var(--ink-2);
    margin-top: 8px;
    font-size: 15px;
  }

  /* Card */
  .card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  .card-body { padding: 24px; }
  @media (max-width: 480px) {
    .card-body { padding: 20px; }
  }

  /* Form */
  .form-section {
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .field-row.single { grid-template-columns: 1fr; }
  @media (max-width: 480px) {
    .field-row { grid-template-columns: 1fr; }
  }

  .field {
    position: relative;
  }
  .field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
  }
  .field label .hint {
    font-weight: 400;
    color: var(--ink-3);
    font-size: 12px;
    margin-left: 4px;
  }
  .field select,
  .field input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
  }
  .field select::placeholder,
  .field input::placeholder {
    color: var(--ink-3);
  }
  .field select:focus,
  .field input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26, 127, 196, 0.12);
  }
  .field-helper {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 5px;
    line-height: 1.4;
  }

  /* Payment method radios */
  .pay-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }
  @media (max-width: 420px) {
    .pay-methods { grid-template-columns: 1fr; }
  }
  .pay-option {
    position: relative;
    cursor: pointer;
  }
  .pay-option input { position: absolute; opacity: 0; pointer-events: none; }
  .pay-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    transition: all 0.15s;
    background: var(--white);
  }
  .pay-option input:checked + .pay-card {
    border-color: var(--brand);
    background: var(--brand-light);
    box-shadow: 0 0 0 3px rgba(26, 127, 196, 0.08);
  }
  .pay-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
  }
  .pay-icon.pix { background: #32BCAD; color: white; font-weight: 700; font-size: 10px; letter-spacing: 0.5px; }
  .pay-icon.card { background: #1a1a2e; color: white; }
  .pay-info { flex: 1; min-width: 0; }
  .pay-name { font-weight: 600; font-size: 14px; color: var(--ink); }
  .pay-desc { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

  .pix-panel .pix-aviso {
    background: var(--success-bg);
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: #065f46;
    line-height: 1.5;
  }
  .pix-panel svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

  /* CTA */
  .cta {
    width: 100%;
    padding: 17px 20px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 11px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 14px rgba(26, 127, 196, 0.25);
    letter-spacing: -0.01em;
  }
  .cta:hover { background: var(--brand-dark); box-shadow: 0 6px 20px rgba(26, 127, 196, 0.35); }
  .cta:active { transform: translateY(1px); }
  .cta svg { width: 18px; height: 18px; }

  .terms {
    font-size: 12px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
  }
  .terms a { color: var(--brand); text-decoration: none; font-weight: 500; }
  .terms a:hover { text-decoration: underline; }

  /* Summary card */
  .summary {
    position: sticky;
    top: 20px;
  }
  @media (max-width: 860px) {
    .summary { position: static; }
  }

  .plan-badge {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
  }
  .plan-badge::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(245, 181, 0, 0.3), transparent 70%);
    border-radius: 50%;
  }
  .plan-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    font-weight: 600;
  }
  .plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: -0.01em;
  }
  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
  }
  .plan-price .currency {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
  }
  .plan-price .value {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .plan-price .period {
    font-size: 13px;
    opacity: 0.85;
    margin-left: 2px;
  }
  .billing-note {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 8px;
    position: relative;
    z-index: 1;
  }

  .summary-body {
    padding: 20px 24px;
  }
  .benefit-list {
    list-style: none;
    margin-bottom: 0;
  }
  .benefit-list li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-2);
    align-items: flex-start;
  }
  .benefit-list li svg {
    width: 16px; height: 16px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .guarantee-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 11px;
    padding: 14px 16px;
    margin: 16px 24px 0;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .guarantee-seal {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--ink);
    font-weight: 800;
    font-size: 10px;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(245, 181, 0, 0.4);
  }
  .guarantee-seal .n { font-size: 16px; }
  .guarantee-text {
    font-size: 13px;
    line-height: 1.4;
  }
  .guarantee-text strong { color: var(--ink); font-weight: 700; }
  .guarantee-text span { color: var(--ink-2); display: block; margin-top: 2px; font-size: 12px; }

  /* Trust row */
  .trust-row {
    padding: 14px 24px 18px;
    border-top: 1px solid var(--line-2);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 500;
  }
  .trust-item svg { width: 14px; height: 14px; color: var(--success); }

  /* Social proof */
  .social-proof {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .avatars {
    display: flex;
  }
  .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    margin-left: -8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px; font-weight: 700;
  }
  .avatar:first-child { margin-left: 0; }
  .avatar:nth-child(2) { background: linear-gradient(135deg, #f59e0b, #d97706); }
  .avatar:nth-child(3) { background: linear-gradient(135deg, #10b981, #059669); }
  .avatar:nth-child(4) { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
  .proof-text {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.4;
  }
  .proof-text strong { color: var(--ink); font-weight: 700; }
  .stars {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 24px 20px 0;
    font-size: 11px;
    color: var(--ink-3);
    max-width: 1080px;
    margin: 0 auto;
  }
  footer a { color: var(--ink-2); text-decoration: none; margin: 0 8px; }
  footer a:hover { color: var(--brand); }

  /* Small helpers */
  .inline-tip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--ink-3);
    cursor: help;
  }
  .inline-tip svg { width: 12px; height: 12px; }