/* ============================================================
   Catamount International – Services Page (services.css)
   Complementa home.css con los estilos específicos de servicios
   ============================================================ */

/* ===== SVC HERO ===== */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,32,64,0.45) 0%,
    rgba(22,32,64,0.70) 100%
  );
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 160px 28px 80px;
}

.svc-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.svc-hero__lead {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
}

/* ===== INFO SPLIT (2 columns) ===== */
.info-split {
  padding: 80px 0;
  background: #fff;
}

.info-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #ede8e1;
  border-radius: 16px;
  overflow: hidden;
}

.info-block {
  padding: 48px 44px;
  border-right: 1px solid #ede8e1;
}

.info-block:last-child { border-right: none; }

.info-block__icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 22px;
}

.info-block__icon svg { width: 26px; height: 26px; }

.info-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.info-block__text {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.info-block__link {
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.info-block__link:hover { color: var(--orange); }

/* ===== COMMITMENT ===== */
.commitment-section {
  padding: 80px 28px;
  background: var(--cream);
  text-align: center;
}

.commitment-inner { max-width: 720px; margin: 0 auto; }

.commitment-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== OFFER SECTION ===== */
.offer-section {
  padding: 80px 0;
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.offer-col {
  background: var(--cream);
  border-radius: 14px;
  padding: 36px 36px 36px;
}

.offer-col__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.offer-col__icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.offer-col__icon svg { width: 22px; height: 22px; }

.offer-col__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-list li {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.resources-section .section-title--serif { margin-bottom: 18px; }

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  border: 1px solid #e8e2d9;
  transition: box-shadow 0.25s, transform 0.25s;
}

.resource-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.resource-card--dark {
  background: var(--navy);
  border-color: var(--navy);
}

.resource-card--dark .resource-card__title,
.resource-card--dark .resource-card__text { color: rgba(255,255,255,0.9); }

.resource-card--dark .catademic-logo { color: var(--orange); }

.resource-card__icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.resource-card__icon svg { width: 22px; height: 22px; }

.resource-card__body { flex: 1; }

.catademic-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.resource-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.resource-card__text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.resource-card__img {
  width: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.resource-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== PERSONALIZED CTA ===== */
.cta-section { padding: 60px 28px; }

.personalized-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.personalized-cta__icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.personalized-cta__icon svg { width: 24px; height: 24px; }

.personalized-cta .cta-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.personalized-cta .cta-lead {
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}

.personalized-cta .btn { margin-left: auto; white-space: nowrap; }

/* ===== NAV ACTIVE ===== */
.site-header.scrolled .nav-active,
.site-header.site-header--solid .nav-active { color: var(--orange) !important; }

/* ============================================================
   DL – Distribuidores y Librerías (full-width hero + offer split)
   ============================================================ */

/* ----- DL HERO (background full-width with gradient overlay) ----- */
.dl-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.dl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 23, 48, 0.92) 0%,
    rgba(13, 23, 48, 0.78) 30%,
    rgba(13, 23, 48, 0.35) 60%,
    rgba(13, 23, 48, 0) 100%
  );
}

.dl-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 170px 28px 100px;
}

.dl-hero__content { max-width: 620px; }

.dl-hero__tag {
  display: inline-block;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.dl-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 22px;
}

.dl-hero .hero-divider {
  width: 64px;
  height: 3px;
  background: var(--orange);
  margin: 0 0 22px 0;
}

.dl-hero__lead {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  max-width: 520px;
}

/* ----- DL OFFER (Qué ofrecemos: contenido + imagen) ----- */
.dl-offer {
  padding: 80px 0;
  background: #fff;
}

.dl-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dl-offer__icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.dl-offer__icon svg { width: 26px; height: 26px; }

.dl-offer__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.dl-offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dl-offer__list li {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.dl-offer__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.dl-offer__img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(13, 23, 48, 0.10);
}

.dl-offer__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- DL Resource cards: imagen más grande ----- */
.resources-grid .resource-card__img--lg {
  width: 200px;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.resources-grid .resource-card__img--lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ----- DL Responsive ----- */
@media (max-width: 900px) {
  .dl-offer__grid { grid-template-columns: 1fr; gap: 36px; }
  .dl-hero__inner { padding: 140px 22px 70px; }
  .dl-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(13, 23, 48, 0.85) 0%,
      rgba(13, 23, 48, 0.7) 60%,
      rgba(13, 23, 48, 0.55) 100%
    );
  }
  .resources-grid .resource-card__img--lg { width: 100%; }
}

@media (max-width: 600px) {
  .dl-hero { min-height: 70vh; }
  .dl-hero__inner { padding: 120px 20px 60px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .info-split__grid,
  .offer-grid,
  .resources-grid { grid-template-columns: 1fr; }

  .info-block { border-right: none; border-bottom: 1px solid #ede8e1; }
  .info-block:last-child { border-bottom: none; }

  .resource-card { flex-direction: column; }
  .resource-card__img { width: 100%; }

  .personalized-cta { flex-direction: column; text-align: center; }
  .personalized-cta .btn { margin-left: 0; }
}

@media (max-width: 600px) {
  .svc-hero__content { padding: 120px 20px 60px; }
  .info-block { padding: 32px 24px; }
  .offer-col { padding: 28px 24px; }
}
