/* ==========================================================================
   CLÍNICA SÃO LUCAS - ESTILOS DO CATÁLOGO DE ESPECIALIDADES & EXAMES
   ========================================================================== */

@import url('design-system.css');

/* Page Header Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 54, 72, 0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-tag {
  display: inline-block;
  background-color: rgba(184, 54, 72, 0.2);
  color: var(--primary-400);
  border: 1px solid rgba(184, 54, 72, 0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.page-hero-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Quick Search Box */
.catalog-search-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.catalog-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.catalog-search-input::placeholder {
  color: #94a3b8;
}

.catalog-search-input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px rgba(184, 54, 72, 0.25);
}

.catalog-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.05rem;
  pointer-events: none;
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Card Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  color: #ffffff;
  text-align: center;
  margin-top: 4rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #e0f2fe;
  max-width: 580px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}