/* Landing precios certificado — scope: .cert-pricing-page */
.cert-pricing-page {
  --cp-navy: #07285a;
  --cp-text: #0b2347;
  --cp-muted: #526079;
  --cp-line: #e6ebf3;
  --cp-bg: #f5f9ff;
  --cp-green: #16a34a;
  --cp-green-soft: #e9f8ee;
  font-family: Inter, Arial, sans-serif;
  color: var(--cp-text);
  background: var(--cp-bg);
  padding: 40px 20px 56px;
}

.cert-pricing-page * {
  box-sizing: border-box;
}

.cert-pricing-page .cp-container {
  max-width: 1200px;
  margin: auto;
}

.cert-pricing-page .cp-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.cert-pricing-page .cp-hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--cp-navy);
  font-weight: 900;
}

.cert-pricing-page .cp-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #233b5d;
  margin: 0;
}

.cert-pricing-page .cp-hero-img {
  background: linear-gradient(135deg, #e6f2ff, #ffffff);
  border-radius: 28px;
  padding: 20px;
  text-align: center;
}

.cert-pricing-page .cp-hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}

.cert-pricing-page .cp-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.cert-pricing-page .cp-benefit {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Iconos compactos y del mismo tamaño */
.cert-pricing-page .cp-benefit-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1edff;
  color: #5b35f5;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(91, 53, 245, 0.1);
}

.cert-pricing-page .cp-benefit-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.cert-pricing-page .cp-benefit-icon--linkedin {
  background: #0077b5;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.18);
}

.cert-pricing-page .cp-benefit strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--cp-navy);
}

.cert-pricing-page .cp-benefit p {
  margin: 0;
  font-size: 14px;
  color: var(--cp-muted);
  line-height: 1.5;
  max-width: 240px;
}

.cert-pricing-page .cp-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  margin-bottom: 40px;
}

.cert-pricing-page .cp-certificate-preview {
  background: linear-gradient(135deg, #002b66, #004aad);
  border-radius: 24px;
  padding: 30px;
  color: white;
}

.cert-pricing-page .cp-certificate-preview h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
}

.cert-pricing-page .cp-certificate-frame {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.cert-pricing-page .cp-certificate-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.28));
}

.cert-pricing-page .cp-preview-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.cert-pricing-page .cp-preview-feature {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 14px 10px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cert-pricing-page .cp-preview-feature span {
  line-height: 1.3;
}

/* Mismos iconos que la landing /certificados (.cert-icon en detalle) */
.cert-pricing-page .cp-cert-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1edff;
  color: #5b35f5;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(91, 53, 245, 0.12);
  flex-shrink: 0;
}

.cert-pricing-page .cp-price-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cert-pricing-page .cp-price-box h2 {
  font-size: 30px;
  margin: 0 0 12px;
  color: var(--cp-navy);
}

.cert-pricing-page .cp-price-box > p {
  margin: 0;
  color: var(--cp-muted);
  line-height: 1.5;
}

.cert-pricing-page .cp-country-label {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
}

.cert-pricing-page .cp-country-select-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 22px;
}

.cert-pricing-page .cp-country-flag-img {
  width: 32px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(7, 27, 58, 0.12);
  border: 1px solid #d8e2ef;
}

.cert-pricing-page .cp-country-select {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #c8d4e3;
  font-size: 17px;
  margin: 0;
  background: #fff;
  color: var(--cp-text);
}

.cert-pricing-page .cp-price-display {
  background: var(--cp-green-soft);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  margin-bottom: 24px;
}

.cert-pricing-page .cp-price-display small {
  color: #2d5f3b;
  display: block;
  font-size: 14px;
}

.cert-pricing-page .cp-price-display strong {
  display: block;
  font-size: 40px;
  color: #139447;
  margin: 8px 0;
  font-weight: 900;
}

.cert-pricing-page .cp-price-display span {
  font-size: 14px;
  color: #2d5f3b;
}

.cert-pricing-page .cp-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.cert-pricing-page .cp-check-list li {
  margin-bottom: 13px;
  font-size: 16px;
}

.cert-pricing-page .cp-check-list li::before {
  content: "✓";
  color: var(--cp-green);
  font-weight: bold;
  margin-right: 8px;
}

.cert-pricing-page .cp-btn-main {
  display: block;
  width: 100%;
  background: var(--cp-green);
  color: white;
  text-align: center;
  padding: 17px;
  border-radius: 12px;
  border: 0;
  font-weight: bold;
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  cursor: default;
}

.cert-pricing-page .cp-secure-note {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: var(--cp-muted);
}

.cert-pricing-page .cp-how {
  background: white;
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 40px;
}

.cert-pricing-page .cp-how h2,
.cert-pricing-page .cp-faq h2 {
  text-align: center;
  font-size: 30px;
  margin: 0 0 30px;
  color: var(--cp-navy);
}

.cert-pricing-page .cp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cert-pricing-page .cp-step {
  text-align: center;
}

.cert-pricing-page .cp-step-icon {
  width: 70px;
  height: 70px;
  background: #e8f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 30px;
}

.cert-pricing-page .cp-step h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.cert-pricing-page .cp-step p {
  margin: 0;
  font-size: 14px;
  color: var(--cp-muted);
  line-height: 1.5;
}

.cert-pricing-page .cp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.cert-pricing-page .cp-faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.cert-pricing-page .cp-faq-item strong {
  display: block;
  margin-bottom: 8px;
}

.cert-pricing-page .cp-faq-item p {
  margin: 0;
  color: var(--cp-muted);
  line-height: 1.5;
  font-size: 15px;
}

.cert-pricing-page .cp-final-cta {
  background: linear-gradient(135deg, #002b66, #0054c7);
  color: white;
  border-radius: 24px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cert-pricing-page .cp-final-cta h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.cert-pricing-page .cp-final-cta p {
  margin: 0;
  opacity: 0.92;
}

.cert-pricing-page .cp-final-cta .cp-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #003b84;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: bold;
  border: 0;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cert-pricing-page .cp-final-cta .cp-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.15);
}

@media (max-width: 900px) {
  .cert-pricing-page .cp-hero,
  .cert-pricing-page .cp-main-grid,
  .cert-pricing-page .cp-benefits,
  .cert-pricing-page .cp-steps,
  .cert-pricing-page .cp-faq-grid,
  .cert-pricing-page .cp-preview-features {
    grid-template-columns: 1fr;
  }

  .cert-pricing-page .cp-hero h1 {
    font-size: 34px;
  }

  .cert-pricing-page .cp-final-cta {
    flex-direction: column;
    text-align: center;
  }
}
