/* ============================================================
   IMPACTOS POSITIVOS — style.css
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap");

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
   box-sizing: border-box;
}

html,
body {
   margin: 0;
   padding: 0;
   font-family: "Nunito", sans-serif;
   font-size: 16px;
   line-height: 1.6;
   background-color: #f2f2f2;
   color: #1a1a1a;
}

/* ---------- CSS Variables ---------- */
:root {
   --nav-bg: #000000;
   --nav-height: 72px;
   --nav-font-size: 0.95rem;
   --nav-font-weight: 600;
   --nav-text: #ffffff;
   --nav-text-hover: #ffffff;

   /* Underline hover colors (from design) */
   --hover-eventos: #e63329; /* red    */
   --hover-ph1: #f5a623; /* yellow/orange */
   --hover-ph2: #27ae60; /* green  */
   --hover-login: #3b82f6; /* blue   */

   --underline-height: 2px;
   --underline-offset: 4px;
   --transition-speed: 0.25s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
   background-color: var(--nav-bg);
   height: var(--nav-height);
   width: 100%;
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Inner wrapper — uses CSS Grid for left | center | right layout */
.navbar-inner {
   display: grid;
   grid-template-columns: 1fr auto 1fr;
   align-items: center;
   height: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* ---------- Nav groups ---------- */
.nav-group {
   display: flex;
   align-items: center;
   gap: 2.5rem;
   list-style: none;
   margin: 0;
   padding: 0;
}

.nav-group--left {
   justify-content: flex-start;
}
.nav-group--right {
   justify-content: flex-end;
}

/* ---------- Logo (center) ---------- */
.navbar-logo-link {
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
}

.navbar-logo-link img {
   height: 46px;
   width: auto;
   display: block;
}

/* ---------- Nav links ---------- */
.nav-group li a {
   position: relative;
   display: inline-block;
   font-family: "Nunito", sans-serif;
   font-size: var(--nav-font-size);
   font-weight: var(--nav-font-weight);
   color: var(--nav-text);
   text-decoration: none;
   padding-bottom: var(--underline-offset);
   transition: color var(--transition-speed) ease;
}

/* Pseudo-element underline — hidden by default */
.nav-group li a::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: var(--underline-height);
   border-radius: 2px;
   transition: width var(--transition-speed) ease;
}

/* Show underline on hover */
.nav-group li a:hover::after {
   width: 100%;
}

/* Per-link underline colors */
.nav-item--eventos a::after {
   background-color: var(--hover-eventos);
}
.nav-item--ph1 a::after {
   background-color: var(--hover-ph1);
}
.nav-item--ph2 a::after {
   background-color: var(--hover-ph2);
}
.nav-item--login a::after {
   background-color: var(--hover-login);
}

/* Slight opacity lift on hover */
.nav-group li a:hover {
   color: var(--nav-text-hover);
   opacity: 0.9;
}

/* ============================================================
   BODY PLACEHOLDER
   ============================================================ */
.page-body {
   min-height: calc(100vh - var(--nav-height));
   background-color: #d9d9d9;
}

/* ============================================================
   RESPONSIVE — Mobile hamburger
   ============================================================ */
/* Mobile nav hidden by default on ALL screen sizes */
.navbar-mobile-nav {
   display: none;
}

.navbar-toggle-btn {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0.25rem 0.5rem;
   flex-direction: column;
   gap: 5px;
}

.navbar-toggle-btn span {
   display: block;
   width: 24px;
   height: 2px;
   background: #fff;
   border-radius: 2px;
   transition: all 0.3s ease;
}

@media (max-width: 992px) {
   .navbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.25rem;
   }

   /* Hide desktop nav groups on mobile — only logo + hamburger remain */
   .nav-group--left,
   .nav-group--right {
      display: none;
   }

   .navbar-toggle-btn {
      display: flex;
      order: 3;
   }

   .navbar-logo-link {
      order: 2;
      flex: 1;
      justify-content: center;
   }

   .navbar-logo-link img {
      height: 38px;
   }

   /* Mobile nav overlay */
   .navbar-mobile-nav {
      position: absolute;
      top: var(--nav-height);
      left: 0;
      width: 100%;
      background-color: var(--nav-bg);
      padding: 1rem 1.5rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 999;
   }

   .navbar-mobile-nav.open {
      display: block;
   }

   .nav-group {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
   }

   .nav-group li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
   }

   .nav-group li a {
      display: block;
      padding: 0.75rem 0;
      font-size: 1rem;
   }

   /* Keep color underline visible as left border on mobile */
   .nav-group li a::after {
      display: none;
   }

   .nav-item--eventos a:hover {
      color: var(--hover-eventos);
   }
   .nav-item--ph1 a:hover {
      color: var(--hover-ph1);
   }
   .nav-item--ph2 a:hover {
      color: var(--hover-ph2);
   }
   .nav-item--login a:hover {
      color: var(--hover-login);
   }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
   background-color: #000;
   color: #fff;
   padding: 3.5rem 2rem 0;
}

