@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600&display=swap");

:root {
  --bg: #1a1a1a;
  --bg-2: #202124;
  --bg-3: #161616;
  --text: #FFFFFFDD;
  --muted: #ffffff99;
  --line: #ffffff22;
  --accent: #75AADB;
  --accent-2: #2fb7c3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  left: 0; top: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .nav-left { display: inline-flex; align-items: center; gap: 10px; }
.site-nav .nav-right { display: inline-flex; align-items: center; gap: 24px; }
.site-nav .logo-img { height: 36px; width: auto; display: block; }

.site-nav a {
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 3px;
  border-radius: 99px;
  background-color: var(--accent);
}
.site-nav a:hover::after { opacity: 0.5; }

/* ---------- HERO ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 48px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.55) 55%, rgba(20,20,20,0.25) 100%),
              linear-gradient(0deg, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.1) 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.page-hero .eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 3px;
  background: var(--accent); border-radius: 99px; vertical-align: middle; margin-right: 10px;
}
.page-hero h1 {
  font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: clamp(40px, 7vw, 84px); line-height: 0.98; margin: 0;
  text-transform: uppercase;
}
.page-hero p.lead { max-width: 560px; margin: 16px 0 0; color: var(--text); font-size: 17px; }

/* ---------- SECTIONS ---------- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--bg-3); }

.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: clamp(26px, 3.5vw, 40px); margin: 0 0 8px;
}
.section-head p { margin: 0; color: var(--muted); }

/* ---------- CARD GRID ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-item .thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.card-item .body { padding: 20px; }
.card-item h3 {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 22px; margin: 0 0 8px;
}
.card-item p { margin: 0; color: var(--muted); font-size: 15px; }
.card-item .tag {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 600; margin-bottom: 6px;
}

/* ---------- INFO / PROFILE ---------- */
.profile {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column; gap: 6px;
}
.profile .avatar {
  width: 64px; height: 64px; border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; font-family: "Oswald"; font-weight: 600;
  font-size: 26px; color: #0e0e0e; margin-bottom: 8px;
}
.profile h3 { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 22px; margin: 0; text-transform: uppercase; }
.profile .role { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.profile p { color: var(--muted); margin: 6px 0 0; font-size: 15px; }

/* ---------- TESTIMONIALS ---------- */
.quote {
  background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 22px; font-size: 15px;
}
.quote .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; font-size: 14px; }
.quote .who { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }
.quote .owner {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.quote .owner b { color: var(--text); font-weight: 600; }

/* ---------- HORARIOS ---------- */
.hours-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
.slot {
  border: 1px solid var(--line); background: var(--bg-2); border-radius: 99px;
  padding: 10px 20px; font-weight: 600; font-size: 16px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 99px; padding: 8px 16px; font-size: 14px;
}
.status-pill .dot { width: 9px; height: 9px; border-radius: 99px; background: #e5533c; }

/* ---------- PRICING ---------- */
.plan {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.plan h3 { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 24px; margin: 0; text-transform: uppercase; }
.plan .price { font-size: 15px; color: var(--accent); font-weight: 600; }
.plan ul { margin: 6px 0 0; padding: 0; list-style: none; }
.plan li { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.plan li:last-child { border-bottom: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 99px; padding: 12px 26px; font-size: 14px; font-weight: 600;
  text-transform: uppercase; text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #0e1416; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; border-color: #ffffff55; color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }

/* ---------- CTA STRIP ---------- */
.cta-strip { padding: 56px 0; background: linear-gradient(120deg, #14232b, #182024); text-align: center; }
.cta-strip h2 { font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase; font-size: clamp(26px, 4vw, 44px); margin: 0 0 10px; }
.cta-strip p { color: var(--muted); margin: 0 auto 6px; max-width: 520px; }

/* ---------- BADGES ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 99px; padding: 8px 16px; font-size: 13px; color: var(--muted); }

/* ---------- FOOTER ---------- */
footer.site-footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg-3); }
footer.site-footer .cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
footer.site-footer .logo-img { height: 34px; margin-bottom: 12px; }
footer.site-footer a { color: var(--muted); text-decoration: none; display: block; padding: 3px 0; }
footer.site-footer a:hover { color: var(--text); }
footer.site-footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin: 0 0 10px; }
footer .copy { margin-top: 28px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); padding-top: 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-nav .nav-right a:not(.nav-cta) { display: none; }
  .container { padding: 0 20px; }
}
@media (max-width: 560px) {
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
}
