/* ============================================
   ASSESSORIA REDECORR · page-specific styles
   Depends on css/style.css (variables + base)
   ============================================ */

/* ===== HERO ===== */
.assessoria-hero-sup {
  color: var(--accent);
  text-align: left;
}
.page-hero .page-hero-desc strong {
  color: var(--white);
  font-weight: 600;
}
.assessoria-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .assessoria-hero-actions { justify-content: center; }
}
@media (max-width: 479px) {
  .assessoria-hero-actions .btn { width: 100%; }
}

/* ===== QUEM SOMOS (dores do corretor) ===== */
.dores-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
}
.dores-list li {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  padding: 8px 16px;
}
.split-text .dores-statement { margin-bottom: 12px; }
.split-text .dores-vender {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .split-text .dores-vender { font-size: 40px; }
}

/* ===== VISUAL MOCKUP · funil/dashboard (CSS only) ===== */
.assessoria-visual {
  display: flex;
  justify-content: center;
}
.assessoria-funnel {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(26,58,82,0.08);
}
.assessoria-funnel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.assessoria-funnel-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.assessoria-funnel-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 4px 12px;
}
.assessoria-funnel-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.assessoria-funnel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-med);
}
.assessoria-funnel-track {
  display: block;
  height: 12px;
  background: var(--gray-light);
  border-radius: 100px;
  overflow: hidden;
}
.assessoria-funnel-bar {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
}
.assessoria-funnel-bar-1 { width: 100%; }
.assessoria-funnel-bar-2 { width: 74%; }
.assessoria-funnel-bar-3 { width: 52%; }
.assessoria-funnel-bar-4 { width: 31%; background: linear-gradient(90deg, #16a34a, #4ade80); }
.assessoria-funnel-note {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-border);
  font-size: 13px;
  color: var(--gray-med);
  line-height: 1.5;
}

/* ===== CORE5 PILLARS ===== */
.core5-section { background: var(--white); }
.core5-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.core5-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.core5-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.core5-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.core5-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.core5-card p {
  font-size: 15px;
  color: var(--gray-med);
  line-height: 1.6;
  margin-bottom: 24px;
}
.core5-card .core5-headline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 10px;
}
.core5-card .core5-quote {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
/* .btn-card (style.css) already pushes buttons to the card bottom */

/* ===== VISUAL MOCKUP · mini chat da Academia (CSS only) ===== */
.core5-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(26,58,82,0.05);
}
.core5-chat-bubble {
  font-size: 13px;
  line-height: 1.45;
  padding: 8px 12px;
  max-width: 92%;
}
.core5-chat-cliente {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px 12px 12px 4px;
  color: var(--gray-med);
}
.core5-chat-corretor {
  align-self: flex-end;
  background: var(--accent);
  border-radius: 12px 12px 4px 12px;
  color: var(--white);
}
.core5-chat-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #16a34a;
}
.core5-chat-score::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
}

@media (min-width: 600px) {
  .core5-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .core5-grid .core5-card:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1200px) {
  .core5-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .core5-card { padding: 36px 22px; }
  .core5-card h3 { font-size: 18px; }
  .core5-card p { font-size: 14px; }
  .core5-card .core5-headline { font-size: 15px; }
  .core5-chat { padding: 12px; }
  .core5-chat-bubble { font-size: 12px; max-width: 100%; }
}

/* ===== ECOSSISTEMA (síntese) ===== */
.eco-section { background: var(--gray-light); }
.eco-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.eco-chip {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eco-chip + .eco-chip::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.35;
}
.eco-chip span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: 0 2px 10px rgba(26,58,82,0.05);
  transition: border-color var(--transition), color var(--transition);
}
.eco-chip span:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 767px) {
  .eco-chip + .eco-chip::before { display: none; }
  .eco-chip span { font-size: 13px; padding: 10px 20px; }
}

/* ===== HOW IT WORKS (timeline) ===== */
.steps-section { background: var(--white); }
.steps-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}
.steps-item {
  position: relative;
  padding-left: 64px;
}
.steps-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.steps-item::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: -32px;
  width: 2px;
  background: var(--gray-light2);
}
.steps-item:last-child::before { display: none; }
.steps-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  padding-top: 2px;
}
.steps-item p {
  font-size: 15px;
  color: var(--gray-med);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .steps-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: none;
  }
  .steps-item {
    padding-left: 0;
    text-align: center;
  }
  .steps-num {
    position: static;
    margin: 0 auto 16px;
  }
  .steps-item::before {
    left: calc(50% + 30px);
    top: 21px;
    bottom: auto;
    width: calc(100% - 28px);
    height: 2px;
  }
  .steps-item h3 { padding-top: 0; }
  .steps-item p { font-size: 14px; }
}

/* ===== CTA BANNER ACTIONS ===== */
.assessoria-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.assessoria-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.assessoria-btn-outline:hover,
.assessoria-btn-outline:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
@media (max-width: 479px) {
  .assessoria-cta-actions .btn { width: 100%; }
}
