/* ============================================================
   ORTHOBONE INC. — GLOBAL STYLES
   Fuente: Barlow | Full-width | Fiel al diseño original
   ============================================================ */

 /* ── HERO ── */
.hero {  background-image: url("../assets/banner-hero-home.webp");}

.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
  border: none;
  padding: 13px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  letter-spacing: 0.1px;
  text-decoration: none;
}

.btn-primary:hover { background: var(--blue-mid); color: var(--white)}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

  



/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
  background: white;
}

.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; }


/* ── 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; }


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

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

.delivery-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.22s;
}

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

.dc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.dc-icon svg {
  width: 26px;
}

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

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

/* ── MARCAS ── */
.brands-section {
  padding: 2rem 0 0 0;
  background: #fafafa;
  font-family: "Barlow", sans-serif;
}

h2.brands_title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

h3.brands_subTitle {
  font-family: var(--font-body);
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 500;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  /* gap: 2rem; */
  gap: 4px;
  width: 90%;
  margin: auto;
}

a.brand-card {text-decoration: none;}
.brand-card {
  background: #F1F5F9;
  padding: 2rem;
  /* border-radius: 12px; */
  text-align: center;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.06); */
  transition: transform 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
}

.brand-card img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.brand-logo {
  max-width: 250px;
  /* margin-bottom: 1rem; */
  margin: auto;
}

.brand-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.brand-card p {
  color: #444;
  font-size: 0.8rem;
}


/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  right: 10%; top: -100px;

}

.cta-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--blue-deep);
  margin-bottom: 8px;
  font-weight: 900;
}

.cta-sub { font-size: 16px; color: rgba(13,31,80,0.8); }
.cta-actions { display: flex; gap: 12px; align-items: center; }

.cta-btn-primary {
  background: var(--blue-deep);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  letter-spacing: 0.8px;
}

.cta-btn-primary:hover { background: var(--blue-mid); }

@media (max-width: 850px) {
  .cta-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }
}