.footer-inner {
   max-width: 1280px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 3rem;
   padding-bottom: 3rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link img {
   filter: brightness(0) invert(1);
   height: 36px;
   display: block;
   margin-bottom: 1rem;
}

.footer-tagline {
   font-size: 0.875rem;
   color: rgba(255, 255, 255, 0.45);
   line-height: 1.6;
   margin: 0;
   max-width: 260px;
}

.footer-heading {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.35);
   margin: 0 0 1rem;
}

.footer-links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
}

.footer-links a {
   font-size: 0.875rem;
   color: rgba(255, 255, 255, 0.65);
   text-decoration: none;
   transition: color 0.22s ease;
   position: relative;
   display: inline-block;
}

.footer-links a::after {
   content: "";
   position: absolute;
   bottom: -1px;
   left: 0;
   width: 0;
   height: 1px;
   background: #fff;
   transition: width 0.22s ease;
}

.footer-links a:hover {
   color: #fff;
}
.footer-links a:hover::after {
   width: 100%;
}

.footer-bottom {
   max-width: 1280px;
   margin: 0 auto;
   padding: 1.25rem 0;
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
   .footer-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
}

/* ============================================================
   AUTH — SHARED
   ============================================================ */
.auth-main {
   min-height: calc(100vh - var(--nav-height));
   background-color: #fff;
   display: flex;
}

.auth-header {
   margin-bottom: 2rem;
}

.auth-title {
   font-size: 1.75rem;
   font-weight: 800;
   color: #000;
   letter-spacing: -0.02em;
   margin: 0 0 0.4rem;
   line-height: 1.2;
}

.auth-subtitle {
   font-size: 0.9rem;
   color: #888;
   margin: 0;
}

/* ── Fields ── */
.field-group {
   margin-bottom: 1.5rem;
}

.field-label {
   display: block;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: #000;
   margin-bottom: 0.45rem;
}

.req {
   color: #000;
}

.field-wrap {
   position: relative;
}

.field-input {
   width: 100%;
   background: transparent;
   border: none;
   border-bottom: 1.5px solid #ccc;
   outline: none;
   font-family: "Nunito", sans-serif;
   font-size: 0.95rem;
   color: #000;
   padding: 0.55rem 0;
   transition: border-color 0.22s ease;
   border-radius: 0;
   appearance: none;
   -webkit-appearance: none;
}

.field-input::placeholder {
   color: #bbb;
}

.field-input:focus {
   border-bottom-color: #000;
}

.field-line {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1.5px;
   background: #000;
   transition: width 0.3s ease;
   pointer-events: none;
}

.field-input:focus ~ .field-line {
   width: 100%;
}

/* Select */
.field-wrap--select::after {
   content: "";
   position: absolute;
   right: 0.25rem;
   top: 50%;
   transform: translateY(-50%);
   width: 0;
   height: 0;
   border-left: 4px solid transparent;
   border-right: 4px solid transparent;
   border-top: 5px solid #888;
   pointer-events: none;
}

