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

  :root {
    --primary:     #5C3D2E;
    --primary-dk:  #3B2318;
    --accent:      #C0692A;
    --accent-lt:   #E8935A;
    --gold:        #B8860B;
    --gold-lt:     #D4A843;
    --bg:          #FFFAF6;
    --bg-section:  #FFF4EC;
    --bg-card:     #FFFFFF;
    --text:        #2C1A0E;
    --text-muted:  #7A5C45;
    --border:      #EDD9C8;
    --cream:       #FDF5EC;
  }

  body {
    background: var(--bg);
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }

  /* ── HEADER (igual ao do site) ── */
  header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
  }
  .logo img { height: 38px; }
  .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary);
  }
  nav { display: flex; gap: 24px; align-items: center; }
  nav a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
  }
  nav a:hover { color: var(--accent); }
  nav a.active { color: var(--accent); font-weight: 500; }
  .nav-btn {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500 !important;
  }
  .nav-btn:hover { background: var(--primary) !important; }
  .hamburger { display: none; cursor: pointer; font-size: 22px; color: var(--text-muted); }

  /* ── HERO ── */
  .hero {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 72px 24px 60px;
  }
  .hero-badge {
    display: inline-block;
    background: #FEF3E2;
    color: var(--gold);
    border: 1px solid #F0D080;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    color: var(--primary-dk);
    margin-bottom: 16px;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.75;
  }
  .vagas-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-muted);
    box-shadow: 0 1px 4px #0000000a;
  }
  .vagas-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #E04D2A;
    animation: blink 1.8s ease-in-out infinite;
  }
  @keyframes blink {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.3; transform:scale(1.5); }
  }

  /* ── PERKS ── */
  .perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 32px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .perk {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
  }

  /* ── PLANOS ── */
  .plans-section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 60px 24px 72px;
  }
  .section-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }
  .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--primary-dk);
    margin-bottom: 40px;
  }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
  }

  /* card */
  .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 26px 26px;
    position: relative;
    transition: box-shadow .2s, transform .2s;
  }
  .card:hover {
    box-shadow: 0 8px 32px #5C3D2E14;
    transform: translateY(-3px);
  }
  .card-featured {
    border: 2px solid var(--gold);
    background: #FFFBF3;
  }
  .tag-best {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 16px;
    white-space: nowrap;
  }
  .card-icon { font-size: 32px; margin-bottom: 14px; display: block; }
  .card-eyebrow {
    font-size: 10px; font-weight: 500;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
  }
  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-dk);
    margin-bottom: 8px;
  }
  .card-sub {
    font-size: 13px; font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6; margin-bottom: 20px;
  }
  .divider { height: 1px; background: var(--border); margin-bottom: 18px; }
  .feature {
    font-size: 13px; color: var(--text-muted);
    padding: 5px 0; display: flex;
    align-items: flex-start; gap: 9px; line-height: 1.4;
  }
  .feature::before { content: '✦'; color: var(--gold); font-size: 9px; margin-top: 3px; flex-shrink: 0; }
  .price {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--primary-dk);
    line-height: 1;
    margin: 22px 0 4px;
  }
  .price sup { font-size: 18px; font-family: 'DM Sans', sans-serif; font-weight: 300; vertical-align: super; }
  .price-detail { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }

  .btn {
    display: block; width: 100%; padding: 13px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 500; text-align: center;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .btn:active { transform: scale(.97); }
  .btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
  }
  .btn-outline:hover { background: #FFF0E8; }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--primary); }

  /* ── COMO FUNCIONA ── */
  .how-section {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 24px;
  }
  .how-inner { max-width: 680px; margin: 0 auto; }
  .steps { display: flex; flex-direction: column; margin-top: 40px; }
  .step {
    display: flex; gap: 18px; text-align: left;
    position: relative; padding-bottom: 28px;
  }
  .step:last-child { padding-bottom: 0; }
  .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-size: 13px; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .step-line {
    position: absolute; left: 17px; top: 36px; bottom: 0;
    width: 1px; background: var(--border);
  }
  .step:last-child .step-line { display: none; }
  .step-body { padding-top: 6px; }
  .step-body h3 { font-size: 15px; font-weight: 500; color: var(--primary-dk); margin-bottom: 4px; }
  .step-body p  { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

  /* ── FOOTER (igual ao do site) ── */
  footer {
    background: var(--primary-dk);
    color: #D3C4B8;
    padding: 48px 24px 32px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand p {
    font-size: 13px; font-weight: 300;
    color: #A08070; line-height: 1.7; margin: 10px 0 16px;
  }
  .footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
  .footer-badge {
    background: #ffffff12;
    border: 0.5px solid #ffffff20;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    color: #C0A898;
  }
  .footer-col h4 {
    font-size: 11px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: #C0A898; margin-bottom: 14px;
  }
  .footer-col a, .footer-col p {
    display: block; font-size: 13px; font-weight: 300;
    color: #A08070; text-decoration: none;
    margin-bottom: 8px; line-height: 1.5;
  }
  .footer-col a:hover { color: var(--accent-lt); }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: #EDD9C8;
    display: flex; align-items: center; gap: 8px;
  }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    border-top: 0.5px solid #ffffff15;
    padding-top: 24px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: #7A5C45;
  }
  .footer-bottom-links { display: flex; gap: 16px; }
  .footer-bottom-links a { color: #7A5C45; text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--accent-lt); }

  /* ── ÁREA DE ATENDIMENTO ── */
  .area-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 72px;
  }
  .area-notice {
    background: #FEF3E2;
    border: 1px solid #F0D080;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  .area-notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .area-notice p { font-size: 13px; color: #7A5228; line-height: 1.6; }
  .area-notice strong { color: #5C3800; }
  .area-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
  .area-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .area-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    flex-shrink: 0;
  }
  .area-item-info { flex: 1; }
  .area-item-name { font-size: 15px; font-weight: 500; color: var(--primary-dk); margin: 0 0 2px; }
  .area-item-meta { font-size: 12px; color: var(--text-muted); margin: 0; }
  .area-status {
    font-size: 11px;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
    border-radius: 20px;
    padding: 3px 12px;
    white-space: nowrap;
  }
  .area-fora {
    background: var(--bg-section);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }
  .area-fora p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
  .btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
  }
  .btn-wpp:hover { background: #1ebe5a; }

  /* ── RESPONSIVO ── */
  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: block; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }