/* ============================================================
   ORTHOBONE INC. — GLOBAL STYLES
   ============================================================ */


.hero {  background-image: url("../assets/banner-hero-service.webp");}

.ph-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.ph-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── STATEMENT BAND ── */
.statement-band { background: var(--blue-mid); padding: 40px 0; }
.statement-inner { max-width: 1600px; margin: 0 auto; padding: 0 80px; align-items: center; }
.statement-icon { width: 56px; height: 56px; background: rgba(232,184,0,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.statement-text { font-family: var(--font-display); font-size: 25px; color: var(--white); line-height: 1.45; text-align: center; font-weight: 900; }
.statement-text em { font-style: italic; color: var(--gold-light); }
@media (max-width: 850px) {
  .statement-inner { padding: 0 20px;}
  .statement-text { font-size: 20px;}
}

  /* ── DEPARTMENTS ── */
.dept-section { padding: 80px 0; background: white; }
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.dept-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; overflow: hidden; transition: all 0.25s; cursor: default; }

.dept-card.blue  { background: var(--blue-deep);}
.dept-card.gold  { background: var(--gold);}

.dept-card.blue .dc-title { font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 15px; letter-spacing: 0.7px; font-family: var(--font-display); }
.dept-card.blue .dc-desc { font-size: 15px; color: var(--white); line-height: 1.6;}

.dept-card.gold .dc-title { font-size: 18px; font-weight: 900; color: var(--blue-deep); margin-bottom: 15px; letter-spacing: 0.7px; font-family: var(--font-display); }
.dept-card.gold .dc-desc { font-size: 15px; color: var(--blue-deep); line-height: 1.6;}

/* .dc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 1; } */
.dc-icon { border-radius: 12px; display: flex; margin: 0 auto 20px auto; }
.dc-icon svg { width: 26px; }



/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  cursor: default;
  background: white;
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover .sc-img-overlay { opacity: 1; }

.sc-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.sc-img-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: inherit;
}

.sc-img-overlay {
  position: absolute; inset: 0;
  background: rgba(27,62,130,0.2);
  opacity: 0;
  transition: opacity 0.25s;
}

.sc-body { padding: 24px 24px 28px; }

.sc-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.sc-desc {
  font-size: 15px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-link:hover { gap: 8px; }

.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-mid); border: 1px solid var(--blue-pale); }


/* ── FEATURE BAND ── */
.feature-band .section-inner {
  position: relative;
  z-index: 2;
}

.feature-band {
  background: var(--blue-deep);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.feature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5,20,45,0.9), rgba(5,20,45,0.9)),
    url('../assets/banner-elegirnos.webp') center/cover no-repeat;
  z-index: 0;
}

.feature-band::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(232,184,0,0.05);
  right: -200px;
  top: -200px;
  z-index: 1;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fb-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fb-title em { font-style: italic; color: var(--gold-light); }

.fb-desc {
  font-size: 16px;
  color: var(--text-white);
  line-height: 1.8;
  margin-bottom: 32px;
}

.fb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.fb-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.fb-cta {
  background: var(--gold);
  color: var(--blue-deep);
  border: none;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.fb-cta:hover { background: var(--blue-mid); color: var(--white)}

.fb-checklist { display: flex; flex-direction: column; gap: 0; }

.fb-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fb-check:last-child { border-bottom: none; }

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232,184,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.check-icon svg { width: 24px; }

.check-title { font-size: 16px; font-weight: 600; color: white; margin-bottom: 4px; }

.check-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-top: 12px; }




  /* ── PROCESS SECTION ── */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--gray-300);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ps-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.25s;
}

.process-step:hover .ps-bubble {
  border-color: var(--blue-mid);
  background: var(--blue-soft);
}

.ps-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.ps-desc {
  font-size: 12px;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* ── MOBILE ───────────────────────── */

@media (max-width: 849px) {
  .process-steps {
    grid-template-columns: 1fr;   /* una columna */
    row-gap: 32px;
  }

  .process-steps::before {
    display: none;                /* sin línea horizontal */
  }

  .process-step {
    text-align: left;
    padding: 1rem 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
  }

  .ps-bubble {
    margin: 0 0 12px 0;           /* burbuja arriba, alineada a la izquierda */
  }
}




/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.ph-eyebrow { animation: fadeUp 0.5s ease 0.1s both; }
.ph-title { animation: fadeUp 0.5s ease 0.2s both; }
.ph-desc { animation: fadeUp 0.5s ease 0.3s both; }
.ph-chips { animation: fadeUp 0.5s ease 0.4s both; }
.hero-stats-wrap { animation: fadeUp 0.6s ease 0.3s both; }