.field-select {
   cursor: pointer;
   padding-right: 1.5rem;
}

.field-select option {
   color: #000;
}

/* Password eye toggle */
.field-wrap--password .field-input {
   padding-right: 2rem;
}

.field-eye {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   cursor: pointer;
   padding: 0;
   color: #bbb;
   display: flex;
   align-items: center;
   transition: color 0.2s;
}

.field-eye:hover {
   color: #000;
}
.field-eye svg {
   width: 18px;
   height: 18px;
}

/* Forgot */
.field-forgot {
   text-align: right;
   margin-top: 0.4rem;
}

/* Password strength */
.password-strength {
   display: flex;
   align-items: center;
   gap: 0.6rem;
   margin-top: 0.5rem;
}

.strength-bar {
   flex: 1;
   height: 2px;
   background: #eee;
   border-radius: 2px;
   overflow: hidden;
}

.strength-fill {
   height: 100%;
   width: 0;
   border-radius: 2px;
   transition:
      width 0.3s ease,
      background 0.3s ease;
}

.strength-label {
   font-size: 0.7rem;
   font-weight: 600;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: #aaa;
   width: 60px;
   text-align: right;
   transition: color 0.3s;
}

/* Checkboxes */
.field-group--checks {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin-top: 0.5rem;
}

.check-item {
   display: flex;
   align-items: flex-start;
   gap: 0.65rem;
   cursor: pointer;
}

.check-input {
   display: none;
}

.check-custom {
   width: 16px;
   height: 16px;
   min-width: 16px;
   border: 1.5px solid #ccc;
   border-radius: 4px;
   margin-top: 2px;
   transition:
      border-color 0.2s,
      background 0.2s;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
}

.check-input:checked + .check-custom {
   background: #000;
   border-color: #000;
}

.check-input:checked + .check-custom::after {
   content: "";
   position: absolute;
   width: 8px;
   height: 5px;
   border-left: 1.5px solid #fff;
   border-bottom: 1.5px solid #fff;
   transform: rotate(-45deg) translate(0px, -1px);
}

.check-label {
   font-size: 0.875rem;
   color: #444;
   line-height: 1.5;
}

/* Buttons */
.btn-primary-auth {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: #000;
   color: #fff;
   font-family: "Nunito", sans-serif;
   font-size: 0.875rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   border: 1.5px solid #000;
   padding: 0.8rem 1.75rem;
   cursor: pointer;
   text-decoration: none;
   transition:
      background 0.22s ease,
      color 0.22s ease,
      transform 0.18s ease;
   border-radius: 6px;
}

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

.btn-primary-auth .btn-arrow,
.btn-primary-auth svg {
   width: 16px;
   height: 16px;
   transition: transform 0.22s ease;
}

.btn-primary-auth:hover svg {
   transform: translateX(3px);
}

.btn-ghost-auth {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: transparent;
   color: #888;
   font-family: "Nunito", sans-serif;
   font-size: 0.875rem;
   font-weight: 600;
   border: none;
   padding: 0.8rem 0;
   cursor: pointer;
   text-decoration: none;
   transition: color 0.2s ease;
}

.btn-ghost-auth:hover {
   color: #000;
}
.btn-ghost-auth svg {
   width: 16px;
   height: 16px;
}

.link-subtle {
   font-size: 0.8rem;
   color: #888;
   text-decoration: none;
   border-bottom: 1px solid transparent;
   transition:
      color 0.2s,
      border-color 0.2s;
}

.link-subtle:hover {
   color: #000;
   border-bottom-color: #000;
}

.link-inline {
   color: #000;
   text-decoration: none;
   border-bottom: 1px solid #000;
   transition: opacity 0.2s;
}

.link-inline:hover {
   opacity: 0.55;
}

/* Divider */
.auth-divider {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
   content: "";
   flex: 1;
   height: 1px;
   background: #eee;
}

.auth-divider span {
   font-size: 0.75rem;
   color: #bbb;
   text-transform: uppercase;
   letter-spacing: 0.1em;
}

