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

  :root {
    --red: #E8192C;
    --red--dark: #b50616;
    --orange: #FF6B00;
    --black: #0A0A0A;
    --dark: #111111;
    --gray: #F4F4F4;
    --light: #F8F8F8;
    --muted: #888880;
    --white: #FFFFFF;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  }

  nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .nav-logo-img {
    height: 38px;
    width: auto;
  }


  .nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .nav-cta:hover {
    background: #c7151f;
  }

  .nav-whatsapp {
    background: #25D366;
  }

  .nav-whatsapp:hover {
    background: #1db954;
  }

  /* logo swap: branco na nav transparente, escuro na nav com fundo branco */
  .nav-logo-dark {
    display: none;
  }

  .nav-logo-white {
    display: block;
  }

  nav.scrolled .nav-logo-dark {
    display: block;
  }

  nav.scrolled .nav-logo-white {
    display: none;
  }

  /* ── HERO ── */
  @keyframes hero-breathe {

    0%,
    100% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }
  }

  @keyframes hero-glow {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.5;
    }
  }

  .hero {
    min-height: 100vh;
    padding: 0 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        #0a0a0a 0%,
        #1a0000 18%,
        #0a0a0a 38%,
        #2a0a00 58%,
        #0a0a0a 78%,
        #1a0000 100%);
    background-size: 300% 300%;
    animation: hero-breathe 12s ease-in-out infinite;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 65% 55% at 12% 65%, rgba(204, 0, 0, 0.18) 0%, transparent 65%),
      radial-gradient(ellipse 50% 60% at 88% 22%, rgba(255, 102, 0, 0.11) 0%, transparent 62%);
    animation: hero-glow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .hero-content {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-image {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    /* background: url('../img/boneca-matrioska.webp') bottom right / contain no-repeat; */
    pointer-events: none;
  }

  /* ── HERO FORM ── */
  .hero-form-col {
    flex: 0 0 420px;
    max-width: 480px;
    width: 100%;
  }

  .lead-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  }

  .form-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .form-card-sub {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 22px;
    line-height: 1.5;
  }

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

  .form-group input {
    width: 100%;
    background: #F5F5F5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-group input::placeholder {
    color: rgba(0, 0, 0, 0.35);
  }

  .form-group input:focus {
    border-color: rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
  }

  .form-group input.input-error {
    border-color: rgba(232, 25, 44, 0.55);
  }

  .field-error {
    display: block;
    font-size: 12px;
    color: var(--red);
    margin-top: 4px;
    min-height: 16px;
    line-height: 1.3;
  }

  .btn-form-submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
    display: block;
  }

  .btn-form-submit:hover:not(:disabled) {
    background: #c7151f;
    transform: translateY(-1px);
  }

  .btn-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  .form-feedback {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }

  .form-feedback.success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.28);
    color: #16a34a;
  }

  .form-feedback.error {
    background: rgba(232, 25, 44, 0.06);
    border: 1px solid rgba(232, 25, 44, 0.2);
    color: rgba(0, 0, 0, 0.7);
  }

  .form-feedback.error a {
    color: var(--red);
    text-decoration: underline;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 25, 44, 0.08);
    border: 1px solid rgba(232, 25, 44, 0.25);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.5;
      transform: scale(0.8);
    }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 32px;
    color: #ffffff;
  }

  .hero h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  }

  .hero h1 .accent {
    color: var(--red);
  }

  .hero-sub {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: #c7151f;
    transform: translateY(-2px);
  }

  .btn-ghost {
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-ghost:hover {
    color: var(--black);
  }

  .hero .btn-ghost {
    color: rgba(255, 255, 255, 0.55);
  }

  .hero .btn-ghost:hover {
    color: #ffffff;
  }

  .btn-ghost svg {
    width: 18px;
    height: 18px;
  }

  .hero-numbers {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-num {
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-num-val {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
  }

  .hero-num-val span {
    color: var(--red);
  }

  .hero-num-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── MARQUEE ── */
  .marquee-wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    background: #F4F4F4;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .marquee-item::after {
    content: '★';
    color: var(--red);
    font-size: 12px;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 120px 40px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0;
  }

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

  .section-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.12);
  }

  .divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 24px 0;
  }

  /* ── PROBLEMA ── */
  .problema {
    background: #F4F4F4;
  }

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

  .problema-left .section-title {
    margin-bottom: 24px;
  }

  .problema-desc {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
  }

  .problema-items {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 60px;
  }

  .problema-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: border-color 0.2s, background 0.2s;
  }

  .problema-item-num {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    min-width: 50px;
  }

  .problema-item-text h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }

  .problema-item-text p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
  }

  /* ── RESULTADOS / O QUE VOCÊ GANHA ── */
  .resultados {
    background: #FFFFFF;
  }

  .resultados-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    gap: 40px;
    flex-wrap: wrap;
  }

  .resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.06);
  }

  .resultado-card {
    background: #FFFFFF;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .resultado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

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

  .resultado-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: var(--red);
  }

  .resultado-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
  }

  .resultado-card p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .resultado-tag {
    display: inline-block;
    background: rgba(232, 25, 44, 0.08);
    color: var(--red);
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ── COMO FUNCIONA ── */
  .como {
    background: #F4F4F4;
  }

  .como-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }

  .como-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 25, 44, 0.35), transparent);
    z-index: 0;
  }

  .como-step {
    padding: 40px 36px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .como-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
  }

  .como-step h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
  }

  .como-step p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
  }

  /* ── PACOTES ── */
  .pacotes {
    background: #FFFFFF;
  }

  .pacotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(0, 0, 0, 0.06);
  }

  .pacote-card {
    background: #FFFFFF;
    padding: 48px 36px;
    position: relative;
  }

  .pacote-card.destaque {
    background: var(--red--dark);
  }

  .pacote-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--muted);
  }

  .pacote-card.destaque .pacote-label {
    color: rgba(255, 255, 255, 0.7);
  }

  .pacote-card.destaque .popular-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .pacote-nome {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    line-height: 1;
  }

  .pacote-tagline {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 36px;
    line-height: 1.5;
  }

  .pacote-card.destaque .pacote-tagline {
    color: rgba(255, 255, 255, 0.75);
  }

  .pacote-items {
    list-style: none;
    margin-bottom: 40px;
  }

  .pacote-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .pacote-card.destaque .pacote-items li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .pacote-items li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .pacote-card.destaque .pacote-items li::before {
    color: var(--white);
  }

  .pacote-preco {
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .pacote-card.destaque .pacote-preco {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .pacote-preco-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .pacote-card.destaque .pacote-preco-label {
    color: rgba(255, 255, 255, 0.65);
  }

  .pacote-preco-valor {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
  }

  .pacote-card.destaque .pacote-preco-valor {
    color: var(--white);
  }

  .pacote-preco-valor small {
    font-size: 22px;
    font-weight: 700;
    opacity: 0.75;
  }

  .btn-pacote {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--black);
    transition: all 0.2s;
  }

  .btn-pacote:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
  }

  .pacote-card.destaque .btn-pacote {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
  }

  .pacote-card.destaque .btn-pacote:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  /* ── CLIENTES ── */
  .clientes {
    background: #FFFFFF;
    text-align: center;
  }

  .clientes-subtitle {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 16px;
  }

  .clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .cliente-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
  }

  .cliente-box:hover {
    border-color: rgba(232, 25, 44, 0.4);
    transform: translateY(-3px);
  }

  .cliente-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--red--dark);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-final::before {
    /* content: 'RESULTADO'; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
  }

  .cta-final-inner {
    position: relative;
    z-index: 1;
  }

  .cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0;
    margin-bottom: 24px;
    color: var(--white);
  }

  .cta-final p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }

  .btn-cta-white {
    display: inline-block;
    text-decoration: none;
    background: var(--black);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
  }

  .btn-cta-white:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
  }

  .cta-final-note {
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
  }

  /* ── FOOTER ── */
  footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-logo {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
  }

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

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

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: #ffffff;
  }

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
  }

  .footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }

  .footer-social-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
  }

  .footer-social-link svg {
    width: 18px;
    height: 18px;
  }

  /* ── BOTÃO FLUTUANTE WHATSAPP ── */
  .wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .wpp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  }

  .wpp-float svg {
    width: 32px;
    height: 32px;
  }

  /* ── ANIMATIONS ON SCROLL ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(2) {
    transition-delay: 0.1s;
  }

  .fade-up:nth-child(3) {
    transition-delay: 0.2s;
  }

  .fade-up:nth-child(4) {
    transition-delay: 0.3s;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-inner {
      padding: 16px 20px;
    }

    section {
      padding: 80px 20px;
    }

    /* Hero */
    .hero {
      padding: 0 20px;
    }

    .hero-inner {
      padding: 100px 0 60px;
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }

    .hero-content {
      width: 100%;
      flex: none;
    }

    .hero-form-col {
      width: 100%;
      max-width: 100%;
      flex: none;
    }

    .lead-form-card {
      padding: 1.5rem;
    }

    .hero h1 {
      font-size: 5rem;
    }

    /* Sections */
    .problema-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .problema-items {
      margin-top: 0;
    }

    .resultados-grid {
      grid-template-columns: 1fr 1fr;
    }

    .resultados-header {
      flex-direction: column;
      gap: 16px;
    }

    /* Como funciona */
    .como-steps {
      grid-template-columns: 1fr;
    }

    .como-steps::before {
      display: none;
    }

    /* Pacotes */
    .pacotes-grid {
      grid-template-columns: 1fr;
      gap: 2px;
    }

    /* Clientes */
    .clientes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    /* Footer */
    footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .footer-links {
      flex-wrap: wrap;
      gap: 16px;
    }
  }

  @media (max-width: 600px) {
    .hero h1 {
      font-size: 3.5rem;
    }

    .hero-sub {
      font-size: 16px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }

    .section-title {
      font-size: clamp(32px, 9vw, 44px);
    }

    .resultados-grid {
      grid-template-columns: 1fr;
    }

    .resultado-card {
      padding: 32px 24px;
    }

    .pacote-card {
      padding: 36px 24px;
    }

    .pacote-nome {
      font-size: 28px;
    }

    .clientes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .btn-primary {
      width: 100%;
      text-align: center;
    }

    .nav-whatsapp {
      font-size: 13px;
      padding: 8px 14px;
    }

    .nav-logo-img {
      height: 30px;
    }
  }