/* ============================================================
   ENHANCE DIGITAL HUB — Stylesheet
   v2.0 | 2026 — Multi-page
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --black:      #0D0608;
  --wine:       #561C24;
  --terracotta: #A0453A;
  --white:      #F5EDE8;
  --cream:      #C7B7A3;

  --glass:        rgba(245, 237, 232, 0.04);
  --glass-mid:    rgba(245, 237, 232, 0.07);
  --glass-border: rgba(245, 237, 232, 0.08);

  --font: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 72px;
  --max-w: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }



/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(50px, 7.5vw, 92px); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
h2 { font-size: clamp(32px, 4.5vw, 62px); font-weight: 700; line-height: 1.1;  letter-spacing: -.025em; }
h3 { font-size: clamp(24px, 3vw,  38px);  font-weight: 700; line-height: 1.2; }
h4 { font-size: clamp(17px, 1.8vw, 20px); font-weight: 600; line-height: 1.3; }
p  { line-height: 1.75; }

.gradient-text,
.problem__punch mark,
.cta-quote strong,
.quote-break__text strong,
.hito__pct {
  background: linear-gradient(130deg, var(--terracotta) 0%, var(--wine) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s, color .3s;
  white-space: nowrap;
  padding: 14px 28px;
}

.btn--primary {
  background: linear-gradient(130deg, var(--terracotta), var(--wine));
  color: var(--white);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(160,69,58,.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--glass-border);
}
.btn--outline:hover {
  color: var(--white);
  border-color: rgba(245,237,232,.22);
  background: var(--glass);
}

.btn--nav {
  background: linear-gradient(130deg, var(--terracotta), var(--wine));
  color: var(--white);
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 100px;
}
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(160,69,58,.3); }

.btn--sm  { padding: 10px 20px; font-size: 14px; }
.btn--lg  { padding: 18px 42px; font-size: 17px; }

/* ---------- SHARED SECTION PARTS ---------- */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.section-head { margin-bottom: 72px; }
.section-head h2 { color: var(--white); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* stagger siblings */
.why-grid              .reveal:nth-child(2) { transition-delay: .08s; }
.why-grid              .reveal:nth-child(3) { transition-delay: .16s; }
.why-grid              .reveal:nth-child(4) { transition-delay: .24s; }
.why-grid              .reveal:nth-child(5) { transition-delay: .32s; }
.diferencial__right    .reveal:nth-child(2) { transition-delay: .08s; }
.diferencial__right    .reveal:nth-child(3) { transition-delay: .16s; }
.diferencial__right    .reveal:nth-child(4) { transition-delay: .24s; }
.srv-list .reveal:nth-child(2) { transition-delay: .06s; }
.srv-list .reveal:nth-child(3) { transition-delay: .12s; }
.srv-list .reveal:nth-child(4) { transition-delay: .18s; }

/* ============================================================
   NAV — Horizontal bar
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: background .4s, border-color .4s;
}

.nav.scrolled {
  background: rgba(13, 6, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 237, 232, 0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(199, 183, 163, 0.65);
  transition: color .3s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(160, 69, 58, 0.45);
  padding-bottom: 1px;
  transition: border-color .3s;
}
.nav__cta:hover,
.nav__cta.active { border-color: var(--terracotta); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(13, 6, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 99;
}
.nav__drawer a {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  padding: 18px 32px;
  border-bottom: 1px solid var(--glass-border);
  transition: color .3s, background .3s;
}
.nav__drawer a:last-child { border-bottom: none; color: var(--terracotta); }
.nav__drawer a:hover { color: var(--white); background: var(--glass); }

.nav.open + .nav__drawer { display: flex; }
.nav.open .nav__hamburger span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav__hamburger span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav__inner { padding: 0 24px; }
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer a  { padding: 18px 24px; }
}

/* ============================================================
   HERO — Editorial, left-aligned, type-forward
   ============================================================ */
.hero {
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

.hero__kicker {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  left: 60px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 1.2s ease .15s;
}
.hero--loaded .hero__kicker { opacity: .45; }

.hero__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__badge {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  align-self: center;
  opacity: 0;
  transition: opacity 1s ease 1s;
}
.hero--loaded .hero__badge { opacity: 1; }

.hero__badge-ring {
  width: 100%;
  height: 100%;
  animation: badge-spin 22s linear infinite;
}
.hero__badge-ring text {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--cream);
  opacity: 0.38;
}

.hero__badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border: 1px solid rgba(160, 69, 58, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-center img { width: 44px; height: 44px; opacity: .85; }

@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 900px) { .hero__badge { display: none; } }

.hero__h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(62px, 10vw, 136px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero__line > span,
.hero__line > em {
  display: block;
  transform: translateY(110%);
  transition: transform .95s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero--loaded .hero__line:nth-child(1) > span { transform: translateY(0); transition-delay: .05s; }
.hero--loaded .hero__line:nth-child(2) > span { transform: translateY(0); transition-delay: .18s; }
.hero--loaded .hero__line:nth-child(3) > em   { transform: translateY(0); transition-delay: .31s; }

.hero__h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.hero__foot { padding-bottom: 52px; }

.hero__foot-bar {
  width: 100%;
  height: 1px;
  background: rgba(199, 183, 163, 0.12);
  margin-bottom: 32px;
}

.hero__foot-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease) .72s, transform .8s var(--ease) .72s;
}
.hero--loaded .hero__foot-content { opacity: 1; transform: translateY(0); }

.hero__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--cream);
  line-height: 1.8;
  opacity: .75;
}

