/* ============================================================
   HART — parceiros.css
   ============================================================ */

body { background: var(--white); }
.p-container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }

/* ── Shared section header ── */
.p-section-header { text-align: center; margin-bottom: 64px; }
.p-section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: var(--dark); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 14px;
}
.p-section-title em { color: var(--green); font-style: italic; }
.p-section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; max-width: 500px; margin: 0 auto; }

/* ═══ HERO ═══ */
.p-hero {
  background: var(--dark);
  padding: 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.p-hero-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.p-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-muted);
  margin-bottom: 28px;
}
.p-eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--green-muted); border-radius: 50%; }
.p-hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 78px); font-weight: 700;
  line-height: 1.05; letter-spacing: -2.5px; color: #fff;
  margin-bottom: 20px; white-space: nowrap;
}
.p-hero-headline em { font-style: italic; color: var(--gold-light); }
.p-hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.50); max-width: 520px;
  margin: 0 auto 40px;
}
.p-hero-actions { display: flex; gap: 14px; align-items: center; justify-content: center; }

.btn-cta-pill {
  padding: 0 8px 0 28px; height: 52px;
  font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600;
  background: #fff; color: var(--dark); border: none; border-radius: 999px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 14px;
  transition: all 0.25s; text-decoration: none;
}
.btn-cta-pill:hover { background: #F0EFEC; transform: translateY(-1px); }
.pill-arrow {
  width: 36px; height: 36px; background: rgba(25,35,24,0.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pill-arrow svg { width: 14px; height: 14px; stroke: var(--dark); }
.btn-outline-pill {
  padding: 14px 24px;
  font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 500;
  background: transparent; color: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-outline-pill:hover { color: #fff; border-color: rgba(255,255,255,0.40); }

/* ═══ TIPOS ═══ */
.p-tipos { padding: 120px 0; background: var(--white); }
.p-tipos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.p-tipo-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
}
.p-tipo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.p-tipo-card.destaque { background: var(--dark); border-color: var(--dark); }

.p-tipo-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 4px;
}
.p-tipo-icon svg { width: 20px; height: 20px; }
.p-tipo-card.destaque .p-tipo-icon { background: rgba(255,255,255,0.10); color: var(--green-muted); }

.p-tipo-tag {
  display: inline-flex; padding: 3px 10px;
  background: rgba(45,90,39,0.08); color: var(--green);
  border-radius: 100px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; width: fit-content;
}
.p-tipo-card.destaque .p-tipo-tag { background: rgba(143,184,135,0.18); color: var(--green-muted); }

.p-tipo-title { font-size: 19px; font-weight: 700; color: var(--dark); letter-spacing: -0.4px; }
.p-tipo-card.destaque .p-tipo-title { color: #fff; }

.p-tipo-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); flex: 1; }
.p-tipo-card.destaque .p-tipo-desc { color: rgba(255,255,255,0.45); }

.p-tipo-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.p-tipo-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); font-weight: 500;
  padding-left: 16px; position: relative;
}
.p-tipo-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green-muted);
}
.p-tipo-card.destaque .p-tipo-list li { color: rgba(255,255,255,0.70); }

/* ═══ PASSO A PASSO ═══ */
.p-como { padding: 120px 0; background: var(--white); }
.p-como .p-section-header { text-align: center; margin-bottom: 56px; }
.p-como .p-section-title { font-size: clamp(32px, 4vw, 56px); }

.p-steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.p-step-card {
  background: var(--cream); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s;
}
.p-step-card:hover { background: #EDE9E1; }
.p-step-n {
  font-family: "Playfair Display", serif;
  font-size: 48px; font-weight: 700;
  color: #BBBBBB; letter-spacing: -2px; line-height: 1;
  margin-bottom: 8px;
}
.p-step-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); letter-spacing: -0.2px; }
.p-step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ═══ CATEGORIAS ═══ */
.p-categorias { padding: 120px 0; background: var(--white); }
.p-cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.p-cat-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
}
.p-cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.p-cat-card.destaque { background: var(--cream); border-color: var(--border); border-width: 1px; }

