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

    :root {
      --black: #0F0F0F;
      --dark: #141414;
      --card-bg: rgba(255, 255, 255, 0.04);
      --red: #8B0000;
      --red-glow: #B00000;
      --orange: #FF6B00;
      --white: #FFFFFF;
      --gray: #A0A0A0;
      --border: rgba(255, 255, 255, 0.08);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      opacity: 0;
      animation: fadeInPage 0.8s ease-out forwards;
    }

    @keyframes fadeInPage {
      to { opacity: 1; }
    }

    body.fade-out {
      animation: fadeOutPage 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fadeOutPage {
      to { opacity: 0; transform: translateY(-10px); }
    }

    body:has(.form-container:hover) #cursor-glow {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: rgba(255, 107, 0, 0.03);
    }

    #cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 400px;
      height: 400px;
      background: rgba(255, 107, 0, 0.08);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      margin: -200px 0 0 -200px;
      opacity: 0;
      transition: opacity 0.4s ease;
      backdrop-filter: brightness(1.4) contrast(1.1);
      -webkit-backdrop-filter: brightness(1.4) contrast(1.1);
      -webkit-mask-image: radial-gradient(circle, black 0%, transparent 50%);
      mask-image: radial-gradient(circle, black 0%, transparent 50%);
    }
    
    #cursor-glow.moving {
      opacity: 1;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .text-orange {
      color: var(--orange);
    }

    section {
      position: relative;
    }

    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--orange) 0%, #E55A00 100%);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 18px 48px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red-glow);
      margin-bottom: 20px;
      display: block;
    }

    .section-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .section-text {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      max-width: 600px;
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(139, 0, 0, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
      z-index: 0;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
    }

    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-eyebrow span {
      display: inline-block;
      padding: 6px 20px;
      border: 1px solid rgba(255, 107, 0, 0.4);
      border-radius: 2px;
      background: rgba(255, 107, 0, 0.06);
    }

    .hero-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      line-height: 1.0;
      letter-spacing: 0.02em;
      max-width: 900px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
      margin-bottom: 32px;
    }

    .hero-headline em {
      font-style: normal;
      color: var(--orange);
      text-shadow: 0 0 60px rgba(255, 107, 0, 0.4);
    }

    .hero-sub {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 620px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
      margin-bottom: 48px;
    }

    .hero-cta-wrap {
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .hero-fine {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.05em;
    }

    .hero-stats {
      display: flex;
      margin-top: 72px;
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .hero-stat {
      padding: 24px 48px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .hero-stat:last-child {
      border-right: none;
    }

    .hero-stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      color: var(--orange);
      line-height: 1;
      display: block;
    }

    .hero-stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 6px;
      display: block;
    }

    /* DOR */
    #dor {
      padding: 120px 0;
      background: var(--dark);
    }

    .dor-intro {
      margin-bottom: 72px;
    }

    .pain-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      overflow: hidden;
    }

    .pain-card {
      background: var(--dark);
      padding: 40px 32px;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }

    .pain-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--orange));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

    .pain-card:hover {
      background: rgba(139, 0, 0, 0.08);
    }

    .pain-card:hover::before {
      transform: scaleX(1);
    }

    .pain-icon {
      width: 44px;
      height: 44px;
      border-radius: 4px;
      background: rgba(139, 0, 0, 0.15);
      border: 1px solid rgba(139, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .pain-icon svg {
      width: 22px;
      height: 22px;
      stroke: #C00000;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .pain-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.03em;
      margin-bottom: 10px;
      color: var(--white);
    }

    .pain-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .dor-text-block {
      margin-top: 64px;
      padding: 48px;
      background: rgba(139, 0, 0, 0.06);
      border-left: 3px solid var(--red-glow);
      border-radius: 0 4px 4px 0;
    }

    .dor-text-block p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.8;
    }

    .dor-text-block p+p {
      margin-top: 16px;
    }

    /* DESCOBRIR */
    #descobrir {
      padding: 120px 0;
      background: var(--black);
    }

    #descobrir::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
    }

    .disc-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .disc-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }

    .disc-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 36px 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .disc-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .disc-card:hover {
      border-color: rgba(255, 107, 0, 0.25);
      background: rgba(255, 107, 0, 0.04);
      transform: translateY(-4px);
    }

    .disc-card:hover::after {
      opacity: 1;
    }

    .disc-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      line-height: 1;
      color: rgba(255, 107, 0, 0.15);
      margin-bottom: 12px;
      display: block;
    }

    .disc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .disc-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* SOBRE */
    #sobre {
      padding: 120px 0;
      background: var(--dark);
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .sobre-img-frame {
      aspect-ratio: 4/5;
      border-radius: 6px;
      border: 1px solid rgba(255, 107, 0, 0.2);
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 0, 0.1);
    }

    .sobre-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .sobre-img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, transparent 50%);
      pointer-events: none;
    }

    .sobre-tag {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 2;
      background: var(--orange);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 10px 18px;
      border-radius: 4px;
      box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
    }

    .sobre-pillars {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
    }

    .pillar {
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .pillar:first-child {
      border-top: 1px solid var(--border);
    }

    .pillar-dot {
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      margin-top: 8px;
      flex-shrink: 0;
    }

    .pillar-text {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.6;
    }

    .pillar-text strong {
      color: var(--white);
      font-weight: 600;
    }

    /* EXCLUSIVIDADE */
    #exclusividade {
      padding: 120px 24px;
      text-align: center;
      overflow: hidden;
      background: var(--black);
    }

    #exclusividade::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    }

    .excl-inner {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .excl-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 80px);
      line-height: 1.0;
      margin-bottom: 32px;
    }

    .excl-text {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .excl-check-list {
      list-style: none;
      text-align: left;
      display: inline-block;
      margin: 40px auto;
    }

    .excl-check-list li {
      padding: 10px 0;
      color: rgba(255, 255, 255, 0.7);
      font-size: 16px;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .check-ico {
      width: 22px;
      height: 22px;
      background: rgba(255, 107, 0, 0.15);
      border: 1px solid rgba(255, 107, 0, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .check-ico svg {
      width: 11px;
      height: 11px;
      stroke: var(--orange);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* FORMULÁRIO */
    #formulario {
      padding: 120px 24px;
      background: var(--dark);
    }

    #formulario::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    .form-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .form-container {
      max-width: 800px;
      margin: 0 auto;
      background: #FFFFFF;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    }

    .form-progress-bar {
      height: 4px;
      background: #F0F0F0;
    }

    .form-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #8B0000, #FF6B00);
      transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: 33.33%;
    }

    .form-step-header {
      padding: 32px 48px 24px;
      border-bottom: 1px solid #F0F0F0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .form-step-info {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .form-step-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #FF6B00;
      color: #FFF;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .form-step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0F0F0F;
      letter-spacing: 0.02em;
    }

    .form-step-sub {
      font-size: 13px;
      color: #888;
      margin-top: 2px;
    }

    .form-step-counter {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      color: #999;
      letter-spacing: 0.05em;
    }

    .form-body {
      padding: 40px 48px;
    }

    .step-panel {
      display: none;
    }

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

    .form-group {
      margin-bottom: 28px;
    }

    .form-label {
      display: block;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #1A1A1A;
      margin-bottom: 10px;
      letter-spacing: 0.01em;
    }

    .form-label .req {
      color: #FF6B00;
      margin-left: 3px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 14px 18px;
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      color: #1A1A1A;
      background: #FAFAFA;
      border: 1.5px solid #E8E8E8;
      border-radius: 6px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #C0C0C0;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: #FF6B00;
      background: #FFF;
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

    .form-input.error,
    .form-select.error,
    .form-textarea.error {
      border-color: #C00000;
      background: #FFF8F8;
      box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.08);
    }

    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 44px;
      cursor: pointer;
    }

    .form-select.error {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C00000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .field-error {
      display: none;
      margin-top: 7px;
      font-size: 13px;
      color: #C00000;
      align-items: center;
      gap: 6px;
    }

    .field-error.visible {
      display: flex;
    }

    .field-error svg {
      width: 14px;
      height: 14px;
      stroke: #C00000;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      flex-shrink: 0;
    }

    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .radio-group.error-group {
      outline: 2px solid rgba(192, 0, 0, 0.25);
      outline-offset: 4px;
      border-radius: 8px;
    }

    .radio-opt {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: #FAFAFA;
      border: 1.5px solid #E8E8E8;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      user-select: none;
    }

    .radio-opt:hover {
      border-color: rgba(255, 107, 0, 0.4);
      background: rgba(255, 107, 0, 0.03);
    }

    .radio-opt.selected {
      border-color: #FF6B00;
      background: rgba(255, 107, 0, 0.06);
    }

    .radio-dot {
      width: 18px;
      height: 18px;
      border: 2px solid #D0D0D0;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }

    .radio-opt.selected .radio-dot {
      border-color: #FF6B00;
    }

    .radio-dot-inner {
      width: 8px;
      height: 8px;
      background: #FF6B00;
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.2s;
    }

    .radio-opt.selected .radio-dot-inner {
      transform: scale(1);
    }

    .opt-text {
      font-size: 15px;
      color: #333;
      line-height: 1.4;
    }

    .confirm-check {
      display: flex;
      gap: 16px;
      padding: 24px;
      background: #FFF8F3;
      border: 1.5px solid rgba(255, 107, 0, 0.2);
      border-radius: 6px;
      cursor: pointer;
      margin-bottom: 12px;
      user-select: none;
      transition: border-color 0.2s;
    }

    .confirm-check.error-confirm {
      border-color: rgba(192, 0, 0, 0.4);
      background: #FFF8F8;
    }

    .confirm-check-box {
      width: 22px;
      height: 22px;
      border: 2px solid #D0D0D0;
      border-radius: 4px;
      flex-shrink: 0;
      margin-top: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      background: #FFF;
    }

    .confirm-check.checked .confirm-check-box {
      background: #FF6B00;
      border-color: #FF6B00;
    }

    .confirm-check-box svg {
      width: 13px;
      height: 13px;
      stroke: #FFF;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .confirm-check.checked .confirm-check-box svg {
      opacity: 1;
    }

    .confirm-text {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    .confirm-text strong {
      color: #1A1A1A;
    }

    .form-footer {
      padding: 24px 48px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #F0F0F0;
    }

    .btn-form-back {
      background: none;
      border: 1.5px solid #E0E0E0;
      color: #888;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-form-back svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .btn-form-back:hover {
      border-color: #CCC;
      color: #555;
    }

    .btn-form-next {
      background: linear-gradient(135deg, #FF6B00, #E05500);
      color: #FFF;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 36px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-form-next svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .btn-form-next:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    }

    .btn-form-submit {
      background: linear-gradient(135deg, #8B0000, #C00000);
      color: #FFF;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 48px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
      width: 100%;
      margin-top: 8px;
    }

    .btn-form-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(139, 0, 0, 0.5);
    }

    .form-success {
      display: none;
      padding: 80px 48px;
      text-align: center;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, #FF6B00, #E05500);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 32px;
    }

    .success-icon svg {
      width: 36px;
      height: 36px;
      stroke: #FFF;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .success-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      color: #0F0F0F;
      margin-bottom: 16px;
    }

    .success-text {
      font-size: 16px;
      color: #666;
      line-height: 1.7;
      max-width: 500px;
      margin: 0 auto;
    }

    /* CTA FINAL */
    #cta-final {
      padding: 140px 24px;
      text-align: center;
      background: var(--black);
      overflow: hidden;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    }

    .cta-final-inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-final-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 6vw, 72px);
      line-height: 1.05;
      margin-bottom: 28px;
    }

    .cta-final-text {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      max-width: 600px;
      margin: 0 auto 48px;
    }

    /* FOOTER */
    footer {
      background: #0A0A0A;
      border-top: 1px solid var(--border);
      padding: 48px 24px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 0.05em;
      color: var(--white);
    }

    .footer-logo span {
      color: var(--orange);
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.2);
      width: 100%;
      text-align: center;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .obrigado-wrapper .hero-headline {
        font-size: clamp(72px, 14vw, 96px);
      }
      
      .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-stats {
        flex-wrap: wrap;
      }

      .hero-stat {
        padding: 20px 28px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .hero-stat:last-child {
        border-bottom: none;
      }

      .form-step-header,
      .form-body,
      .form-footer {
        padding-left: 20px;
        padding-right: 20px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
      }
    }

    .bg-waves {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bg-wave {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 1px solid rgba(255, 107, 0, 0.06);
      box-shadow: 0 0 60px rgba(255, 107, 0, 0.03) inset;
      animation: expandWave 12s infinite linear;
      opacity: 0;
    }

    .bg-wave:nth-child(1) { animation-delay: 0s; }
    .bg-wave:nth-child(2) { animation-delay: 4s; }
    .bg-wave:nth-child(3) { animation-delay: 8s; }

    @keyframes expandWave {
      0% { transform: scale(0.1); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: scale(3.5); opacity: 0; }
    }

    .excl-container {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: left;
    }

    .excl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .excl-img-frame {
      border-radius: 6px;
      border: 1px solid rgba(255, 107, 0, 0.2);
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 0, 0.1);
    }

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

    @media (max-width: 768px) {
      .excl-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }