/* ============================================================
   Mind Fit Online — Página de servicio
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;700;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Archivo', sans-serif;
  background: #F2EFE9;
  color: #333744;
  overflow-x: hidden;
  margin: 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transition: background 0.4s;
}
.top-bar a { pointer-events: auto; }
.top-bar-logo { text-decoration: none; display: flex; align-items: center; }
.top-bar-logo img { max-height: 56px; width: auto; display: block; }

.top-bar-nav { display: flex; align-items: center; gap: 24px; }
.top-bar-nav a {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F2EFE9;
  text-decoration: none;
  transition: opacity 0.3s;
}
.top-bar-nav a:hover { opacity: 0.6; }

.top-bar-cta {
  background: transparent !important;
  color: #F2EFE9 !important;
  padding: 5px 14px;
  border: 1px solid #F2EFE9;
  border-radius: 0;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
}

/* After hero, nav text turns dark */
.top-bar.dark a { color: #333744; }
.top-bar.dark .top-bar-cta { color: #333744 !important; border-color: #333744; }

@media (max-width: 768px) {
  .top-bar { padding: 14px 16px; }
  .top-bar-logo img { max-height: 40px; }
  .top-bar-nav { gap: 12px; }
  .top-bar-nav a:not(.top-bar-cta) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.srv-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.srv-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.srv-hero-content {
  position: absolute;
  bottom: 80px;
  left: 48px;
  z-index: 2;
  color: #F2EFE9;
}
.srv-hero-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 12px;
}
.srv-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}
.srv-hero-tag {
  position: absolute;
  bottom: 80px;
  right: 48px;
  z-index: 2;
  color: #F2EFE9;
  text-align: right;
}
.srv-hero-tag span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .srv-hero-content { bottom: 40px; left: 24px; }
  .srv-hero-tag { bottom: 40px; right: 24px; }
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.srv-info {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.srv-info-text h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.srv-info-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 16px;
}
.srv-info-details {}
.srv-info-detail {
  padding: 20px 0;
  border-bottom: 1px solid rgba(51, 55, 68, 0.1);
}
.srv-info-detail:first-child { border-top: 1px solid rgba(51, 55, 68, 0.1); }
.srv-info-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 4px;
}
.srv-info-value {
  font-size: 14px;
  font-weight: 600;
}

.srv-info-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  background: #333744;
  color: #F2EFE9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s;
}
.srv-info-cta:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .srv-info { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.srv-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.srv-gallery img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .srv-gallery { grid-template-columns: 1fr; }
  .srv-gallery img { height: 60vw; }
}

/* ============================================================
   PANEL — full width image + CTA
   ============================================================ */
.srv-panel {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.srv-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srv-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.srv-panel-title {
  color: #F2EFE9;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.srv-panel-sub {
  color: #F2EFE9;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 28px;
}
.srv-panel-cta {
  display: inline-block;
  padding: 12px 32px;
  background: #F2EFE9;
  color: #333744;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s;
}
.srv-panel-cta:hover { opacity: 0.85; }

/* ============================================================
   NEXT SERVICE NAV
   ============================================================ */
.srv-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  border-top: 1px solid rgba(51, 55, 68, 0.1);
}
.srv-next a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333744;
  text-decoration: none;
  transition: opacity 0.3s;
}
.srv-next a:hover { opacity: 0.6; }
.srv-next-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.srv-footer {
  padding: 24px 48px;
  text-align: center;
  font-size: 10px;
  opacity: 0.4;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .srv-next { padding: 32px 24px; }
  .srv-footer { padding: 24px; }
}
