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

 /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
    background-image: url("../assets/banner-hero-home.webp");
    background-size: cover;      /* o contain si quieres que no se recorte */
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-left {
    /* background: var(--blue-deep); */
    padding: 72px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(232,184,0,0.06);
    bottom: -160px; left: -120px;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.04);
    top: -60px; right: 60px;
  }
  .hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
  }
  .kicker-line {
    width: 28px; height: 2px;
    background: var(--gold);
  }
  .kicker-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
  }
  .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;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,184,0,0.3); }
  .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;
  }
  .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; } }

  .hero-right {
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
  }
  .hero-visual {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
    width: 100%;
    max-width: 360px;
    animation: fadeUp 0.7s ease 0.3s both;
  }
  .hv-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hv-label::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
  .hv-brands { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .hv-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--gray-100);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
    cursor: default;
  }
  .hv-brand:hover { border-color: var(--blue-light); background: var(--blue-soft); }
  .hv-brand-name { font-size: 13px; font-weight: 700; color: var(--blue-deep); letter-spacing: 1px; }
  .hv-brand-tag { font-size: 10px; background: var(--blue-mid); color: white; padding: 3px 8px; border-radius: 4px; font-weight: 600; letter-spacing: 0.5px; }
  .hv-brand-tag.gold { background: var(--gold); color: var(--blue-deep); }
  .hv-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hv-stat { text-align: center; padding: 12px 8px; background: var(--blue-soft); border-radius: 8px; }
  .hv-stat-num { font-family: var(--font-display); font-size: 22px; color: var(--blue-mid); }
  .hv-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; line-height: 1.3; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--blue-mid);
    padding: 0;
  }
  .stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-seg {
    padding: 28px 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .stat-seg:last-child { border-right: none; }
  .stat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .stat-info {}
  .stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    letter-spacing: 0.2px;
  }

  .section-inner {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 80px;
    }
  
  /* ── SECTION HEADERS ── */
  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .section-eyebrow {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 10px;
  }
  .eyebrow-line { width: 20px; height: 2px; background: var(--gold); }
  .section-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--blue-deep);
    line-height: 1.15;
  }
  .section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--blue-light);
    transition: gap 0.2s;
  }
  .section-link:hover { gap: 10px; }

  /* ── 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.15);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .sc-img-icon {
    position: relative; z-index: 1;
    width: 56px; height: 56px;
    border-radius: 12px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(13,31,80,0.18);
  }
  .sc-body { padding: 24px 24px 28px; }
  .sc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }
  .sc-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .sc-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.18s;
  }
  .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::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 80px solid rgba(232,184,0,0.05);
    right: -200px; top: -200px;
} */
  .feature-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .fb-left {}
  .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: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 400px;
  }
  .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: 12px;
    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(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,184,0,0.25); }
  .fb-right {}
  .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-content {}
  .check-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
  .check-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

  /* ── 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-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--blue-pale);
    line-height: 1;
    margin-bottom: 12px;
    -webkit-text-stroke: 1.5px var(--gray-300);
  }
  .dc-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .dc-title { font-size: 16px; font-weight: 600; color: var(--blue-deep); margin-bottom: 10px; }
  .dc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

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

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

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

.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) 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: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .cta-text {}
  .cta-title {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .cta-sub { font-size: 15px; color: rgba(13,31,80,0.65); }
  .cta-actions { display: flex; gap: 12px; align-items: center; }
  .cta-btn-primary {
    background: var(--blue-deep);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
  }
  .cta-btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,31,80,0.25); }
  .cta-btn-ghost {
    background: transparent;
    color: var(--blue-deep);
    border: 2px solid rgba(13,31,80,0.3);
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
  }
  .cta-btn-ghost:hover { border-color: var(--blue-deep); background: rgba(13,31,80,0.08); }

  /* ========================= */
/* RESPONSIVE                */
/* ========================= */

@media (max-width: 850px) {
  .section-inner {
      padding: 0 10px;
    }
}