/* ================================================
   SYCUENS ESTUDIO — Design System & Styles
   cmdelantales.com | Medellín, Colombia
   Sitio 100% estático — sin build step
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

/* ── TOKENS ───────────────────────────────────── */
:root {
  --yellow:      #ffd201;
  --yellow-dark: #d9b717;
  --black:       #2e2e2e;
  --near-black:  #3a3a3a;
  --dark:        #333333;
  --gray:        #999999;
  --light:       #f2f2f2;
  --white:       #ffffff;

  --font-display: 'Raleway', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --container: 1280px;
  --radius:    3px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 88px;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--near-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.heading {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.subheading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}
.body-lg { font-size: 18px; line-height: 1.7; font-weight: 300; }
.body    { font-size: 16px; line-height: 1.7; font-weight: 300; }
.body-sm { font-size: 14px; line-height: 1.6; font-weight: 400; }

/* ── LAYOUT ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,210,1,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--near-black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(46,46,46,0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-img { width: auto; height: 64px; max-width: 64px; flex-shrink: 0; object-fit: contain; }
/* Logo del footer: clase aparte para que no crezca junto con el del navbar */
.footer-logo-img { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--yellow);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 40px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile .btn { align-self: flex-start; margin-top: 8px; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #3a3a3a 0%, #1a1a1a 60%, #0d0d0d 100%);
}
/* Video de fondo opcional del hero — ver bloque comentado en index.html
   para activarlo. Se ubica detrás de .hero-overlay para que el texto
   siga siendo legible encima del video. */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.05) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
  width: 100%;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}
.hero-left { max-width: 780px; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 8px;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
  background: var(--yellow);
  padding: 0;
}
.stats-bar .container {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--black);
  line-height: 1;
}
.stat-number-row {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.stat-number-unit {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ── SECTION HEADERS ──────────────────────────── */
.section-header {
  margin-bottom: 60px;
}
.section-header.centered { text-align: center; }
.section-title-sm {
  font-size: clamp(28px, 4vw, 52px);
}

/* ── ABOUT ────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 20px; }
.about-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 28px;
  color: var(--black);
}
.about-body {
  color: var(--dark);
  margin-bottom: 20px;
}
.about-statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--black);
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.4;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  padding: 24px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 2px;
}
.about-image-badge .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--black);
}
.about-image-badge .txt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
}

/* ── GALLERY PREVIEW ──────────────────────────── */
.gallery-preview {
  padding: 100px 0;
  background: var(--near-black);
}
.gallery-preview .section-header { margin-bottom: 48px; }
.gallery-preview .section-title-sm { color: var(--white); }
.gallery-preview .eyebrow { color: var(--yellow); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(255,210,1,0.15);
}
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── SERVICES ─────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light);
}
.service-card {
  background: var(--white);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--yellow);
  transition: width 0.4s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--yellow);
}
.service-name {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--black);
}
.service-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.service-number {
  position: absolute;
  top: 40px; right: 40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--light);
  line-height: 1;
  user-select: none;
}

/* ── PRICING ──────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--near-black);
}
.pricing .eyebrow { color: var(--yellow); }
.pricing .section-title-sm { color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,210,1,0.3);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
}
.pricing-card.featured:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 20px 60px rgba(255,210,1,0.25);
}
.pricing-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--black);
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.pricing-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-duration { color: rgba(0,0,0,0.6); }
.pricing-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card.featured .pricing-name { color: var(--black); }
.pricing-price {
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.pricing-card.featured .pricing-amount { color: var(--black); }
.pricing-iva {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-iva { color: rgba(0,0,0,0.55); }
.pricing-extra {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-extra { color: rgba(0,0,0,0.55); }
.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-divider { background: rgba(0,0,0,0.12); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.pricing-card.featured .pricing-feature { color: rgba(0,0,0,0.75); }
.pricing-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 1px;
}
.pricing-card.featured .pricing-feature-icon { color: var(--black); }
.pricing-cta .btn { width: 100%; justify-content: center; }
.pricing-card.featured .btn-dark { background: var(--black); color: var(--white); }

/* ── LOCATION ─────────────────────────────────── */
.location {
  padding: 100px 0;
  background: var(--light);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-info .eyebrow { margin-bottom: 20px; }
.location-title { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 32px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.location-detail:last-of-type { border-bottom: none; }
.location-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.location-detail-text span {
  font-size: 15px;
  color: var(--dark);
}
.location-map {
  height: 420px;
  border-radius: 2px;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA SECTION ──────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--yellow);
  text-align: center;
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(36px, 6vw, 80px);
  color: var(--black);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 48px;
  font-weight: 300;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s;
  border: none;
}
.footer-social a[aria-label*="Instagram"] {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-social a[aria-label*="WhatsApp"] {
  background: #25D366;
}
.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  filter: brightness(1.1);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-contact-item span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-contact-item a, .footer-contact-item span:last-child {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── WHATSAPP FLOAT ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s var(--ease);
  animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── PAGE HERO (inner pages) ──────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero-title {
  font-size: clamp(40px, 6vw, 88px);
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 560px;
}

/* ── REVEAL ANIMATIONS ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-image img { height: 380px; }
  .about-image-badge { display: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 48px; max-width: 48px; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: clamp(32px, 8vw, 56px); }
  .hero-desc { font-size: 16px; margin-bottom: 32px; }
  .hero-content { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
  .stats-bar .container { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .btn { padding: 14px 24px; font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-title { font-size: clamp(28px, 9vw, 44px); }
  .hero-desc { font-size: 15px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── MARCAS / CLIENTES (no usado en esta versión estática, se deja
   por si se agrega la sección más adelante) ─────────────────────── */
.brands-section { padding: 90px 0; background: var(--light); }
.brands-track-wrap {
  overflow-x: auto; overflow-y: hidden;
  -ms-overflow-style: none; scrollbar-width: none;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.brands-track-wrap::-webkit-scrollbar { display: none; }
.brands-track { display: flex; align-items: center; gap: 64px; width: max-content; }
.brand-logo-item {
  flex-shrink: 0; height: 130px; width: 210px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); padding: 18px;
}
.brand-logo-item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* ── LEGAL PAGES ───────────────────────────────── */
.legal-page { padding: 100px 0 120px; background: var(--white); min-height: 70vh; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--black); margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 13px; color: var(--gray); margin-bottom: 48px; }
.legal-page h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--black); margin: 40px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; color: rgba(0,0,0,0.7); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: var(--black); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 20px 0; }
.legal-max { max-width: 760px; }
.highlight-box {
  background: #fffbeb; border-left: 3px solid var(--yellow);
  padding: 18px 22px; border-radius: 0 6px 6px 0; margin: 24px 0;
}
.highlight-box p { margin: 0; font-size: 14px; }
.legal-footer { background: var(--black); padding: 48px 0 32px; color: rgba(255,255,255,0.55); }
.legal-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.legal-footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.legal-footer-logo .nav-logo-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 0.04em; }
.legal-footer-logo .nav-logo-sub { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.legal-footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px; }
.legal-footer-contact-item { display: flex; flex-direction: column; gap: 4px; }
.legal-footer-contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); }
.legal-footer-contact-value { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; }
.legal-footer-contact-value:hover { color: #fff; }
.legal-footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; width: 100%; }
