/* ─── Sonrisa Premium · Ivory style · Shared CSS ──────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #212121;
  --ice:     #EAEFF5;
  --ice-soft:#F5F8FB;
  --white:   #FFFFFF;
  --gray:    #8A8F99;
  --gray-light: #C8CDD4;
  --border: #DBE0E8;
  --accent: #B5B0A2;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: linear-gradient(110deg, #EAEFF5 0%, #F2F5F9 35%, #FAFBFC 70%, #FFFFFF 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border); padding: 14px 5%; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--black); }
.nav-logo-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 100%; height: 100%; }
.nav-logo-text strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); }
.nav-logo-text span { font-size: 9.5px; font-weight: 500; color: var(--gray); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--black); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: -0.005em;
  transition: color 0.2s var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--black);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-location { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.nav-location::before { content: '◉'; color: var(--black); font-size: 8px; }
.nav-menu-btn {
  background: var(--ice); border: none; padding: 11px 22px; border-radius: 50px;
  font-size: 13.5px; font-weight: 500; color: var(--black); cursor: pointer; text-decoration: none;
  transition: all 0.25s var(--transition); font-family: inherit; display: inline-flex; align-items: center;
}
.nav-menu-btn:hover { background: var(--black); color: var(--white); }

/* ─── HERO (general) ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: transparent;
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
}

.hero-number { display: none; }

.hero-content {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center; position: relative;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 5.1vw, 4.75rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 56px;
}
.hero-text h1 .b { font-weight: 500; color: var(--black); }
.hero-text h1 .light { color: var(--gray); font-weight: 200; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--black); color: var(--white); text-decoration: none;
  padding: 18px 42px; border-radius: 50px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  transition: all 0.3s var(--transition);
  font-family: inherit; border: none; cursor: pointer;
}
.hero-cta:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); }
.hero-cta svg { width: 16px; height: 16px; }

.hero-visual {
  position: relative; aspect-ratio: 16/10; max-width: 620px; margin-left: auto;
}
.hero-visual-img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 24px;
  filter: contrast(0.96) brightness(1.02);
  box-shadow: 0 24px 80px rgba(33,33,33,0.12);
}
.hero-float {
  position: absolute; background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 500; color: var(--black);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(33,33,33,0.06);
}
.hero-float::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--black); }
.hero-float-1 { top: 8%; left: -8%; }
.hero-float-2 { bottom: 12%; right: -6%; }

.hero-bottom {
  max-width: 1300px; margin: 80px auto 0;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-stat-big strong {
  display: block; font-size: clamp(3rem, 6vw, 5rem); font-weight: 200;
  letter-spacing: -0.04em; line-height: 1; color: var(--black);
}
.hero-stat-big strong::after { content: '+'; color: var(--accent); }
.hero-stat-big p {
  font-size: 13px; color: var(--gray); max-width: 340px; line-height: 1.5;
  margin-top: 16px;
}
.hero-scroll {
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; color: var(--black);
  transition: all 0.3s var(--transition);
}
.hero-scroll:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.hero-scroll svg { width: 16px; height: 16px; }

/* Hero compacto para páginas internas */
.hero-compact { min-height: auto; padding: 160px 5% 100px; }
.hero-compact .hero-content { display: block; text-align: left; max-width: 1000px; }
.hero-compact h1 { font-size: clamp(2.1rem, 4.4vw, 3.85rem); margin-bottom: 24px; }
.hero-breadcrumb {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.hero-breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--black); }
.hero-breadcrumb::before { content: ''; width: 24px; height: 1px; background: var(--gray); }
.hero-compact .lead {
  font-size: 19px; color: var(--gray); line-height: 1.55; max-width: 680px; font-weight: 300;
}

/* ─── SECCIONES GENÉRICAS ─────────────────────────────────── */
.section { padding: 160px 5%; position: relative; background: transparent; }
.section-alt { background: transparent; }
.section-dark { background: var(--black); color: var(--white); }

