/* ═══════════════════════════════════════════════════
   ONE SYNK – style.css
   Solo personalizaciones sobre Bootstrap 5
   Paleta: #1a2b4a (navy) | #111d33 (deep) | #2c4a8a (mid)
═══════════════════════════════════════════════════ */

:root {
  --navy: #1a2b4a;
  --navy-deep: #111d33;
  --navy-mid: #2c4a8a;
  --off-white: #f7f7f5;
  --gray-mid: #9a9a96;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(26, 43, 74, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 43, 74, 0.18);
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #444;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ── LOGO ───────────────────────────────────────── */
.logo-one {
  font-weight: 300;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.logo-synk {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── SIDEBAR (offcanvas override) ───────────────── */
#sidebar {
  width: 300px;
  background: var(--navy-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

#sidebar .btn-close-white {
  filter: invert(1) grayscale(1);
}

.sidebar-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-nav-list a {
  display: block;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color var(--transition),
    padding-left var(--transition);
}
.sidebar-nav-list a:hover {
  color: #fff;
  padding-left: 0.4rem;
}

.sidebar-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.sidebar-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.6rem;
}

.sidebar-categories a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  display: block;
  padding: 0.2rem 0;
  transition: color var(--transition);
}
.sidebar-categories a:hover {
  color: #fff;
}

.sidebar-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
.sidebar-footer .d-flex a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar-footer .d-flex a:hover {
  color: #fff;
}

/* ── NAVBAR ──────────────────────────────────────── */
.navbar-onesynk {
  background: transparent;
  padding: 1.2rem 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}
.navbar-onesynk.scrolled {
  background: var(--navy-deep);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width var(--transition);
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-icons a:hover {
  color: #fff;
}

/* ── HERO ────────────────────────────────────────── */
.hero-onesynk {
  min-height: 100vh;
  background: linear-gradient(
    145deg,
    var(--navy-deep) 0%,
    var(--navy) 45%,
    #2d4a7a 100%
  );
  position: relative;
  overflow: hidden;
}
.hero-onesynk::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(44, 74, 138, 0.4) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 20% 80%,
      rgba(26, 43, 74, 0.6) 0%,
      transparent 60%
    );
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.btn-hero {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 0.7rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}
.btn-hero:hover {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── QUOTE ───────────────────────────────────────── */
.quote-band {
  background: var(--navy);
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.4;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}
.quote-text strong {
  font-weight: 700;
  color: #fff;
  font-style: normal;
}

/* ── SECTION TITLE ───────────────────────────────── */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--navy);
  margin: 0.5rem 0 0;
}
.section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}
.section-title.white {
  color: #fff;
}
.section-title.white::after {
  background: #fff;
}

/* ── MARCAS ──────────────────────────────────────── */
.marcas-section {
  background: var(--off-white);
}

.marca-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.marca-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.marca-card-img {
  height: 240px;
}
.marca-food {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3460 100%);
}
.marca-beauty {
  background: linear-gradient(135deg, #2c3e6a 0%, #3d5a9a 100%);
}

.brand-pill {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
}
.brand-pill span {
  font-size: 1.05rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.brand-pill strong {
  font-weight: 800;
}
.brand-pill em {
  font-style: italic;
}

.marca-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--navy);
}
.marca-desc {
  font-size: 0.83rem;
  color: var(--gray-mid);
}

.btn-marca {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.5rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-marca:hover {
  background: var(--navy-mid);
  color: #fff;
}

/* ── FEATURE BAND ────────────────────────────────── */
.feature-band {
  background: var(--navy-deep);
}

.ftag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-img {
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}
.beauty-img {
  background: linear-gradient(135deg, #2a3f6e 0%, #4a6aaa 100%);
}
.food-img {
  background: linear-gradient(135deg, #1a2a4a 0%, #2c4a6e 100%);
}

.beauty-img::before,
.food-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(255, 255, 255, 0.03) 50px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(255, 255, 255, 0.03) 50px
    );
}

.brand-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
}
.brand-label-bottom {
  top: auto;
  bottom: 1rem;
  right: 1rem;
  left: auto;
}
.brand-label span {
  font-size: 0.82rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
.brand-label strong {
  font-weight: 800;
}
.brand-label em {
  font-style: italic;
}

/* ── NOSOTROS ─────────────────────────────────────── */
.nosotros-section {
  background: #fff;
}
.nosotros-section p {
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.nosotros-section em {
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}

.nosotros-city {
  height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(
    175deg,
    var(--navy) 0%,
    #0d1a2e 60%,
    var(--navy) 100%
  );
  overflow: hidden;
}
.nosotros-city::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300' preserveAspectRatio='none'%3E%3Cpath fill='rgba(26%2C43%2C74%2C0.55)' d='M0 300V200l20-30 10-60 10 40 15-80 10 50 20-120 10 80 15-40 10 30 20-70 10 50 15-30 10 20 20-90 10 60 15-40 10 30 20-50 10 40 15-20 10 10 20-60 10 40 15-30 10 20 20-40 10 30 800 0V300z'/%3E%3Cpath fill='rgba(17%2C29%2C51%2C0.75)' d='M0 300V220l30-40 20-20 10-50 20 30 15-70 10 45 15-25 10 15 25-80 10 55 20-35 10 25 20-55 10 35 20-20 10 10 800 0V300z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}

.city-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

/* ── FILOSOFÍA ────────────────────────────────────── */
.filosofia-section {
  background: var(--off-white);
}

.filosofia-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.filo-center {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.25);
}
.center-logo .logo-one,
.center-logo .logo-synk {
  font-size: 0.95rem;
}

.filo-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.filo-item:hover {
  transform: translateY(-4px);
}
.filo-item i {
  font-size: 1.8rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
}
.filo-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  margin: 0;
}

/* filosofia responsive */
@media (max-width: 576px) {
  .filosofia-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .filo-center {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .filo-item:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }
  .filo-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .filo-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  .filo-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

/* ── COMERCIO ─────────────────────────────────────── */
.comercio-section {
  background: #fff;
}

.comercio-card {
  background: var(--off-white);
  border: 1px solid #e8e8e4;
  border-radius: var(--radius);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.comercio-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.comercio-icon {
  font-size: 2.4rem;
  color: var(--navy);
}
.comercio-card h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.comercio-card p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: #555;
}

/* ── CONTACTO ─────────────────────────────────────── */
.contacto-section {
  background: var(--navy);
}

.contacto-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.85;
  max-width: 520px;
}

.contacto-email-wrap {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.contacto-email-wrap:hover {
  background: rgba(255, 255, 255, 0.14);
}
.contacto-icon {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}
.contacto-email-wrap a {
  color: #fff;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
}
.contacto-email-wrap a:hover {
  text-decoration: underline;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer-onesynk {
  background: var(--navy-deep);
}

.footer-logo .logo-one,
.footer-logo .logo-synk {
  font-size: 1.45rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social a:hover {
  color: #fff;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-list li {
  margin-bottom: 0.4rem;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-list a:hover {
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
}
.footer-legal {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.76rem;
  transition: color var(--transition);
}
.footer-legal:hover {
  color: #fff;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .py-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .hero-title {
    letter-spacing: 0.06em;
  }
  .nosotros-city {
    height: 280px;
  }
  .feature-img {
    height: 200px;
  }
  .nosotros-section .col-lg-6:last-child {
    display: none;
  }
}
