    :root {
      --primary: #373737;
      --secondary: #ff8800;
      --secondary-hover: #e67a00;
      --accent: #ff8800;
      --background: #ffffff;
      --surface: #f2f2f2;
      --white: #ffffff;
      --text: #373737;
      --muted: #595959;
      --border: #e2e8f0;
      --success: #059669;
      --shadow-premium: 0 40px 100px -20px rgba(55,55,55,0.22), 0 20px 40px -15px rgba(55,55,55,0.14), 0 0 80px -10px rgba(255,136,0,0.10);
    }

    * { box-sizing: border-box; }

    html { scrollbar-gutter: stable; }

    body {
      margin: 0;
      font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
      background: var(--background);
      color: var(--text);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Anek Latin", sans-serif;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, #111827 0%, #1e2a38 45%, #243447 80%, #2d3f52 100%);
      color: var(--white);
      padding: 0 20px 120px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 136, 0, 0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 140px;
      background: linear-gradient(to bottom, transparent, rgba(17, 24, 39, 0.7));
      pointer-events: none;
      z-index: 0;
    }

    .hero-arcs {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }

    .hero-arcs svg {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .hero-wrapper {
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-nav {
      display: flex;
      align-items: center;
      padding: 22px 40px;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .logo img {
      height: 48px;
      width: auto;
      display: block;
    }

    .hero-content {
      max-width: 760px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 42px;
      margin: 0 0 18px;
      font-weight: 700;
      color: #fff;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--secondary);
    }

    .hero p {
      font-size: 17px;
      max-width: 620px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.60);
      font-weight: 400;
    }

    /* ── LAYOUT ── */
    .container {
      max-width: 1120px;
      margin: -52px auto 80px;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    @keyframes card-enter {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .card {
      background: var(--white);
      border-radius: 28px;
      box-shadow: var(--shadow-premium);
      overflow: hidden;
      border: 1px solid rgba(226, 232, 240, 0.9);
      border-top: 3px solid var(--secondary);
      animation: card-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* ── INTRO ── */
    .intro {
      padding: 44px 44px 36px;
      border-bottom: 1px solid var(--border);
    }

    .intro h2 {
      color: var(--primary);
      margin: 0 0 10px;
      font-size: 22px;
      font-weight: 700;
    }

    .intro > p {
      color: var(--muted);
      margin-bottom: 8px;
      font-size: 15px;
      max-width: 680px;
    }

    .benefits {
      display: flex;
      margin-top: 28px;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      background: var(--surface);
    }

    .benefit {
      flex: 1;
      padding: 24px 28px;
      border-right: 1px solid var(--border);
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    .benefit:last-child { border-right: none; }

    .benefit-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--secondary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: "Inter", sans-serif;
      margin-bottom: 10px;
    }

    .benefit strong {
      display: block;
      color: var(--primary);
      margin-bottom: 6px;
      font-size: 14.5px;
      font-family: "Anek Latin", sans-serif;
      font-weight: 700;
    }

    /* ── FORM ── */
    form {
      padding: 36px 44px;
    }

    .mobile-progress { display: none; }

    /* Step progress */
    .form-steps {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 32px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 18px;
    }

    .form-step {
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 50%;
      transition: transform 0.15s;
    }

    .form-step:hover { transform: scale(1.12); }

    .form-step .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--border);
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .form-step.active .step-num {
      background: var(--secondary);
      color: #fff;
      box-shadow: 0 0 0 4px rgba(255, 136, 0, 0.18);
    }

    .form-step.done .step-num {
      background: var(--success);
      color: transparent;
      box-shadow: none;
      position: relative;
      font-size: 0;
    }

    .form-step.done .step-num::after {
      content: "\2713";
      font-size: 12px;
      color: #fff;
      position: absolute;
    }

    .form-step-divider {
      flex: 1;
      height: 2px;
      background: var(--border);
      min-width: 16px;
      transition: background 0.3s;
    }

    .form-step-divider.done {
      background: var(--success);
    }

    fieldset {
      border: none;
      border-left: 3px solid var(--border);
      border-radius: 0 12px 12px 0;
      padding: 28px 28px 32px 32px;
      margin-bottom: 28px;
      background: #fff;
      transition: border-color 0.2s;
    }

    fieldset:focus-within {
      border-left-color: var(--secondary);
    }

    legend {
      padding: 5px 14px 5px 8px;
      color: var(--primary);
      font-weight: 700;
      font-size: 11.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-family: "Inter", sans-serif;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    legend::before {
      content: attr(data-step);
      width: 22px;
      height: 22px;
      background: var(--secondary);
      color: #fff;
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .form-grid--spaced,
    .form-group--spaced {
      margin-top: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group.filled input,
    .form-group.filled textarea,
    .form-group.filled .cs-trigger {
      border-color: var(--success);
      background: #f6fef9;
    }

    .form-group.filled > label::after {
      content: " \2713";
      color: var(--success);
      font-size: 11px;
      font-weight: 700;
    }

    .form-group.has-valid input,
    .form-group.has-valid textarea,
    .form-group.has-valid .cs-trigger {
      border-color: var(--success) !important;
      background: #f6fef9 !important;
    }

    .form-group.has-error input,
    .form-group.has-error textarea,
    .form-group.has-error .cs-trigger {
      border-color: #dc2626 !important;
      background: #fff5f5 !important;
    }

    .form-group.has-error > label { color: #dc2626; }

    label {
      font-weight: 600;
      font-size: 13.5px;
      color: var(--primary);
      letter-spacing: -0.01em;
    }

    .why-detail {
      margin: -2px 0 2px;
    }

    .why-detail summary {
      font-size: 11.5px;
      color: var(--secondary);
      cursor: pointer;
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      user-select: none;
      font-family: "Inter", sans-serif;
    }

    .why-detail summary::-webkit-details-marker { display: none; }

    .why-detail summary::before {
      content: "?";
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255, 136, 0, 0.10);
      border: 1px solid rgba(255, 136, 0, 0.25);
      font-size: 9px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      flex-shrink: 0;
      line-height: 1;
    }

    .why-detail[open] > summary::before {
      content: "\2715";
      font-size: 11px;
    }

    .why-content {
      margin: 8px 0 4px;
      padding: 10px 14px;
      background: rgba(255, 136, 0, 0.04);
      border-left: 2px solid rgba(255, 136, 0, 0.25);
      border-radius: 0 8px 8px 0;
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.65;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 10px 13px;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      font-size: 15px;
      font-family: inherit;
      background: #fff;
      color: var(--text);
      transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    }

    input:hover,
    select:hover,
    textarea:hover {
      border-color: #cbd5e1;
    }

    select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.12);
      background: #fff9f0;
    }

    .checkbox-group,
    .radio-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      margin-top: 10px;
    }

    .check-option {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      background: var(--surface);
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
      color: var(--muted);
      line-height: 1.4;
    }

    .check-option:hover {
      border-color: rgba(255, 136, 0, 0.50);
      background: rgba(255, 136, 0, 0.04);
      color: var(--primary);
    }

    .check-option input {
      width: auto;
      margin-top: 2px;
      accent-color: var(--secondary);
      flex-shrink: 0;
    }

    .check-option:has(input:checked) {
      background: rgba(255, 136, 0, 0.08);
      border-color: var(--secondary);
      color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.08);
    }

    .help-text {
      color: var(--muted);
      font-size: 13px;
      margin: 0 0 4px;
    }

    .privacy-box {
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 18px 22px;
      margin-bottom: 24px;
    }

    .privacy-box label {
      display: flex;
      gap: 12px;
      font-weight: 400;
      align-items: flex-start;
      font-size: 14px;
      color: var(--muted);
      cursor: pointer;
    }

    .privacy-box input {
      width: auto;
      margin-top: 3px;
      accent-color: var(--secondary);
      flex-shrink: 0;
    }

    .submit-area {
      text-align: center;
      padding-top: 8px;
    }

    .submit-button {
      background: linear-gradient(135deg, #ff8800 0%, #e67a00 100%);
      color: var(--white);
      border: none;
      padding: 16px 36px 16px 44px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      font-family: "Anek Latin", sans-serif;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      letter-spacing: -0.01em;
      box-shadow: 0 8px 28px rgba(255, 136, 0, 0.28);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .submit-button .btn-arrow {
      width: 20px;
      height: 20px;
      background: rgba(255,255,255,0.20);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.25s, background 0.2s;
    }

    .submit-button .btn-arrow svg {
      width: 11px;
      height: 11px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.25s;
    }

    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 44px rgba(255, 136, 0, 0.40);
      background: linear-gradient(135deg, #ff9500 0%, #ff8800 100%);
    }

    .submit-button:hover .btn-arrow {
      transform: translateX(3px);
      background: rgba(255,255,255,0.30);
    }

    .submit-button:active {
      transform: translateY(0);
      box-shadow: 0 6px 20px rgba(255, 136, 0, 0.25);
    }

    /* ── CARD FOOTER ── */
    .card-footer {
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    .card-footer-trust {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
    }

    .trust-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 18px 12px;
      border-right: 1px solid var(--border);
      text-align: center;
    }

    .trust-item:last-child { border-right: none; }

    .trust-item svg {
      width: 18px;
      height: 18px;
      stroke: var(--secondary);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .trust-item-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      font-family: "Anek Latin", sans-serif;
    }

    .trust-item-sub {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.3;
    }

    .card-footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 28px;
      gap: 16px;
    }

    .card-footer-brand img {
      height: 32px;
      width: auto;
      opacity: 0.4;
      filter: grayscale(1);
    }

    .card-footer-copy {
      font-size: 11.5px;
      color: var(--muted);
      opacity: 0.6;
      text-align: center;
      line-height: 1.5;
    }

    .card-footer-copy strong {
      display: block;
      font-weight: 600;
      color: var(--primary);
      opacity: 0.5;
      font-size: 12px;
    }

    .card-footer-links {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11.5px;
    }

    .card-footer-links a {
      color: var(--muted);
      text-decoration: none;
      padding: 2px 6px;
      border-radius: 4px;
      transition: color 0.15s, background 0.15s;
    }

    .card-footer-links a:hover { color: var(--primary); background: var(--border); }

    .card-footer-links span {
      color: var(--border);
      font-size: 13px;
    }

    .required { color: #cc6600; }

    .footer-note {
      text-align: center;
      color: var(--muted);
      font-size: 13px;
      margin-top: 20px;
    }

    .error-message {
      display: none;
      margin-top: 16px;
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #dc2626;
      padding: 14px 18px;
      border-radius: 12px;
      font-weight: 600;
      text-align: center;
      font-size: 14px;
    }

    /* ── THANK YOU ── */
    #thankYouScreen {
      display: none;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      animation: ty-fadein 0.5s ease both;
    }

    @keyframes ty-fadein {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Confetti dots */
    .ty-confetti {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ty-confetti span {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      opacity: 0;
      animation: ty-confetti-fall 3.5s ease-in forwards;
    }

    .ty-confetti span:nth-child(1) { background: #ff8800; left: 10%;  top: -10px; animation-delay: 0.1s; width: 10px; height: 10px; border-radius: 2px; }
    .ty-confetti span:nth-child(2) { background: #ffb347; left: 25%;  top: -10px; animation-delay: 0.3s; }
    .ty-confetti span:nth-child(3) { background: #ff8800; left: 40%;  top: -10px; animation-delay: 0.15s; width: 6px; height: 6px; }
    .ty-confetti span:nth-child(4) { background: #e2e8f0; left: 55%;  top: -10px; animation-delay: 0.5s; border-radius: 2px; }
    .ty-confetti span:nth-child(5) { background: #ff8800; left: 68%;  top: -10px; animation-delay: 0.2s; width: 12px; height: 5px; border-radius: 2px; }
    .ty-confetti span:nth-child(6) { background: #ffb347; left: 78%;  top: -10px; animation-delay: 0.4s; width: 6px; height: 6px; }
    .ty-confetti span:nth-child(7) { background: #059669; left: 88%;  top: -10px; animation-delay: 0.25s; width: 7px; height: 7px; border-radius: 2px; }
    .ty-confetti span:nth-child(8) { background: #e2e8f0; left: 92%;  top: -10px; animation-delay: 0.6s; width: 5px; height: 5px; }

    @keyframes ty-confetti-fall {
      0%   { opacity: 1; transform: translateY(0)    rotate(0deg); }
      100% { opacity: 0; transform: translateY(220px) rotate(540deg); }
    }

    /* Body */
    .ty-body {
      padding: 52px 56px 56px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* Icon */
    .ty-icon-wrap {
      position: relative;
      width: 88px;
      height: 88px;
      margin: 0 auto 32px;
    }

    .ty-icon-ring {
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: rgba(255,136,0,0.10);
      animation: ty-ring-pulse 2s ease-in-out infinite;
    }

    @keyframes ty-ring-pulse {
      0%, 100% { transform: scale(1);    opacity: 1; }
      50%       { transform: scale(1.12); opacity: 0.5; }
    }

    .ty-icon {
      position: relative;
      width: 88px;
      height: 88px;
      background: linear-gradient(135deg, #ff8800, #e67a00);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 16px 40px rgba(255,136,0,0.30);
      animation: ty-icon-pop 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
    }

    @keyframes ty-icon-pop {
      from { transform: scale(0.3); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }

    .ty-icon svg {
      width: 46px;
      height: 46px;
    }

    .ty-check {
      stroke-dasharray: 40;
      stroke-dashoffset: 40;
      animation: ty-check-draw 0.4s ease 0.45s forwards;
    }

    @keyframes ty-check-draw {
      to { stroke-dashoffset: 0; }
    }

    /* Badge empresa */
    .ty-badge {
      display: inline-block;
      background: rgba(255,136,0,0.08);
      border: 1.5px solid rgba(255,136,0,0.22);
      color: var(--secondary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      margin: 0 0 20px;
      min-height: 0;
    }

    .ty-badge:empty { display: none; }

    /* Text */
    .ty-title {
      color: var(--primary);
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 14px;
      line-height: 1.15;
    }

    .ty-text {
      color: var(--muted);
      font-size: 15px;
      max-width: 480px;
      margin: 0 auto 44px;
      line-height: 1.7;
    }

    /* Timeline vertical */
    .ty-timeline {
      max-width: 400px;
      margin: 0 auto 44px;
      text-align: left;
    }

    .ty-tl-item {
      display: grid;
      grid-template-columns: 32px 1fr;
      grid-template-rows: auto 1fr;
      gap: 0 16px;
    }

    .ty-tl-dot {
      grid-row: 1;
      grid-column: 1;
      width: 32px;
      height: 32px;
      background: white;
      border: 2px solid rgba(255,136,0,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .ty-tl-line {
      grid-row: 2;
      grid-column: 1;
      width: 2px;
      background: linear-gradient(to bottom, rgba(255,136,0,0.25), rgba(255,136,0,0.06));
      margin: 2px auto 0;
      min-height: 28px;
    }

    .ty-tl-content {
      grid-row: 1 / 3;
      grid-column: 2;
      padding-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      justify-content: center;
    }

    .ty-tl-item--last .ty-tl-content {
      padding-bottom: 0;
    }

    .ty-tl-content strong {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.3;
    }

    .ty-tl-content span {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.45;
    }

    /* CTAs */
    .ty-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .ty-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      font-family: "Inter", sans-serif;
    }

    .ty-cta:hover { transform: translateY(-2px); }

    .ty-cta--primary {
      background: var(--secondary);
      color: #fff;
      box-shadow: 0 6px 20px rgba(255,136,0,0.28);
    }

    .ty-cta--primary:hover { box-shadow: 0 10px 28px rgba(255,136,0,0.38); }

    .ty-cta--secondary {
      background: var(--surface);
      color: var(--primary);
      border: 1.5px solid var(--border);
    }

    .ty-cta--secondary:hover { background: var(--border); }

    @media (max-width: 560px) {
      .ty-body { padding: 40px 24px 44px; }
      .ty-title { font-size: 26px; }
      .ty-actions { flex-direction: column; align-items: center; }
    }

    /* ── CUSTOM SELECT ── */
    .cs-wrapper {
      position: relative;
      width: 100%;
    }

    .cs-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 11px;
      font-size: 15px;
      font-family: inherit;
      background: #fff;
      color: var(--muted);
      cursor: pointer;
      transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
      user-select: none;
    }

    .cs-trigger:hover { border-color: #cbd5e1; }

    .cs-wrapper.open .cs-trigger {
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(255,136,0,0.12);
      background: #fff9f0;
    }

    .cs-wrapper.has-value .cs-trigger { color: var(--text); }

    .cs-text {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .cs-chevron {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      stroke: var(--muted);
      transition: transform 0.2s, stroke 0.15s;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cs-wrapper.open .cs-chevron { transform: rotate(180deg); stroke: var(--secondary); }

    .cs-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
      z-index: 300;
      opacity: 0;
      transform: translateY(-6px) scale(0.98);
      transform-origin: top center;
      pointer-events: none;
      transition: opacity 0.16s, transform 0.16s;
      max-height: 260px;
      overflow-y: auto;
      list-style: none;
      margin: 0;
      padding: 6px;
    }

    .cs-dropdown::-webkit-scrollbar { width: 4px; }
    .cs-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

    .cs-wrapper.open .cs-dropdown {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .cs-option {
      padding: 10px 12px;
      border-radius: 9px;
      font-size: 14.5px;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.12s, color 0.12s;
    }

    .cs-option:hover { background: rgba(255,136,0,0.07); color: var(--primary); }

    .cs-option.selected {
      background: rgba(255,136,0,0.10);
      color: var(--primary);
      font-weight: 600;
    }

    /* ── VALIDATION ── */
    .form-group.has-error input,
    .form-group.has-error .cs-trigger {
      border-color: #ef4444 !important;
      box-shadow: 0 0 0 3px rgba(239,68,68,0.10) !important;
    }

    /* ── SCORE WIDGET ── */

    /* ── BUILDING SCREEN ── */
    #buildingScreen {
      display: none;
      padding: 80px 44px;
      text-align: center;
    }

    .building-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(255,136,0,0.15), rgba(255,136,0,0.05));
      border: 2px solid rgba(255,136,0,0.25);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 28px;
    }

    .building-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
      margin: 0 0 8px;
      font-family: "Anek Latin", sans-serif;
      letter-spacing: -0.02em;
    }

    .building-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin: 0 0 40px;
    }

    .building-items {
      max-width: 380px;
      margin: 0 auto;
      text-align: left;
    }

    .building-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--muted);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.35s, transform 0.35s, color 0.3s;
    }

    .building-item:last-child { border-bottom: none; }

    .building-item.active,
    .building-item.done {
      opacity: 1;
      transform: translateX(0);
    }

    .building-item.done { color: var(--primary); }

    .building-item-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      transition: background 0.3s;
    }

    .building-item.active .building-item-dot {
      background: rgba(255,136,0,0.18);
      animation: pulse-dot 0.9s ease-in-out infinite;
    }

    .building-item.done .building-item-dot {
      background: var(--success);
      color: #fff;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 800px) {
      .hero { padding-bottom: 80px; }
      .hero h1 { font-size: 28px; }
      .hero p { font-size: 15px; }
      .hero-nav { margin-bottom: 36px; }

      .container { margin-top: 16px; }
      .card { border-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; }

      .intro,
      form { padding: 24px 20px; }

      .form-grid,
      .checkbox-group,
      .radio-group { grid-template-columns: 1fr; }

      .benefits { flex-direction: column; }
      .benefit { border-right: none; border-bottom: 1px solid var(--border); }
      .benefit:last-child { border-bottom: none; }

      fieldset {
        padding: 20px 16px 20px 20px;
        border-radius: 0 8px 8px 0;
      }

      .form-steps { display: none; }
      .mobile-progress { display: flex; }

      .mobile-progress {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      }

      .mobile-progress-bar {
        flex: 1;
        height: 4px;
        background: var(--border);
        border-radius: 2px;
        overflow: hidden;
      }

      .mobile-progress-fill {
        height: 100%;
        background: var(--secondary);
        border-radius: 2px;
        transition: width 0.3s ease;
        width: 12.5%;
      }

      .card-footer-trust { flex-wrap: wrap; }
      .trust-item { min-width: 50%; border-bottom: 1px solid var(--border); }
      .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
      .trust-item:nth-child(even) { border-right: none; }
      .trust-item:nth-last-child(-n+2) { border-bottom: none; }
      .card-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px; }
      .card-footer-links { flex-wrap: wrap; gap: 2px; font-size: 11px; }
      .score-widget { bottom: 16px; right: 16px; width: 138px; padding: 14px 16px; }
    }

    /* ── TOOLTIPS ── */
    .tip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--muted);
      font-size: 9px;
      font-weight: 700;
      font-style: normal;
      font-family: "Inter", sans-serif;
      line-height: 1;
      cursor: help;
      position: relative;
      margin-left: 5px;
      vertical-align: middle;
      flex-shrink: 0;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
      user-select: none;
    }
    .tip:hover, .tip.open {
      border-color: var(--secondary);
      color: var(--secondary);
      background: rgba(255, 136, 0, 0.06);
    }
    .tip-text {
      display: none;
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--white);
      color: var(--text);
      font-size: 12.5px;
      font-weight: 400;
      line-height: 1.6;
      padding: 12px 16px;
      border-radius: 12px;
      width: 280px;
      text-align: left;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border);
      z-index: 200;
      pointer-events: none;
      white-space: normal;
    }
    .tip-text::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: var(--white);
      filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
    }
    .tip:hover .tip-text,
    .tip.open .tip-text { display: block; }

    /* SCALE */
    .form-grid .form-group.has-scale{grid-column:1/-1}
    .scale-wrap{margin-top:6px}
    .scale-group{display:flex;flex-wrap:wrap;gap:6px}
    .scale-opt{flex:1;display:flex;align-items:center;justify-content:center;gap:7px;padding:10px 8px;height:52px;min-width:0;border:1.5px solid var(--border);border-radius:10px;font-size:12px;color:var(--muted);font-weight:500;text-align:center;background:var(--surface);cursor:pointer;overflow:hidden;transition:border-color .15s,background .15s,color .15s;user-select:none}
    .scale-opt::before{content:'';width:13px;height:13px;border:2px solid var(--border);border-radius:3px;flex-shrink:0;transition:background .15s,border-color .15s}
    .scale-opt:hover{border-color:var(--secondary);color:var(--primary);background:rgba(255,136,0,.04)}
    .scale-opt:hover::before{border-color:var(--secondary)}
    .scale-opt.selected{background:var(--secondary);border-color:var(--secondary);color:#fff;font-weight:600}
    .scale-opt.selected::before{content:'\2713';background:rgba(255,255,255,.95);border-color:rgba(255,255,255,.95);color:var(--secondary);font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center}
    .scale-bar{height:3px;background:linear-gradient(to right,#ef4444,#ff8800,#059669);border-radius:2px;margin:6px 0 3px}
    .scale-labels{display:flex;justify-content:space-between;font-size:11px;color:var(--muted);font-weight:500}
    /* VALIDATION */
    .field-hint{font-size:12px;color:#dc2626;margin-top:4px;display:none}
    .form-group.has-error .field-hint,.form-group.has-valid .field-hint{display:block}
    .form-group.has-valid .field-hint{color:var(--success)}
    .form-group.has-error input,.form-group.has-error select,.form-group.has-error textarea{border-color:#ef4444!important;box-shadow:0 0 0 3px rgba(239,68,68,.10)!important}
    .form-group.has-valid input{border-color:var(--success)!important;box-shadow:0 0 0 3px rgba(5,150,105,.10)!important;background-color:#f0fdf4!important;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E")!important;background-repeat:no-repeat!important;background-position:right 12px center!important;padding-right:38px!important}
    .form-group.has-valid select,.form-group.has-valid textarea{border-color:var(--success)!important;box-shadow:0 0 0 3px rgba(5,150,105,.10)!important;background-color:#f0fdf4!important}
    /* STEP DONE */
    .form-step.done .step-num{background:var(--secondary)!important;color:#fff!important;box-shadow:0 0 0 3px rgba(255,136,0,.22)!important;position:relative}
    .form-step.done .step-num::after{content:'\2713';font-size:11px;color:#fff;position:absolute}
    .form-step-divider.done{background:var(--secondary)!important}
    /* SAVE BTN */
    .section-footer{display:flex;justify-content:center;margin:20px 0 0}
    .btn-save-section{display:inline-flex;align-items:center;gap:8px;padding:10px 22px;background:var(--secondary);color:#fff;border:none;border-radius:999px;font-size:14px;font-weight:600;cursor:pointer;transition:opacity .2s,transform .15s,background .2s;font-family:inherit}
    .btn-save-section:hover{opacity:.88;transform:translateY(-1px)}
    .btn-save-section.saved{background:#059669!important;cursor:default;opacity:.9;}
    .btn-save-section.saved:hover{opacity:.9;transform:none;}
    fieldset.saved .btn-save-section:not(.saved){opacity:.45;cursor:default;pointer-events:none;background:var(--secondary)}
    .save-err{color:#ef4444;font-size:12px;margin-top:6px;display:block}

    /* ── SIDE PANELS ── */
    /* ── FONDOS LATERALES ── */
    .side-bg {
      position: fixed;
      top: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      min-width: 40px;
    }
    .side-bg--left  { left: 0; right: calc(50% + 540px); }
    .side-bg--right { right: 0; left: calc(50% + 540px); }
    .side-bg::before {
      content: '';
      position: absolute;
      inset: -24px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: blur(10px);
    }
    .side-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(17, 24, 39, 0.45);
    }
    /* webp: soporte universal (Safari 14+, Chrome, Firefox) */
    .side-bg--left::before  { background-image: url('../../img/fondoslaterales/oficinas.webp'); }
    .side-bg--right::before { background-image: url('../../img/fondoslaterales/trasta.jpg'); }
    @media (max-width: 1200px) { .side-bg { display: none; } }

    /* -- LOCKED SECTION -- */
    fieldset.locked {
      opacity: 0.4;
      pointer-events: none;
      user-select: none;
      position: relative;
    }
    fieldset.locked::after { content: none; }


    /* ── RESPONSIVE MÓVIL ── */
    @media (max-width: 800px) {
      .hero-nav { padding: 16px 20px; margin-bottom: 24px; }

      .submit-button { width: 100%; justify-content: center; }

      .scale-group { gap: 5px; }
      .scale-opt {
        min-width: calc(50% - 3px);
        flex: none;
        height: 44px;
        font-size: 11.5px;
        padding: 8px 6px;
      }

      .tip-text { width: 220px; }

      .privacy-box { padding: 16px; }

    }

    @media (max-width: 480px) {
      .hero { padding-bottom: 60px; }
      .hero h1 { font-size: 22px; }
      .hero p { font-size: 14px; }
      .hero-nav { padding: 14px 16px; }

      .intro, form { padding: 18px 16px; }

      fieldset { padding: 16px 12px 16px 16px; }

      legend { font-size: 10.5px; padding: 4px 10px 4px 6px; }

      .scale-opt {
        min-width: calc(50% - 3px);
        height: 42px;
        font-size: 11px;
      }
      .scale-opt::before { display: none; }

      .check-option { font-size: 13.5px; padding: 10px 12px; }

      .btn-save-section { width: 100%; justify-content: center; }

      .submit-button { font-size: 15px; padding: 14px 20px; }

      .ty-ctas { flex-direction: column; }
      .ty-cta { justify-content: center; }

      .tip-text {
        width: 180px;
        left: auto;
        right: 0;
        transform: none;
      }
      .tip-text::after {
        left: auto;
        right: 10px;
        transform: none;
      }
    }