.section-inner { max-width: 1300px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gray); }

.section-headline {
  font-size: clamp(1.9rem, 3.95vw, 3.5rem); font-weight: 200;
  letter-spacing: -0.035em; line-height: 1; color: var(--black);
  margin-bottom: 16px; max-width: 900px;
}
.section-headline .b { font-weight: 500; color: var(--black); }
.section-headline .light { color: var(--gray); }
.section-dark .section-headline { color: var(--white); }
.section-dark .section-headline .light { color: var(--gray-light); }

.section-subtitle {
  font-size: 17px; color: var(--gray); max-width: 600px; line-height: 1.6;
  margin-bottom: 80px;
}

/* ─── EQUIPO ──────────────────────────────────────────────── */
.equipo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.equipo-card {
  background: var(--ice);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s var(--transition);
  display: flex; flex-direction: column;
}
.equipo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(33,33,33,0.08); }
.equipo-card.dark { background: var(--black); color: var(--white); }
.equipo-card-photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ice-soft);
}
.equipo-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform 0.6s var(--transition);
}
.equipo-card:hover .equipo-card-photo img { transform: scale(1.04); }
.equipo-card-info { padding: 28px 32px 0; }
.equipo-card-info strong { display: block; font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 4px; letter-spacing: -0.015em; }
.equipo-card.dark .equipo-card-info strong { color: var(--white); }
.equipo-card-info span { font-size: 13px; color: var(--gray); letter-spacing: 0.02em; }
.equipo-card h4 { font-size: 14px; font-weight: 600; margin: 24px 32px 8px; color: var(--black); letter-spacing: 0.01em; }
.equipo-card.dark h4 { color: var(--white); }
.equipo-card p { font-size: 14px; color: var(--gray); line-height: 1.65; padding: 0 32px; }
.equipo-card.dark p { color: var(--gray-light); }
.equipo-card > p:last-child { padding-bottom: 36px; }
.equipo-card ul { list-style: none; padding: 0 32px; margin-top: 16px; }
.equipo-card ul li {
  font-size: 14px; line-height: 1.6; color: var(--gray-light); margin-bottom: 14px;
  padding-left: 18px; position: relative;
}
.equipo-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--white); }

/* ─── SERVICIOS LISTA ─────────────────────────────────────── */
.servicios-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.servicios-list { display: flex; flex-direction: column; }
.servicio-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all 0.25s var(--transition); text-decoration: none; color: var(--black);
}
.servicio-item:hover { padding-left: 8px; }
.servicio-item:first-child { border-top: 1px solid var(--border); }
.servicio-name { font-size: 22px; font-weight: 400; letter-spacing: -0.018em; color: var(--black); }
.servicio-arrow {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition);
}
.servicio-arrow svg { width: 14px; height: 14px; }
.servicio-item:hover .servicio-arrow { background: var(--black); border-color: var(--black); color: var(--white); }

.servicio-destacado { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 4px 32px rgba(33,33,33,0.06); border: 1px solid var(--border); }
.servicio-destacado h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.servicio-destacado .tag { font-size: 11px; font-weight: 500; letter-spacing: 0.25em; color: var(--gray); text-transform: uppercase; margin-bottom: 16px; }
.servicio-destacado p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.servicio-destacado .precio { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.servicio-destacado .precio strong { color: var(--black); font-size: 16px; font-weight: 600; }
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--white);
  text-decoration: none; padding: 14px 28px; border-radius: 50px;
  font-size: 13.5px; font-weight: 500;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 16px rgba(33,33,33,0.08);
}
.btn-pill:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(33,33,33,0.18); }
.btn-pill:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn-pill:hover { background: var(--accent); color: var(--black); }
.btn-pill.outline { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-pill.outline:hover { background: var(--black); color: var(--white); }
.servicio-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; margin-bottom: 28px; }