@media (max-width: 768px) {
  .hero { padding: 0 24px; }
  .hero__kicker { left: 24px; }
  .hero__foot-content { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 480px) {
  .hero__h1 { font-size: clamp(52px, 14vw, 80px); }
}

/* ============================================================
   MANIFESTO HOME — Cream break
   ============================================================ */
.manifesto-home {
  background: var(--white);
  padding: 140px 60px;
}

.manifesto-home__inner { max-width: 760px; margin-left: auto; }

.manifesto-home__setup {
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(13, 6, 8, 0.65);
  margin-bottom: 8px;
}
.manifesto-home__setup em {
  font-style: normal;
  font-weight: 700;
  color: var(--black);
}

.manifesto-home__punch {
  font-size: clamp(30px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.manifesto-home__punch strong { color: var(--terracotta); }

.manifesto-home__body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--black);
  opacity: .55;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .manifesto-home { padding: 100px 24px; }
}

/* ============================================================
   SERVICES HOME — Editorial list
   ============================================================ */
.services-home { padding: 140px 0; }

.section-intro { margin-bottom: 56px; }
.section-intro h2 { color: var(--white); }

.srv-list {
  list-style: none;
  border-top: 1px solid rgba(199, 183, 163, 0.1);
}

.srv-list__item a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(199, 183, 163, 0.1);
  text-decoration: none;
  color: inherit;
  transition: padding-left .4s var(--ease);
}
.srv-list__item a:hover { padding-left: 20px; }

.srv-list__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cream);
  opacity: .3;
  flex-shrink: 0;
}

.srv-list__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-list__name {
  display: block;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: color .3s;
}
.srv-list__item a:hover .srv-list__name { color: var(--terracotta); }

.srv-list__desc {
  display: block;
  font-size: 15px;
  color: var(--cream);
  opacity: .5;
  line-height: 1.5;
}

.srv-list__arrow {
  font-size: 22px;
  color: var(--cream);
  opacity: .2;
  transition: opacity .35s, transform .35s var(--ease), color .35s;
  flex-shrink: 0;
}
.srv-list__item a:hover .srv-list__arrow {
  opacity: 1;
  color: var(--terracotta);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .services-home { padding: 100px 0; }
  .srv-list__item a { grid-template-columns: 36px 1fr; gap: 20px; padding: 28px 0; }
  .srv-list__arrow  { display: none; }
}

/* ============================================================
   DIFERENCIAL — Asymmetric two-column
   ============================================================ */
.diferencial {
  padding: 140px 0;
  border-top: 1px solid rgba(199, 183, 163, 0.08);
}

.diferencial__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.diferencial__left h2 {
  color: var(--white);
  margin: 20px 0 24px;
}

