/* ==========================================================================
   EU ESTUDO EAD - CUSTOM OVERRIDES (High Specificity)
   ========================================================================== */

/* ============================================
   HEADER MENU FIX
   ============================================ */
.site-header .header__menu .header__menu-item .header__menu-link {
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  text-decoration: none;
}

.site-header .header__menu .header__menu-item .header__menu-link:hover {
  color: #2563EB;
  background: #F3F4F6;
}

.site-header .header__menu .header__menu-item.is-active .header__menu-link {
  color: #374151;
  background: transparent;
}

/* ============================================
   PACKAGE CARDS - COMPLETE REWRITE
   ============================================ */
section.eead-packages .eead-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  section.eead-packages .eead-packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

section.eead-packages .eead-package-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.eead-packages .eead-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

section.eead-packages .eead-package-card.eead-package-card--featured {
  border: 3px solid #2563EB;
}

section.eead-packages .eead-package-card .eead-package-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

section.eead-packages .eead-package-card .eead-package-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.eead-packages .eead-package-card .eead-package-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2563EB;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

section.eead-packages .eead-package-card .eead-package-card__header {
  padding: 24px 24px 0;
}

section.eead-packages .eead-package-card .eead-package-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

section.eead-packages .eead-package-card .eead-package-card__description {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
  min-height: 66px;
}

section.eead-packages .eead-package-card .eead-package-card__price {
  padding: 20px 24px;
}

section.eead-packages .eead-package-card .eead-package-card__price-value {
  font-size: 40px;
  font-weight: 800;
  color: #2563EB;
}

section.eead-packages .eead-package-card .eead-package-card__price-suffix {
  font-size: 16px;
  color: #6B7280;
}

section.eead-packages .eead-package-card .eead-package-card__features {
  padding: 0 24px;
  margin: 0;
  list-style: none;
  flex: 1 1 auto;
}

section.eead-packages .eead-package-card .eead-package-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #F3F4F6;
  font-size: 14px;
  color: #374151;
}

section.eead-packages .eead-package-card .eead-package-card__features li:first-child {
  border-top: none;
}

section.eead-packages .eead-package-card .eead-package-card__features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #10B981;
}

/* BUTTON - Maximum specificity */
section.eead-packages .eead-package-card a.eead-btn.eead-btn--block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

section.eead-packages .eead-package-card a.eead-btn.eead-btn--outline.eead-btn--block {
  background: #fff;
  border: 2px solid #E5E7EB;
  color: #374151;
}

section.eead-packages .eead-package-card a.eead-btn.eead-btn--outline.eead-btn--block:hover {
  border-color: #2563EB;
  color: #2563EB;
  background: #EEF2FF;
}

section.eead-packages .eead-package-card a.eead-btn.eead-btn--primary.eead-btn--block {
  background: #2563EB;
  border: 2px solid #2563EB;
  color: #fff;
}

section.eead-packages .eead-package-card a.eead-btn.eead-btn--primary.eead-btn--block:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
section.eead-testimonials .eead-testimonials__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10px;
  margin: 0 -10px;
  -webkit-overflow-scrolling: touch;
}

section.eead-testimonials .eead-testimonials__carousel::-webkit-scrollbar {
  height: 6px;
}

section.eead-testimonials .eead-testimonials__carousel::-webkit-scrollbar-track {
  background: #E5E7EB;
  border-radius: 3px;
}

section.eead-testimonials .eead-testimonials__carousel::-webkit-scrollbar-thumb {
  background: #9CA3AF;
  border-radius: 3px;
}

section.eead-testimonials .eead-testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   WHATSAPP CONTACT
   ============================================ */
section.eead-contact .eead-contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

section.eead-contact .eead-contact__whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}
