/* ========================================
   PLANES HERO
   ======================================== */
.planes-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('img/prism.webp') repeat, #1B263B;
  padding-top: 80px;
  overflow: hidden;
}

.planes-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.6) 0%,
    rgba(27, 38, 59, 0.4) 50%,
    rgba(13, 27, 42, 0.7) 100%
  );
}

.planes-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 60px 24px;
}

.planes-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #E0E1DD;
  line-height: 1.1;
  margin-bottom: 20px;
}

.planes-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #778DA9;
  font-weight: 300;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ========================================
   PLANS SECTION
   ======================================== */
.planes-section {
  padding: 80px 0 100px;
  background: #E0E1DD;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* ========================================
   PLAN CARD
   ======================================== */
.plan-card {
  position: relative;
  background: linear-gradient(145deg, #3a8a6e 0%, #2d7a5e 50%, #266b52 100%);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.plan-card--featured {
  background: linear-gradient(145deg, #2e8b6a 0%, #1f7a57 50%, #186848 100%);
  padding: 52px 32px;
  transform: scale(1.03);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
}

.plan-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E1DD;
  color: #1B263B;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.plan-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 28px;
}

.plan-cta {
  display: inline-block;
  background: #fff;
  color: #1B263B;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  padding: 12px 32px;
  border-radius: 50px;
  margin-bottom: 32px;
  transition: background 0.3s ease, color 0.3s ease;
}

.plan-cta:hover {
  background: #1B263B;
  color: #fff;
}

.plan-features {
  list-style: none;
  width: 100%;
  text-align: left;
}

.plan-features li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 24px;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* ========================================
   PLANES NOTE
   ======================================== */
.planes-note {
  text-align: center;
  margin-top: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #415A77;
  font-weight: 400;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .planes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .plan-card {
    padding: 36px 24px;
  }

  .plan-card--featured {
    transform: none;
    padding: 40px 24px;
  }

  .plan-card--featured:hover {
    transform: translateY(-6px);
  }

  .plan-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .planes-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .planes-hero {
    min-height: 320px;
  }

  .planes-hero-content {
    padding: 40px 24px;
  }

  .plan-card {
    padding: 36px 24px;
  }

  .plan-card--featured {
    padding: 40px 24px;
  }

  .plan-card h3 {
    font-size: 1.3rem;
  }
}