.diferencial__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--cream);
  line-height: 1.75;
  opacity: .75;
  margin-bottom: 40px;
}

.diferencial__right {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}

.dif-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(199, 183, 163, 0.08);
}
.dif-item:first-child { padding-top: 0; }
.dif-item:last-child  { border-bottom: none; padding-bottom: 0; }

.dif-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--terracotta);
  opacity: .6;
  min-width: 24px;
  padding-top: 4px;
  flex-shrink: 0;
}

.dif-item__content h4 { color: var(--white); margin-bottom: 8px; }
.dif-item__content p  { font-size: 14px; color: var(--cream); line-height: 1.7; opacity: .7; }

@media (max-width: 900px) {
  .diferencial__inner { grid-template-columns: 1fr; gap: 56px; }
  .diferencial { padding: 100px 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 120px 0; }

/* Featured card */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 64px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 24px;
  transition: border-color .35s;
}
.service-featured:hover { border-color: rgba(160,69,58,.3); }

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(160,69,58,.35);
  border-radius: 4px;
  padding: 5px 11px;
  margin-bottom: 20px;
}

.service-featured h3 { color: var(--white); margin-bottom: 20px; }
.service-featured > .service-featured__info > p {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 36px;
}

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
}
.feat-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* Price panel */
.service-featured__prices {
  background: rgba(13,6,8,.55);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prices-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .55;
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--cream);
}
.price-row:last-of-type { margin-bottom: 8px; }
.price-val { font-weight: 700; color: var(--white); font-size: 15px; }

.prices-note {
  font-size: 12px;
  color: var(--cream);
  opacity: .45;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Grid cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.srv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.srv-card:hover {
  background: var(--glass-mid);
  border-color: rgba(160,69,58,.22);
  transform: translateY(-4px);
}
.srv-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: .7;
  margin-bottom: 24px;
}
.srv-card h4 { color: var(--white); margin-bottom: 12px; }
.srv-card p  { font-size: 14px; color: var(--cream); line-height: 1.65; }

@media (max-width: 1100px) {
  .service-featured { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .service-featured { padding: 36px 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 120px 0;
  border-top: 1px solid var(--glass-border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 0;
}

/* connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    var(--glass-border) 10%,
    rgba(160,69,58,.4) 50%,
    var(--glass-border) 90%,
    transparent
  );
  z-index: 0;
}

.process-step {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1;
}
.process-step:last-child { padding-right: 0; }

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--glass-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: .05em;
  margin-bottom: 28px;
  transition: background .3s, border-color .3s, color .3s;
}
.process-step:hover .step-num {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.process-step h4 { color: var(--white); margin-bottom: 12px; }
.process-step p  { font-size: 14px; color: var(--cream); line-height: 1.65; }

@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 420px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY ENHANCE
   ============================================================ */
.why { padding: 120px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
}

.why-item {
  padding: 48px 32px;
  border-right: 1px solid var(--glass-border);
  transition: background .3s;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--glass); }

.why-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--terracotta);
  opacity: .65;
  margin-bottom: 20px;
}
.why-item h4 { color: var(--white); margin-bottom: 14px; }
.why-item p  { font-size: 14px; color: var(--cream); line-height: 1.7; }

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-item:nth-child(3) { border-right: none; }
  .why-item:nth-child(4),
  .why-item:nth-child(5) { border-top: 1px solid var(--glass-border); }
  .why-item:nth-child(5) { border-right: none; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .why-item { border-right: 1px solid var(--glass-border); border-top: 0; }
  .why-item:nth-child(even) { border-right: none; }
  .why-item:nth-child(n+3)  { border-top: 1px solid var(--glass-border); }
  .why-item:nth-child(3)    { border-right: 1px solid var(--glass-border); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; border-top: 1px solid var(--glass-border) !important; }
  .why-item:first-child { border-top: none !important; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}
.cta-inner { max-width: 720px; margin: 0 auto; }

.cta-quote {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 40px;
  border: none;
}
.cta-quote strong {
  font-weight: 800;
  font-style: normal;
}

.cta-sub {
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 52px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px 0;
  border-top: 1px solid var(--glass-border);
}

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-head { margin-bottom: 48px; }
  .services, .process, .why { padding: 80px 0; }
  .cta-section { padding: 100px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* ============================================================
   MULTI-PAGE ADDITIONS — v2.0
   ============================================================ */

/* ---------- ACTIVE NAV LINK ---------- */
.nav__links a.active:not(.btn) { color: var(--white); }
.nav__links a.active:not(.btn)::after { width: 100%; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--glass-border);
}
.page-hero--sm { padding-bottom: 60px; }

.page-hero__h1 {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  color: var(--white);
}
.page-hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--cream);
  line-height: 1.8;
  max-width: 640px;
}