/* ─── CATÁLOGO SERVICIOS ──────────────────────────────────── */
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.catalog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 36px;
  transition: all 0.3s var(--transition); text-decoration: none; color: var(--black); display: block;
}
.catalog-card:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(33,33,33,0.08); }
.catalog-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.catalog-card p { font-size: 14.5px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.catalog-card .precio-row { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border); }
.catalog-card .precio-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.catalog-card .precio-value { font-size: 17px; font-weight: 600; color: var(--black); }
.catalog-card .arrow { font-size: 20px; color: var(--gray); transition: all 0.3s; }
.catalog-card:hover .arrow { color: var(--black); transform: translateX(4px); }

/* ─── PROCESO PASOS ───────────────────────────────────────── */
.proceso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.proceso-step { padding: 32px 0; border-top: 1px solid var(--border); position: relative; }
.proceso-step-num { font-size: 13px; letter-spacing: 0.3em; color: var(--gray); margin-bottom: 12px; }
.proceso-step h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.015em; }
.proceso-step p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── RESULTADOS / GALERÍA ────────────────────────────────── */
.resultados-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.resultados-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resultado-card { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 3/4; cursor: pointer; }
.resultado-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6); transition: all 0.5s var(--transition); }
.resultado-card:hover img { filter: grayscale(0); transform: scale(1.03); }
.resultado-card .label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; color: var(--black); text-align: center; font-weight: 500;
  backdrop-filter: blur(8px); background: rgba(255,255,255,0.92);
}
.resultados-nav { display: flex; gap: 10px; }
.resultados-nav button {
  width: 44px; height: 44px; border: 1px solid var(--border); background: transparent;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition); font-family: inherit;
}
.resultados-nav button:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.resultados-nav svg { width: 14px; height: 14px; }

