/* ===== PRODUCT PAGE: NoPrumo Obras ===== */

/* Hero */
.p-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy-light) 0%, #ffffff 45%, var(--orange-light) 100%);
  overflow: hidden;
}

.p-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(242, 140, 40, 0.12), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(43, 164, 224, 0.12), transparent 40%);
  pointer-events: none;
}

.p-hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--orange);
}

.p-hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.p-hero-desc {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 32px;
}

/* Dashboard mock */
.p-hero-visual {
  display: flex;
  justify-content: center;
}

.p-dashboard-mock {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  border: 1px solid rgba(27, 42, 74, 0.08);
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  margin-bottom: 20px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }

.mock-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.mock-stat {
  background: var(--gray-bg);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  padding: 14px;
  background: linear-gradient(180deg, var(--navy-light), #fff);
  border-radius: 14px;
}

.chart-bar {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
}

.chart-bar:nth-child(2n) {
  background: linear-gradient(180deg, var(--blue), #1a8fcc);
}

/* Features */
.p-features {
  background: var(--white);
}

.p-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.p-feature {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--gray-bg);
  border: 1px solid rgba(27, 42, 74, 0.06);
  transition: var(--transition);
}

.p-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.p-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.p-feature h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.p-feature p {
  color: var(--text-light);
  font-size: 0.93rem;
}

/* Benefits */
.p-benefits {
  background: linear-gradient(180deg, var(--navy-light), var(--gray-bg));
}

.p-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.p-benefit {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  border: 1px solid rgba(27, 42, 74, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.p-benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.p-benefit-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.p-benefit h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.p-benefit p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA */
.p-cta {
  background: var(--white);
  padding: 60px 0 100px;
}

.p-cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px;
  padding: 64px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.p-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242, 140, 40, 0.3), transparent 40%);
}

.p-cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.p-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  position: relative;
}

.p-cta-box .hero-buttons {
  justify-content: center;
  position: relative;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Checklist mock (Vistoria) */
.v-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.v-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.v-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ok-icon {
  background: rgba(46, 204, 113, 0.15);
  color: #1e9e57;
}

.warn-icon {
  background: rgba(242, 140, 40, 0.15);
  color: var(--orange-dark);
}

.v-check-info {
  min-width: 0;
}

.v-check-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.v-check-status {
  font-size: 0.78rem;
  color: var(--text-light);
}

.v-check-item.warn .v-check-status {
  color: var(--orange-dark);
}

.v-photos {
  display: flex;
  gap: 10px;
}

.v-photo {
  flex: 1;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-light), #fff);
  border: 1px solid rgba(27, 42, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AcessoCerto Pessoa mock */
.a-hero {
  background: linear-gradient(135deg, var(--navy-light) 0%, #ffffff 45%, rgba(20, 184, 166, 0.14) 100%);
}

.a-hero .p-hero-bg {
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.14), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(43, 164, 224, 0.1), transparent 40%);
}

.a-hero h1 .highlight {
  color: var(--access);
}

.a-person {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), #fff);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.a-person-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.a-person-info {
  flex: 1;
  min-width: 0;
}

.a-person-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.a-person-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.a-person-status {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}

.a-person-status.ok {
  background: rgba(46, 204, 113, 0.15);
  color: #1e9e57;
}

.a-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.a-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .p-hero-content {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .p-hero-desc {
    margin: 0 auto 32px;
  }

  .p-hero-text .back-link {
    display: inline-block;
  }

  .p-features-grid {
    grid-template-columns: 1fr;
  }

  .p-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mock-stats {
    grid-template-columns: 1fr;
  }
}