/* ============================================================
   CTA STRIP (footer shared)
   ============================================================ */
.cta-strip {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__inner p {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .cta-strip__inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   FOOTER — extended
   ============================================================ */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand p { font-size: 14px; color: var(--cream); font-style: italic; opacity: .7; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer__nav a { font-size: 14px; color: var(--cream); transition: color .3s; }
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: var(--cream); opacity: .78; }

/* ============================================================
   SERVICIOS PAGE
   ============================================================ */
.services--alt { background: none; padding-top: 0; }

.payment-hitos {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 48px;
  margin-top: 24px;
}
.payment-hitos h4 { color: var(--white); margin-bottom: 32px; }
.hitos-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hito {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hito__pct {
  font-size: 36px;
  font-weight: 800;
}
.hito p { font-size: 15px; color: var(--white); line-height: 1.4; }
.hito p small { font-size: 13px; color: var(--cream); }
.hito__line {
  width: 80px;
  height: 1px;
  background: var(--glass-border);
  flex-shrink: 0;
  margin: 0 24px;
}

@media (max-width: 640px) {
  .hitos-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hito__line { width: 1px; height: 32px; margin: 0 0 0 16px; }
  .payment-hitos { padding: 32px 24px; }
}

/* Services full grid */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.srv-full {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  transition: border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.srv-full:hover { border-color: rgba(160,69,58,.25); }

.srv-full__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.srv-full__head h3 { color: var(--white); font-size: clamp(20px, 2vw, 26px); flex: 1; }
.srv-model {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .5;
  white-space: nowrap;
}
.srv-full > p { font-size: 15px; color: var(--cream); line-height: 1.7; }
.srv-full .feat-list { flex: 1; }
.srv-full .btn { align-self: flex-start; margin-top: 8px; }

@media (max-width: 860px) { .services-full-grid { grid-template-columns: 1fr; } }

.services-full-grid--3 { grid-template-columns: repeat(3, 1fr); }
.services-full-grid--2 { grid-template-columns: repeat(2, 1fr); }
.u-mt-20 { margin-top: 20px; }

@media (max-width: 1000px) {
  .services-full-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .services-full-grid--3,
  .services-full-grid--2 { grid-template-columns: 1fr; }
}

/* Add-ons */
.addons { padding: 80px 0 120px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background .3s;
}
.addon-item:hover { background: var(--glass-mid); }
.addon-item h5 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.addon-item p  { font-size: 14px; color: var(--cream); line-height: 1.6; }

@media (max-width: 860px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .addons-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESO PAGE
   ============================================================ */
.process-page { padding: 100px 0; }

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 72px 0;
  border-bottom: 1px solid var(--glass-border);
  align-items: start;
}
.process-item:last-child { border-bottom: none; }

.process-item__num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(130deg, rgba(160,69,58,.3), rgba(86,28,36,.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
}

.process-item__content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
}
.process-item__lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}
.process-item__content > p:not(.process-item__lead) {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .process-item { grid-template-columns: 1fr; gap: 20px; padding: 48px 0; }
  .process-item__num { font-size: 48px; }
}

/* Not us section */
.not-us {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}
.not-us__inner h2 { color: var(--white); margin-bottom: 48px; }
.not-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.not-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.6;
  position: relative;
  padding-left: 40px;
}
.not-item::before {
  content: '×';
  position: absolute;
  left: 16px;
  top: 22px;
  color: var(--terracotta);
  font-size: 18px;
  font-weight: 700;
  opacity: .6;
}

@media (max-width: 768px) { .not-us__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .not-us__grid { grid-template-columns: 1fr; } }

.not-item--yes {
  padding-left: 40px;
}
.not-item--yes::before {
  content: '✓';
  color: var(--terracotta);
  font-size: 15px;
  font-weight: 700;
  opacity: 1;
}

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */
.manifesto { padding: 100px 0; border-bottom: 1px solid var(--glass-border); }
.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto__quote blockquote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  border: none;
  padding: 0;
}
.manifesto__quote blockquote strong { font-weight: 800; font-style: normal; }
.manifesto__body p {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.85;
  margin-bottom: 20px;
}
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__body strong { color: var(--white); font-weight: 600; }

@media (max-width: 860px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* What we sell */
.what-we-sell { padding: 100px 0; border-bottom: 1px solid var(--glass-border); }
.sell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sell-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .3s;
}
.sell-item:hover { border-color: rgba(160,69,58,.25); }
.sell-item__others {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .4;
}
.sell-item__cross {
  font-size: 16px;
  color: var(--cream);
  text-decoration: line-through;
  text-decoration-color: rgba(199,183,163,.35);
}
.sell-item__arrow { font-size: 20px; color: var(--terracotta); opacity: .6; }
.sell-item__us { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.2; }

@media (max-width: 860px) { .sell-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sell-grid { grid-template-columns: 1fr; } }

/* Filosofía */
.filosofia { padding: 100px 0; border-bottom: 1px solid var(--glass-border); }
.filosofia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.filosofia__item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background .3s;
}
.filosofia__item:hover { background: var(--glass-mid); }
.filosofia__item h4 { color: var(--white); margin-bottom: 16px; }
.filosofia__item p { font-size: 15px; color: var(--cream); line-height: 1.75; }

