/* =========================
   PRODE-EMPRESA.CSS
   Estilos específicos para la página de Prode Empresa
   Consistente con styles.css del index y assistants.css
   ========================= */

/* =========================
   HERO PRODE
   Extiende .hero--new de styles.css
   ========================= */

.hero--new.hero--prode {
  min-height: auto;
  padding: 80px 0 20px;
  background: var(--brand-mixed) !important;
}

.hero--prode .hero-bg-pattern {
  background-image: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 220px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.02em;
  word-break: break-all;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.hero--prode .hero-bg-pattern::before {
  content: "brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia brackia";
  display: block;
}

.hero--prode .hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero--prode .hero-title-new {
  font-size: clamp(36px, 9vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero--prode .hero-title-new span {
  font-weight: 800;
}

.hero--prode .hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 480px;
}

.hero--prode .hero-subtitle strong {
  font-weight: 700;
  color: var(--white);
}

.hero--prode .hero-cta {
  margin-top: 24px;
}

.hero--prode .btn-primary {
  background: var(--gold-600);
  color: var(--texto);
  border: 2px solid var(--gold-600);
}

.hero--prode .btn-primary:hover {
  background: var(--white);
  color: var(--gold-600);
  border-color: var(--gold-600);
}

.hero--prode .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero--prode .glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero--prode .glass-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
}

.hero--prode .glass-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero--prode .glass-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.hero--prode .glass-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 700;
}

/* =========================
   SECCIONES
   ========================= */

.prode-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.prode-section-head .section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brand-mixed);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.prode-section-head .section-title strong {
  font-weight: 800;
}

.prode-section-head .section-subtitle {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--texto);
  line-height: 1.65;
  margin: 0;
  opacity: 0.85;
}

/* Flecha animada naranja */
.hero-arrow {
  margin-top: -80px;
  display: flex;
  justify-content: center;
  margin-bottom: -24px;
}

.hero-arrow-icon {
  width: 120px;
  height: 120px;
  color: var(--gold-600);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 4px;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(12px); }
  60% { transform: translateY(6px); }
}

/* Secciones más compactas */
.hero--prode ~ .section,
body:has(.hero--prode) .section {
  padding: 40px 0;
}

/* =========================
   QUE ES - Content
   ========================= */

.prode-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.prode-content p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--texto);
  margin: 0 0 16px;
}

.prode-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   COMO FUNCIONA - Steps
   ========================= */

.prode-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.prode-step {
  text-align: center;
  padding: 32px 24px;
}

.prode-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--brand-mixed);
  color: var(--white);
  font-size: var(--fs-lg);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.prode-step h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--brand-mixed);
  margin: 0 0 12px;
}

.prode-step p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--texto);
  margin: 0;
  opacity: 0.85;
}

/* =========================
   PLANES
   ========================= */

.prode-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.prode-plan-card {
  background: var(--white);
  border: 1px solid rgba(46, 68, 112, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.prode-plan-card:hover {
  border-color: var(--gold-600);
  box-shadow: 0 8px 32px rgba(253, 193, 52, 0.15);
  transform: translateY(-4px);
}

.prode-plan-card--premium {
  border-color: var(--brand-mixed);
  background: linear-gradient(135deg, rgba(46, 68, 112, 0.02) 0%, rgba(109, 123, 255, 0.04) 100%);
}

.prode-plan-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--brand-mixed);
  margin: 0 0 8px;
}

.prode-plan-card .plan-desc {
  font-size: var(--fs-sm);
  color: var(--texto);
  opacity: 0.75;
  margin: 0 0 16px;
  line-height: 1.5;
}

.prode-plan-card .plan-price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--gold-600);
  margin: 0 0 20px;
}

.prode-plan-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.prode-plan-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: var(--fs-sm);
  color: var(--texto);
  line-height: 1.5;
}

.prode-plan-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-mixed);
  font-weight: 700;
}

.prode-plan-card .btn {
  width: 100%;
  text-align: center;
}

/* =========================
   CTA FINAL
   ========================= */

.prode-cta-section {
  text-align: center;
  padding: 60px 0;
}

.prode-cta-section .section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  color: var(--brand-mixed);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.prode-cta-section .section-title strong {
  font-weight: 800;
}

.prode-cta-section .section-subtitle {
  font-size: var(--fs-base);
  color: var(--texto);
  opacity: 0.85;
  margin: 0 0 32px;
  line-height: 1.6;
}

.prode-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.prode-cta-buttons .btn {
  min-width: auto;
  height: auto;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
}

.prode-cta-buttons .btn--cta-blue {
  background: var(--cta-primary);
  color: var(--white);
  border: 2px solid var(--cta-primary);
}

.prode-cta-buttons .btn--cta-blue:hover {
  background: var(--white);
  color: var(--cta-primary);
}

.prode-cta-buttons .btn--cta-yellow {
  background: transparent;
  color: var(--brand-mixed);
  border: 2px solid var(--brand-mixed);
}

.prode-cta-buttons .btn--cta-yellow:hover {
  background: var(--brand-mixed);
  color: var(--white);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .hero--prode {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero--prode .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero--prode .hero-subtitle {
    max-width: 100%;
  }

  .hero--prode .hero-visual {
    order: -1;
  }

  .prode-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .prode-plans {
    grid-template-columns: 1fr;
  }

  .prode-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero--prode .hero-title-new {
    font-size: clamp(32px, 10vw, 48px);
  }
}