.p-cat-badge {
  display: inline-flex; padding: 3px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; width: fit-content; margin-bottom: 4px;
}
.p-cat-badge.bronze  { background: #F5EDD8; color: #8B6914; }
.p-cat-badge.prata   { background: #EBEBEB; color: #666; }
.p-cat-badge.ouro    { background: #FFF3CD; color: #92710E; }
.p-cat-badge.platina { background: #EAE8FF; color: #4B3F9E; }

.p-cat-mult {
  font-family: "Playfair Display", serif;
  font-size: 52px; font-weight: 700;
  color: var(--dark); letter-spacing: -2px; line-height: 1;
}
.p-cat-mult span { font-size: 28px; }
.p-cat-mult-label { font-size: 12px; color: var(--text-muted); margin-top: -4px; }
.p-cat-divider { height: 1px; background: var(--border); margin: 8px 0; }

.p-cat-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  margin-bottom: 4px;
}
.p-cat-req {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  text-align: right; line-height: 1.4;
}
.p-cat-req span { color: var(--text-muted); opacity: 0.6; }

.p-cat-inherits {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--green); margin-bottom: 10px;
}

.p-cat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }

.p-cat-li-check, .p-cat-li-new {
  font-size: 13px; color: var(--text-muted);
  padding-left: 20px; position: relative; line-height: 1.45;
}
.p-cat-li-check::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 12px; height: 8px;
  border-left: 2px solid var(--green-muted);
  border-bottom: 2px solid var(--green-muted);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.p-cat-li-new::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  font-size: 11px; font-weight: 700;
  color: var(--green); line-height: 1.45;
}

.p-cat-activate {
  margin-top: auto; padding-top: 14px;
  font-size: 11.5px; color: var(--text-muted);
  line-height: 1.5; border-top: 1px dashed var(--border);
}

.p-cat-entry {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ═══ FORMULÁRIO ═══ */
.p-form-section { padding: 120px 0; background: var(--white); }
.p-form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.p-form-copy-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; margin-top: 14px; }
.p-trust-list { display: flex; flex-direction: column; gap: 12px; }
.p-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 500; }
.p-trust-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.p-form-card { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.p-form-card-title { font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; margin-bottom: 4px; }
.p-form-card-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.p-tipo-toggle {
  display: flex; gap: 6px; background: rgba(0,0,0,0.05);
  border-radius: 12px; padding: 4px; margin-bottom: 20px;
}
.p-tipo-btn {
  flex: 1; padding: 8px 12px;
  font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 500;
  background: transparent; color: var(--text-muted);
  border: none; border-radius: 9px; cursor: pointer; transition: all 0.2s;
}
.p-tipo-btn.active {
  background: var(--white); color: var(--dark); font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.p-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.p-form-label {
  font-size: 11.5px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.p-form-input {
  width: 100%; padding: 11px 14px;
  font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); border: 1px solid rgba(0,0,0,0.10);
  border-radius: 11px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-form-input::placeholder { color: #C0C0C5; }
.p-form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,39,0.10); }
.p-form-textarea { resize: vertical; min-height: 90px; }

.p-corretor-toggle {
  margin-bottom: 14px; padding: 12px 14px;
  background: rgba(45,90,39,0.05); border: 1px solid rgba(45,90,39,0.12); border-radius: 11px;
}
.p-corretor-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 14px; font-weight: 500; color: var(--dark); user-select: none;
}
.p-corretor-label input[type="checkbox"] { display: none; }
.p-corretor-box {
  width: 18px; height: 18px; border: 1.5px solid rgba(0,0,0,0.20);
  border-radius: 5px; flex-shrink: 0; background: var(--white);
  transition: background 0.2s, border-color 0.2s; position: relative;
}
.p-corretor-label input:checked ~ .p-corretor-box { background: var(--dark); border-color: var(--dark); }
.p-corretor-label input:checked ~ .p-corretor-box::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg);
}
.p-corretor-fields {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.p-corretor-fields > div { min-height: 0; }
.p-corretor-fields.open { grid-template-rows: 1fr; }

.p-btn-submit {
  width: 100%; padding: 0 8px 0 24px; height: 52px;
  font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600;
  background: var(--dark); color: #fff; border: none; border-radius: 999px;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.2s, transform 0.15s; margin-top: 8px;
}
.p-btn-submit:hover { background: var(--green); transform: translateY(-1px); }
.p-btn-arrow {
  width: 36px; height: 36px; background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.p-btn-arrow svg { width: 14px; height: 14px; stroke: #fff; }

/* ═══ FAQ ═══ */
.p-faq { padding: 120px 0; background: var(--white); }
.p-faq-inner { max-width: 760px; margin: 0 auto; }
.p-faq-list { display: flex; flex-direction: column; }
.p-faq-item { border-bottom: 1px solid var(--border); }
.p-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--dark); gap: 16px; transition: color 0.2s;
}
.p-faq-q:hover { color: var(--green); }
.p-faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted); font-weight: 300;
  background: var(--white); transition: all 0.25s;
}
.p-faq-item.open .p-faq-icon { background: var(--dark); color: #fff; border-color: var(--dark); transform: rotate(45deg); }
.p-faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease;
  overflow: hidden; padding-bottom: 0;
}
.p-faq-a > div { min-height: 0; font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.p-faq-item.open .p-faq-a { grid-template-rows: 1fr; padding-bottom: 18px; }

/* ═══ CTA SECTION ═══ */
.p-cta-section {
  padding: 0 60px 140px;
  background: var(--white);
  text-align: center;
}
.p-cta-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  color: var(--dark); line-height: 1.1; letter-spacing: -2px; margin-bottom: 18px;
}
.p-cta-headline em { color: var(--green); font-style: italic; }
.p-cta-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 460px; margin: 0 auto 36px; }
.p-cta-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