@media (max-width: 768px) { .filosofia__grid { grid-template-columns: 1fr; } }

/* Ideal client */
.ideal-client { padding: 100px 0; border-bottom: 1px solid var(--glass-border); }
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.client-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background .3s;
}
.client-card:hover { background: var(--glass-mid); }
.client-card h4 { color: var(--white); margin-bottom: 14px; }
.client-card p  { font-size: 15px; color: var(--cream); line-height: 1.7; }

.not-client {
  background: rgba(86,28,36,.12);
  border: 1px solid rgba(86,28,36,.25);
  border-radius: 16px;
  padding: 32px 28px;
}
.not-client h4 { color: var(--white); margin-bottom: 12px; }
.not-client p  { font-size: 15px; color: var(--cream); line-height: 1.7; }

@media (max-width: 768px) { .client-grid { grid-template-columns: 1fr; } }

/* Brand phrases */
.brand-phrases { padding: 100px 0; }
.phrases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.phrase {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 32px;
  line-height: 1.4;
  transition: background .3s;
}
.phrase:hover { background: var(--glass-mid); }

@media (max-width: 640px) { .phrases-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACTO PAGE
   ============================================================ */
.contact-section { padding: 80px 0 120px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(20px);
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13,6,8,.6);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(199,183,163,.4); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C7B7A3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: #1a0d10; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(160,69,58,.5); }
.form-group textarea { resize: vertical; min-height: 130px; }

.btn--full { width: 100%; justify-content: center; }

.form-error {
  background: rgba(160,69,58,.15);
  border: 1px solid rgba(160,69,58,.35);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--white);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 0;
}
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--terracotta), var(--wine));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
}
.form-success h3 { color: var(--white); }
.form-success p  { font-size: 16px; color: var(--cream); max-width: 400px; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info__block { display: flex; flex-direction: column; gap: 14px; }
.contact-info__block h4 { color: var(--white); font-size: 16px; }
.contact-info__block p  { font-size: 15px; color: var(--cream); line-height: 1.7; }

.contact-email {
  font-size: 15px;
  color: var(--terracotta);
  font-weight: 500;
  transition: color .3s;
}
.contact-email:hover { color: var(--white); }

.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: steps;
}
.contact-steps li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
  counter-increment: steps;
}
.contact-steps li::before {
  content: counter(steps);
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(160,69,58,.2);
  border: 1px solid rgba(160,69,58,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-note { font-size: 14px; color: var(--cream); opacity: .7; line-height: 1.7; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
