:root {
    --yellow: #FFD600;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray: #1A1A1A;
    --gray2: #2A2A2A;
    --muted: #888888;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,214,0,0.15);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-mark {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--yellow);
    letter-spacing: 2px;
  }

  .logo-sub {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .nav-vagas {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,214,0,0.1);
    border: 1px solid rgba(255,214,0,0.3);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--yellow);
  }

  .dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-circles {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    pointer-events: none;
    opacity: 0.12;
  }

  .hero-bg-circles circle {
    fill: none;
    stroke: var(--yellow);
    stroke-width: 1;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 160px);
    line-height: 0.92;
    letter-spacing: -1px;
    color: var(--white);
    max-width: 900px;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  .hero-title span {
    color: var(--yellow);
    display: block;
  }

  .hero-sub {
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-top: 28px;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-sub strong {
    color: var(--white);
    font-weight: 500;
  }

  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
  }

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

  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .hero-trust {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-trust::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--muted);
  }

  /* VAGAS COUNTER */
  .vagas-strip {
    background: var(--yellow);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }

  .vagas-strip::before {
    content: 'APENAS 5 VAGAS POR SEMANA · APENAS 5 VAGAS POR SEMANA · APENAS 5 VAGAS POR SEMANA · APENAS 5 VAGAS POR SEMANA · ';
    position: absolute;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 18px;
    color: rgba(0,0,0,0.12);
    letter-spacing: 3px;
    animation: marquee 20s linear infinite;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .vagas-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--black);
    letter-spacing: 1px;
  }

  .vagas-num {
    background: var(--black);
    color: var(--yellow);
    font-size: 28px;
    padding: 4px 16px;
    border-radius: 2px;
  }

  /* SECTIONS COMMON */
  section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
  }

  .section-title em {
    color: var(--yellow);
    font-style: normal;
  }

  /* PROBLEMAS */
  .problemas-section {
    border-top: 1px solid var(--gray2);
  }

  .problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--gray2);
    margin-top: 60px;
    border: 1px solid var(--gray2);
  }

  .problema-card {
    background: var(--black);
    padding: 36px 32px;
    position: relative;
    transition: background 0.2s;
  }

  .problema-card:hover {
    background: var(--gray);
  }

  .problema-card::before {
    content: attr(data-num);
    font-family: var(--font-display);
    font-size: 64px;
    color: rgba(255,214,0,0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
  }

  .problema-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,214,0,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .problema-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .problema-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
  }

  .problema-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* DIFERENCIAL */
  .diferencial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

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

  .diferencial-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

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

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

  .dif-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--yellow);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .dif-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .dif-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .dif-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  .diferencial-visual {
    position: relative;
  }

  .visual-box {
    background: var(--gray);
    border: 1px solid var(--gray2);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }

  .visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
  }

  .visual-stat {
    text-align: center;
    padding: 24px;
  }

  .visual-stat .num {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--yellow);
    line-height: 1;
    display: block;
  }

  .visual-stat .label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
  }

  .visual-divider {
    height: 1px;
    background: var(--gray2);
    margin: 8px 0;
  }

  /* COMO FUNCIONA */
  .como-section {
    background: var(--gray);
    max-width: 100%;
    border-top: 1px solid var(--gray2);
    border-bottom: 1px solid var(--gray2);
  }

  .como-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
  }

  .step-item {
    position: relative;
  }

  .step-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.7;
  }

  .step-icon-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,214,0,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255,214,0,0.05);
  }

  .step-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
  }

  .step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }

  .step-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* PACOTES */
  .pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
  }

  .pacote-card {
    background: var(--gray);
    border: 1px solid var(--gray2);
    border-radius: 8px;
    padding: 36px 32px;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
  }

  .pacote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,214,0,0.3);
  }

  .pacote-card.featured {
    border-color: var(--yellow);
    background: var(--gray2);
  }

  .pacote-card.featured::before {
    content: 'MAIS VENDIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 2px;
    white-space: nowrap;
  }

  .pacote-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
  }

  .pacote-price {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

  .pacote-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
  }

  .pacote-divider {
    height: 1px;
    background: var(--gray2);
    margin-bottom: 24px;
  }

  .pacote-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .pacote-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
  }

  .pacote-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='3,8 6,11 13,4' stroke='%23FFD600' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
  }

  .pacote-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .pacote-cta-outline {
    border: 1px solid rgba(255,214,0,0.4);
    color: var(--yellow);
  }

  .pacote-cta-outline:hover {
    background: rgba(255,214,0,0.1);
  }

  .pacote-cta-solid {
    background: var(--yellow);
    color: var(--black);
    border: 1px solid var(--yellow);
  }

  .pacote-cta-solid:hover {
    background: #ffde2e;
    box-shadow: 0 8px 30px rgba(255,214,0,0.3);
  }

  /* GARANTIA */
  .garantia-section {
    background: var(--yellow);
    max-width: 100%;
    padding: 80px 40px;
  }

  .garantia-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

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

  .garantia-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    color: var(--black);
    line-height: 0.95;
  }

  .garantia-text {
    font-size: 17px;
    color: rgba(0,0,0,0.65);
    line-height: 1.7;
  }

  .garantia-text strong {
    color: var(--black);
  }

  .garantia-items {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .garantia-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
  }

  .garantia-items li::before {
    content: '→';
    color: rgba(0,0,0,0.5);
    font-weight: 700;
  }

  /* FAQ */
  .faq-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid var(--gray2);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--yellow); }

  .faq-q span.icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid var(--gray2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    color: var(--yellow);
  }

  .faq-a {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .faq-a.open {
    max-height: 300px;
    padding-bottom: 24px;
  }

  /* FORMULÁRIO */
  .form-section {
    background: var(--gray);
    max-width: 100%;
    border-top: 1px solid var(--gray2);
  }

  .form-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .form-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 0.95;
    margin-bottom: 16px;
    color: var(--white);
  }

  .form-title em { color: var(--yellow); font-style: normal; }

  .form-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 44px;
    line-height: 1.6;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--black);
    border: 1px solid var(--gray2);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--yellow);
  }

  .form-group select option { background: #1a1a1a; }

  .form-group textarea { min-height: 100px; resize: vertical; }

  .form-submit {
    margin-top: 28px;
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,214,0,0.3);
  }

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

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--gray2);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--yellow);
    letter-spacing: 2px;
  }

  .footer-text {
    font-size: 13px;
    color: var(--muted);
  }

  /* ANIMAÇÕES */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

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

  /* MOBILE */
  @media (max-width: 640px) {
    nav { padding: 16px 20px; }
    .hero { padding: 100px 20px 60px; }
    section { padding: 60px 20px; }
    .como-inner, .form-inner { padding: 60px 20px; }
    .garantia-section { padding: 60px 20px; }
    footer { padding: 30px 20px; }
    .vagas-strip { padding: 14px 20px; }
  }

  /* ── PORTFOLIO RESPONSIVO ─────────────────────────────── */
  .porto-card {
    min-width: 680px;
    max-width: 680px;
    scroll-snap-align: start;
    background: #0A0A0A;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .porto-img {
    position: relative;
    height: 360px;
    overflow: hidden;
  }
  .porto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.9;
    transition: transform 0.5s ease;
  }
  .porto-img img:hover { transform: scale(1.03); }
  .porto-body { padding: 32px; }
  .porto-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .porto-tag {
    font-size: 11px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--muted);
  }
  .porto-tag-yellow {
    font-size: 11px;
    background: rgba(255,214,0,0.08);
    border: 1px solid rgba(255,214,0,0.2);
    border-radius: 20px;
    padding: 4px 12px;
    color: #FFD600;
  }
  #portfolio-track { padding: 0 40px; }

  @media (max-width: 768px) {
    .porto-card {
      min-width: calc(100vw - 48px);
      max-width: calc(100vw - 48px);
    }
    .porto-img { height: 220px; }
    .porto-body { padding: 20px; }
    #portfolio-track { padding: 0 24px; gap: 16px; }
    .porto-tags { gap: 6px; }
    .porto-tag, .porto-tag-yellow { font-size: 10px; padding: 3px 10px; }
  }
  @media (max-width: 480px) {
    .porto-card { min-width: calc(100vw - 32px); max-width: calc(100vw - 32px); }
    .porto-img { height: 180px; }
    #portfolio-track { padding: 0 16px; }
  }