.cta-eyebrow {
  display: inline-flex; padding: 5px 16px; background: transparent;
  border: 1px solid var(--border); border-radius: 100px; font-size: 11px;
  font-weight: 600; color: var(--text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 28px;
}
.btn-cta-gold {
  padding: 0 8px 0 28px; height: 56px;
  font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600;
  background: var(--gold-light); color: var(--dark); border: none; border-radius: 999px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 16px;
  transition: all 0.25s; text-decoration: none; letter-spacing: -0.2px;
}
.btn-cta-gold .btn-arrow {
  width: 40px; height: 40px; background: rgba(25,35,24,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.btn-cta-gold .btn-arrow svg { width: 16px; height: 16px; stroke: var(--dark); }
.btn-cta-gold:hover { background: #ece69d; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(216,219,142,0.25); }


/* ═══ VENDEDOR CTA ═══ */
.p-vendedor-section {
  padding: 120px 60px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border);
}
.p-vendedor-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.p-eyebrow-light {
  display: inline-block; padding: 4px 14px;
  background: rgba(45,90,39,0.08); border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
}
.p-vendedor-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  color: var(--dark); line-height: 1.05; letter-spacing: -2px;
}
.p-vendedor-title em { font-style: italic; color: var(--green); }
.p-vendedor-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 520px;
}
.p-vendedor-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 4px 0 8px;
}
.p-vendedor-chip {
  padding: 6px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
}

/* ── ANIMAÇÕES ── */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }
[data-animate][data-delay="1"] { transition-delay: 0.10s; }
[data-animate][data-delay="2"] { transition-delay: 0.20s; }
[data-animate][data-delay="3"] { transition-delay: 0.30s; }
[data-animate][data-delay="4"] { transition-delay: 0.40s; }

/* Vendedor CTA pill on white bg */
.p-vendedor-section .btn-cta-pill {
  background: var(--dark);
  color: #fff;
}
.p-vendedor-section .btn-cta-pill:hover { background: var(--green); }
.p-vendedor-section .pill-arrow { background: rgba(255,255,255,0.15); }
.p-vendedor-section .pill-arrow svg { stroke: #fff; }

/* Note below categories */
.p-cat-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — iPhone / ≤768px
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .p-container { padding: 0 20px; }

  /* Hero */
  .p-hero { padding: 96px 20px 64px; min-height: auto; }
  .p-hero-headline { white-space: normal; font-size: clamp(36px, 10vw, 56px); letter-spacing: -1.5px; }
  .p-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-cta-pill, .btn-outline-pill { width: 100%; justify-content: center; }

  /* Tipos */
  .p-tipos { padding: 64px 0; }
  .p-tipos-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Cat grid */
  .p-cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Form section */
  .p-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .p-form-row { grid-template-columns: 1fr; }

  /* Vendedor section */
  .p-vendedor-section { padding: 64px 20px; }

  /* Como Funciona */
  .p-como { padding: 64px 0; }
  .p-steps-grid { grid-template-columns: 1fr; border-radius: 14px; }

  /* FAQ */
  .p-faq { padding: 64px 0; }

  /* CTA */
  .p-cta-section { padding: 0 20px 80px; }
  .p-cta-headline { font-size: clamp(28px, 8vw, 44px); }

  /* Btn gold */
  .btn-cta-gold { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .p-tipos-grid { grid-template-columns: 1fr; }
  .p-cat-grid { grid-template-columns: 1fr; }
}