/* Auth switch */
.auth-switch {
   text-align: center;
   margin-top: 1.25rem;
}

.auth-switch p {
   font-size: 0.875rem;
   color: #888;
   margin: 0 0 0.6rem;
   display: inline;
}

.auth-switch--centered {
   text-align: center;
   margin-top: 1.5rem;
}

/* ============================================================
   AUTH — LOGIN SPLIT LAYOUT
   ============================================================ */
.auth-split {
   display: grid;
   grid-template-columns: 1fr 1fr;
   min-height: calc(100vh - var(--nav-height));
   width: 100%;
}

/* Decorative left panel */
.auth-panel--deco {
   background: #000;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: flex-end;
   padding: 3rem;
}

/* Video background */
.deco-video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
}

.deco-texture {
   position: absolute;
   inset: 0;
   z-index: 1;
   background-image:
      radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.25) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

/* Animated subtle grid — removed */
.deco-texture::before {
   display: none;
}

@keyframes gridDrift {
   0% {
      transform: translate(0, 0);
   }
   100% {
      transform: translate(60px, 60px);
   }
}

.deco-content {
   position: relative;
   z-index: 3;
}

.deco-logo {
   height: 72px;
   filter: none;
   margin-bottom: 2.5rem;
   display: block;
   opacity: 1;
}

.deco-quote {
   font-size: 1.4rem;
   font-weight: 300;
   color: rgb(255, 255, 255);
   line-height: 1.5;
   letter-spacing: -0.01em;
   margin: 0;
   border-left: 2px solid rgba(255, 255, 255, 0.2);
   padding-left: 1.25rem;
}

/* Form right panel */
.auth-panel--form {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 3rem 2rem;
   background: #fff;
}

.auth-form-wrap {
   width: 100%;
   max-width: 420px;
}

.auth-form {
   margin-bottom: 0;
}

@media (max-width: 800px) {
   .auth-split {
      grid-template-columns: 1fr;
   }
   .auth-panel--deco {
      display: none;
   }
}

/* ============================================================
   AUTH — REGISTER / MULTI-STEP
   ============================================================ */
.auth-main--register {
   display: block;
   padding: 3rem 1.5rem;
   background: #fafafa;
}

.register-wrap {
   max-width: 680px;
   margin: 0 auto;
}

/* Step indicator */
.step-indicator {
   display: flex;
   align-items: center;
   margin-bottom: 2.5rem;
   padding: 0 0.5rem;
}

.step-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.4rem;
   position: relative;
}

.step-dot {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   border: 1.5px solid #ddd;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   position: relative;
   z-index: 1;
}

.step-dot span {
   font-size: 0.8rem;
   font-weight: 700;
   color: #bbb;
   transition: color 0.3s;
}

.step-item.active .step-dot {
   background: #000;
   border-color: #000;
}

.step-item.active .step-dot span {
   color: #fff;
}

.step-item.done .step-dot {
   background: #000;
   border-color: #000;
}

.step-item.done .step-dot span {
   display: none;
}

.step-item.done .step-dot::after {
   content: "";
   width: 10px;
   height: 6px;
   border-left: 2px solid #fff;
   border-bottom: 2px solid #fff;
   transform: rotate(-45deg) translate(0, -1px);
   display: block;
}

.step-label {
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: #bbb;
   white-space: nowrap;
   transition: color 0.3s;
}

.step-item.active .step-label,
.step-item.done .step-label {
   color: #000;
}

.step-line {
   flex: 1;
   height: 1.5px;
   background: #eee;
   margin: 0 0.5rem;
   margin-bottom: 1.5rem;
   transition: background 0.3s;
}

.step-line.done {
   background: #000;
}

/* Register card */
.register-card {
   background: #fff;
   border: 1px solid #eee;
   padding: 2.5rem 2.5rem 2rem;
   position: relative;
   overflow: hidden;
   border-radius: 12px;
}

/* Steps visibility */
.register-step {
   display: none;
   animation: stepIn 0.35s ease forwards;
}