/* ─── TESTIMONIOS ─────────────────────────────────────────── */
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonio { background: var(--ice-soft); border-radius: 20px; padding: 32px; border: 1px solid transparent; transition: all 0.3s var(--transition); }
.testimonio:hover { border-color: var(--border); background: var(--white); }
.testimonio .stars { font-size: 14px; color: var(--black); letter-spacing: 3px; margin-bottom: 16px; }
.testimonio p { font-size: 15px; line-height: 1.65; color: var(--black); margin-bottom: 24px; min-height: 100px; }
.testimonio .who { display: flex; align-items: center; gap: 12px; }
.testimonio .who-avatar { width: 40px; height: 40px; background: var(--ice); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.testimonio .who-name { font-size: 13px; font-weight: 600; color: var(--black); }
.testimonio .who-svc { font-size: 12px; color: var(--gray); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; transition: all 0.25s; gap: 24px; }
.faq-q span { font-size: 18px; font-weight: 500; color: var(--black); letter-spacing: -0.015em; }
.faq-q-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.faq-q-icon::before { content: '+'; font-size: 18px; color: var(--black); transition: all 0.3s; font-weight: 300; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-a p { font-size: 15px; color: var(--gray); line-height: 1.7; padding-bottom: 24px; max-width: 700px; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-q-icon::before { content: '−'; }
.faq-item.open .faq-q-icon { background: var(--black); border-color: var(--black); }
.faq-item.open .faq-q-icon::before { color: var(--white); }

/* ─── CONTACTO ────────────────────────────────────────────── */
.contacto-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contacto-info-list { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contacto-info-block strong { display: block; font-size: 13px; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.contacto-info-block p, .contacto-info-block a { font-size: 16px; color: var(--black); line-height: 1.5; text-decoration: none; }
.contacto-info-block a:hover { color: var(--accent); }
.contacto-socials { display: flex; gap: 12px; margin-top: 32px; }
.contacto-socials a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition); text-decoration: none;
}
.contacto-socials a:hover { background: var(--accent); color: var(--black); }
.contacto-socials svg { width: 16px; height: 16px; }

.contacto-form { background: var(--ice-soft); border-radius: 24px; padding: 40px; }
.contacto-form-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.contacto-form-header span { font-size: 13px; color: var(--gray); }
.contacto-form input, .contacto-form textarea, .contacto-form select {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  padding: 14px 18px; border-radius: 12px; font-size: 14px; font-family: inherit;
  color: var(--black); margin-bottom: 14px; transition: all 0.25s var(--transition);
}
.contacto-form input:focus, .contacto-form textarea:focus, .contacto-form select:focus { outline: none; border-color: var(--black); }
.contacto-form textarea { resize: vertical; min-height: 100px; }
.contacto-form button {
  background: var(--black); color: var(--white); border: none; padding: 16px 32px;
  border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 0.3s var(--transition); font-family: inherit;
  display: inline-flex; align-items: center; gap: 10px;
}
.contacto-form button:hover { background: var(--accent); color: var(--black); }

/* ─── BLOG ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  transition: all 0.3s var(--transition); display: flex; flex-direction: column;
  text-decoration: none; color: var(--black);
}
.blog-card * { text-decoration: none; }
.blog-card.published { background: var(--ice-soft); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(33,33,33,0.08); }
.blog-card-img { aspect-ratio: 16/10; background: var(--ice); display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder { font-size: 48px; color: var(--gray-light); }
.blog-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat { font-size: 10px; letter-spacing: 0.25em; color: var(--gray); text-transform: uppercase; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; color: var(--black); letter-spacing: -0.018em; }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.blog-card .read-more { font-size: 13px; font-weight: 500; color: var(--black); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.blog-card .read-more:hover { color: var(--accent); }
.blog-card .pending { font-size: 12px; color: var(--gray); font-style: italic; }

/* ─── PRECIO HERO PAGES ───────────────────────────────────── */
.tipos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tipo-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 36px;
  transition: all 0.3s var(--transition);
}
.tipo-card.featured { background: var(--black); color: var(--white); border-color: var(--black); }
.tipo-card:hover { transform: translateY(-4px); }
.tipo-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.tipo-card .precio { font-size: 28px; font-weight: 200; letter-spacing: -0.03em; margin-bottom: 20px; }
.tipo-card .precio span { font-size: 13px; color: var(--gray); display: block; margin-bottom: 2px; font-weight: 400; letter-spacing: 0; }
.tipo-card.featured .precio span { color: var(--gray-light); }
.tipo-card p { font-size: 14.5px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.tipo-card.featured p { color: var(--gray-light); }
.tipo-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.tipo-card ul li { font-size: 14px; color: var(--gray); line-height: 1.6; padding-left: 18px; position: relative; margin-bottom: 8px; }
.tipo-card ul li::before { content: '·'; position: absolute; left: 4px; font-weight: 700; color: var(--black); }
.tipo-card.featured ul li { color: var(--gray-light); }
.tipo-card.featured ul li::before { color: var(--white); }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { padding: 64px 5% 32px; background: var(--black); color: var(--white); }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid #333; }
.footer-brand strong { font-size: 18px; display: block; margin-bottom: 6px; }
.footer-brand span { font-size: 11px; color: var(--gray-light); letter-spacing: 0.2em; text-transform: uppercase; }
.footer-brand p { font-size: 14px; color: var(--gray-light); line-height: 1.65; margin-top: 18px; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--white); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--gray-light); text-decoration: none; font-size: 14px; transition: color 0.2s var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); }

/* ─── WSP FLOAT ───────────────────────────────────────────── */
.wsp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  transition: all 0.3s var(--transition);
}
.wsp-float:hover { transform: scale(1.08); }
.wsp-float svg { width: 32px; height: 32px; }