.register-step.active {
   display: block;
}

@keyframes stepIn {
   from {
      opacity: 0;
      transform: translateX(18px);
   }
   to {
      opacity: 1;
      transform: translateX(0);
   }
}

.register-step.step-out {
   animation: stepOut 0.25s ease forwards;
}

@keyframes stepOut {
   from {
      opacity: 1;
      transform: translateX(0);
   }
   to {
      opacity: 0;
      transform: translateX(-18px);
   }
}

/* Grid */
.fields-grid {
   display: grid;
   gap: 0 1.5rem;
}

.fields-grid--2 {
   grid-template-columns: 1fr 1fr;
}

/* Step nav */
.step-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 2rem;
   padding-top: 1.5rem;
   border-top: 1px solid #f0f0f0;
}

/* Interest sections */
.interest-section {
   margin-bottom: 1.75rem;
}

.interest-heading {
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   color: #000;
   margin: 0 0 0.9rem;
}

/* Chips */
.chip-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
}

.chip {
   cursor: pointer;
   display: inline-flex;
}

.chip input {
   display: none;
}

.chip span {
   font-size: 0.8rem;
   font-weight: 600;
   color: #666;
   border: 1.5px solid #ddd;
   padding: 0.35rem 0.85rem;
   border-radius: 2rem;
   transition: all 0.18s ease;
   user-select: none;
   display: block;
   letter-spacing: 0.02em;
}

.chip:hover span {
   border-color: #000;
   color: #000;
}

.chip input:checked + span {
   background: #000;
   border-color: #000;
   color: #fff;
}

/* Success */
.register-step--success {
   text-align: center;
   padding: 2rem 0;
}

.success-content {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.success-icon {
   margin-bottom: 1.5rem;
}

.success-icon svg {
   width: 64px;
   height: 64px;
}

.success-circle {
   stroke: #000;
   stroke-width: 2;
   fill: none;
   stroke-dasharray: 166;
   stroke-dashoffset: 166;
   animation: circleStroke 0.6s ease forwards 0.1s;
}

.success-check {
   stroke: #000;
   stroke-width: 2.5;
   fill: none;
   stroke-linecap: round;
   stroke-linejoin: round;
   stroke-dasharray: 48;
   stroke-dashoffset: 48;
   animation: checkStroke 0.4s ease forwards 0.65s;
}

@keyframes circleStroke {
   to {
      stroke-dashoffset: 0;
   }
}
@keyframes checkStroke {
   to {
      stroke-dashoffset: 0;
   }
}

/* Responsive register */
@media (max-width: 600px) {
   .register-card {
      padding: 1.75rem 1.25rem;
   }
   .fields-grid--2 {
      grid-template-columns: 1fr;
   }
   .step-label {
      display: none;
   }
   .auth-title {
      font-size: 1.4rem;
   }
}

/* ============================================================
   CADASTRO — FIXES & ENHANCEMENTS
   ============================================================ */

/* Fix: register-card overflow hidden was clipping step animations */
.register-card {
   overflow: visible;
}

/* Backwards step animation */
@keyframes stepInBack {
   from {
      opacity: 0;
      transform: translateX(-18px);
   }
   to {
      opacity: 1;
      transform: translateX(0);
   }
}
@keyframes stepOutBack {
   from {
      opacity: 1;
      transform: translateX(0);
   }
   to {
      opacity: 0;
      transform: translateX(18px);
   }
}

.register-step.step-in-back {
   animation: stepInBack 0.32s ease forwards;
}
.register-step.step-out-back {
   animation: stepOutBack 0.24s ease forwards;
}

/* Type selector fade-out */
@keyframes selectorFade {
   from {
      opacity: 1;
      transform: translateY(0);
   }
   to {
      opacity: 0;
      transform: translateY(-8px);
   }
}
.selector-hiding {
   animation: selectorFade 0.2s ease forwards;
   pointer-events: none;
}

/* Type badge */
.type-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.07em;
   text-transform: uppercase;
   background: #000;
   color: #fff;
   padding: 0.28rem 0.75rem 0.28rem 0.6rem;
   border-radius: 2rem;
   margin-bottom: 1.25rem;
   animation: badgeFadeIn 0.3s ease forwards;
}
@keyframes badgeFadeIn {
   from {
      opacity: 0;
      transform: translateY(4px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}
.type-badge svg {
   width: 13px;
   height: 13px;
   opacity: 0.75;
}

/* Account type selector */
.account-type-selector {
   text-align: center;
   margin-bottom: 2rem;
   animation: stepIn 0.35s ease forwards;
}
.account-type-title {
   font-size: 1.5rem;
   font-weight: 800;
   color: #0a0a0a;
   margin: 0 0 0.4rem;
   letter-spacing: -0.02em;
}
.account-type-sub {
   font-size: 0.875rem;
   color: #888;
   margin: 0 0 2rem;
}
.account-type-cards {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 2rem;
}
@media (max-width: 560px) {
   .account-type-cards {
      grid-template-columns: 1fr;
   }
}
.account-type-card {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1.25rem 1.1rem;
   background: #fff;
   border: 1.5px solid #e5e5e5;
   border-radius: 10px;
   cursor: pointer;
   text-align: left;
   transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.18s ease;
   position: relative;
}
.account-type-card:hover {
   border-color: #bbb;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
   transform: translateY(-1px);
}
.account-type-card.selected {
   border-color: #000;
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.account-type-icon {
   width: 44px;
   height: 44px;
   border-radius: 8px;
   background: #f5f5f5;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   transition:
      background 0.22s ease,
      color 0.22s ease;
   color: #555;
}
.account-type-card.selected .account-type-icon {
   background: #000;
   color: #fff;
}
.account-type-icon svg {
   width: 20px;
   height: 20px;
}
.account-type-text {
   flex: 1;
}
.account-type-text strong {
   display: block;
   font-size: 0.95rem;
   font-weight: 700;
   color: #0a0a0a;
   margin-bottom: 0.2rem;
}
.account-type-text span {
   font-size: 0.78rem;
   color: #888;
   line-height: 1.4;
}
.account-type-check {
   width: 20px;
   height: 20px;
   border-radius: 50%;
   border: 1.5px solid #ddd;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-left: auto;
   transition:
      background 0.2s,
      border-color 0.2s,
      color 0.2s;
   color: transparent;
}
.account-type-card.selected .account-type-check {
   background: #000;
   border-color: #000;
   color: #fff;
}
.account-type-check svg {
   width: 10px;
   height: 10px;
}

.btn-type-confirm {
   margin: 0 auto;
   display: inline-flex;
}

/* Partner fields divider */
.partner-fields-divider {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin: 0.5rem 0 1.25rem;
}
.partner-fields-divider::before,
.partner-fields-divider::after {
   content: "";
   flex: 1;
   height: 1px;
   background: #eee;
}
.partner-fields-divider span {
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: #888;
   white-space: nowrap;
}

/* Partner fields entrance */
.partner-fields {
   animation: stepIn 0.35s ease forwards;
}

/* Field errors */
.field-error {
   display: none;
   font-size: 0.75rem;
   color: #e53e3e;
   margin-top: 0.35rem;
}
.field-input.has-error {
   border-bottom-color: #e53e3e !important;
}

/* Textarea */
.field-textarea {
   resize: vertical;
   min-height: 76px;
   line-height: 1.5;
   padding-top: 0.4rem;
}

/* Loading button state */
.btn--loading {
   opacity: 0.7;
   pointer-events: none;
}

/* Step indicator — ensure flex layout fills space */
.step-indicator {
   justify-content: space-between;
}
.step-item {
   flex-shrink: 0;
}
.step-line {
   flex: 1;
}

/* Smooth chip hover */
.chip span {
   cursor: pointer;
}

/* ─── Responsive fixes ─── */
@media (max-width: 600px) {
   .account-type-cards {
      grid-template-columns: 1fr;
   }
   .type-badge {
      font-size: 0.68rem;
   }
}