/* ─── BANNER PRONTO ───────────────────────────────────────── */
.pronto-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  background: var(--black); color: var(--white);
  padding: 9px 5%; font-size: 12px; text-align: center; letter-spacing: 0.02em;
}
.pronto-banner strong { color: var(--accent); font-weight: 600; }
body.has-banner { padding-top: 36px; }
body.has-banner .navbar { top: 36px; }

/* ─── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── CTA BIG SECTION ─────────────────────────────────────── */
.cta-section { background: var(--black); color: var(--white); padding: 140px 5%; text-align: center; }
.cta-section h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 200; letter-spacing: -0.035em; line-height: 1; margin-bottom: 24px; }
.cta-section h2 .b { font-weight: 500; }
.cta-section h2 .light { color: var(--gray-light); }
.cta-section p { font-size: 17px; color: var(--gray-light); max-width: 580px; margin: 0 auto 48px; line-height: 1.6; }
.cta-section .buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-pill { background: var(--white); color: var(--black); }
.cta-section .btn-pill:hover { background: var(--accent); color: var(--black); }
.cta-section .btn-pill.outline { background: transparent; color: var(--white); border: 1px solid var(--white); }
.cta-section .btn-pill.outline:hover { background: var(--white); color: var(--black); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-float-1 { left: 5%; } .hero-float-2 { right: 5%; }
  .servicios-wrap { grid-template-columns: 1fr; gap: 40px; }
  .equipo-grid { grid-template-columns: 1fr; }
  .resultados-grid { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .contacto-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-location { display: none; }
  .hero-number { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .proceso-grid { grid-template-columns: 1fr 1fr; }
  .tipos-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 100px 5%; }
  .hero { padding: 110px 5% 60px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .resultados-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .resultados-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .proceso-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMACIONES (GSAP + CSS micro-interacciones) ────────── */

/* Reveal: estado inicial oculto (GSAP lo controla) */
.reveal { opacity: 0; transform: translateY(20px); will-change: transform, opacity; }
/* fallback si JS está deshabilitado */
.no-js .reveal { opacity: 1; transform: none; }

/* Cards hover lift más suave */
.equipo-card, .catalog-card, .testimonio, .servicio-destacado {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  will-change: transform;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(33,33,33,0.1);
  border-color: var(--gray-light);
}
.testimonio:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(33,33,33,0.08);
}

/* Servicio item arrow micro-rotación en hover */
.servicio-item:hover .servicio-arrow svg { transform: translateX(2px); }
.servicio-arrow svg { transition: transform 0.3s var(--transition); }

/* Punto verde "Disponible / Respuesta en menos de 2 horas" pulse */
.status-dot {
  position: relative; display: inline-block;
  width: 8px; height: 8px; background: #22C55E; border-radius: 50%;
  flex-shrink: 0;
}
.status-dot::before {
  content: ''; position: absolute; inset: -2px;
  background: #22C55E; border-radius: 50%; opacity: 0.6;
  animation: pronto-ring 2.2s ease-out infinite;
}
@keyframes pronto-ring {
  0% { transform: scale(1); opacity: 0.55; }
  80%, 100% { transform: scale(2.6); opacity: 0; }
}

/* Iconos sociales del footer + contacto: subida ligera */
.footer-col a, .contacto-socials a {
  transition: color 0.2s var(--transition), transform 0.25s var(--transition);
  display: inline-flex; align-items: center;
}
.contacto-socials a { width: 40px; height: 40px; }
.contacto-socials a:hover { transform: translateY(-3px); }

/* Logo navbar: micro escala en hover */
.nav-logo { transition: transform 0.3s var(--transition); }
.nav-logo:hover { transform: scale(1.02); }

/* WhatsApp flotante: pulse muy sutil */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55), 0 0 0 12px rgba(34, 197, 94, 0.08); }
}
.wa-float, [class*="wa-float"], a[href*="wa.me"][class*="float"] { animation: wa-pulse 3s ease-in-out infinite; }

/* Respeta usuarios con reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .status-dot::before { display: none; }
}
