/* ============================================================
   main.css — Invisible en la Red
   CSS unificado para: index.html, servicios.html, gracias.html
   ============================================================ */

:root {
  /* Paleta cremosa pastel */
  --cream: #FAF7F2;
  --cream-warm: #F5EFE6;
  --ink: #1A1A2E;
  --ink-soft: #4A4A5E;
  --ink-muted: #7A7A8E;

  /* Pasteles */
  --salmon: #FFD4C4;
  --peach: #FFB89E;
  --lavender: #D4C5F9;
  --violet: #9B7EBD;
  --mint: #B8E0D2;
  --butter: #FFE5A8;

  /* Acentos vibrantes */
  --coral: #FF4D6D;
  --electric: #FF6B35;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  background: var(--coral);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform 0.15s ease;
  top: 0; left: 0;
}
.cursor-blob {
  position: fixed;
  width: 60px;
  height: 60px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 9998;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  top: 0; left: 0;
}
.cursor-blob.hover {
  width: 100px;
  height: 100px;
  background: var(--lavender);
  border-color: transparent;
  mix-blend-mode: multiply;
}
@media (max-width: 980px) {
  body { cursor: auto; }
  .cursor, .cursor-blob { display: none; }
}

/* ===== ATMOSPHERIC BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* Floating blobs decoration */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatBlob 20s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--salmon);
  top: -10%; left: -10%;
  animation-duration: 25s;
}
.blob-2 {
  width: 600px; height: 600px;
  background: var(--lavender);
  top: 30%; right: -15%;
  animation-duration: 30s;
  animation-delay: -5s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: var(--mint);
  bottom: 10%; left: 20%;
  animation-duration: 35s;
  animation-delay: -10s;
}
.blob-4 {
  width: 350px; height: 350px;
  background: var(--butter);
  top: 60%; right: 30%;
  animation-duration: 28s;
  animation-delay: -15s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.15); }
  66% { transform: translate(-60px, 80px) scale(0.9); }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(250, 247, 242, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: all 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
  filter: invert(1) brightness(0.15) contrast(1.2);
}
.logo-footer img {
  height: 90px;
  filter: none;
}
@media (max-width: 980px) {
  .logo img { height: 56px; }
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--ink);
  color: var(--cream);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::before { transform: translateY(0); }

@media (max-width: 980px) { .nav-links { display: none; } }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 40px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  opacity: 0;
  animation: dropIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 48px;
  position: relative;
}
.hero h1 .word {
  display: inline-block;
  position: relative;
  opacity: 0;
  animation: revealWord 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.4s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.5s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.6s; }
.hero h1 .word:nth-child(5) { animation-delay: 0.7s; }
.hero h1 .word:nth-child(6) { animation-delay: 0.8s; }
.hero h1 .word:nth-child(7) { animation-delay: 0.9s; }
.hero h1 .word:nth-child(8) { animation-delay: 1.0s; }

@keyframes revealWord {
  from { opacity: 0; transform: translateY(80px) rotate(8deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  position: relative;
  color: var(--violet);
}
.hero h1 em::before {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: var(--lavender);
  z-index: -1;
  border-radius: 50% 20% 60% 30% / 40% 50% 30% 60%;
  opacity: 0;
  animation: blobReveal 1s cubic-bezier(0.2, 1, 0.3, 1) 1.4s forwards;
}
@keyframes blobReveal {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 0.8; transform: scale(1); }
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  top: 55%;
  height: 6px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 1s cubic-bezier(0.85, 0, 0.15, 1) 1.6s forwards;
  border-radius: 4px;
}
@keyframes strike { to { transform: scaleX(1); } }

.hero h1 .pixelate {
  display: inline-block;
  position: relative;
}
.hero h1 .pixelate-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--peach) 2px, transparent 3px),
    radial-gradient(circle at 60% 70%, var(--lavender) 2px, transparent 3px),
    radial-gradient(circle at 80% 20%, var(--mint) 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, var(--butter) 2px, transparent 3px);
  background-size: 30px 30px;
  opacity: 0;
  animation: pixelFade 2s ease 2s infinite;
}
@keyframes pixelFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  border: none;
  cursor: none;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-primary span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -15px rgba(255, 77, 109, 0.4); }

.btn-arrow {
  width: 24px; height: 24px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.btn-primary:hover .btn-arrow { transform: rotate(-45deg); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
}

/* Hero visual: mockup de Google */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1.2s ease 1s forwards;
}
.search-mockup {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 30px 80px -20px rgba(26, 26, 46, 0.15),
    0 0 0 1px rgba(26, 26, 46, 0.06);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.search-mockup:hover { transform: rotate(0deg) scale(1.02); }
.search-mockup::before {
  content: 'COMO TE VEN';
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--coral);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-warm);
  border-radius: 999px;
  margin-bottom: 24px;
}
.search-bar svg { color: var(--ink-muted); flex-shrink: 0; }
.search-bar-text {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.search-result {
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  position: relative;
  overflow: hidden;
}
.search-result:last-child { border-bottom: none; }
.search-result.vanish {
  animation: vanishLoop 6s ease infinite;
}
.search-result.vanish:nth-child(2) { animation-delay: 0s; }
.search-result.vanish:nth-child(3) { animation-delay: 2s; }
.search-result.vanish:nth-child(4) { animation-delay: 4s; }
@keyframes vanishLoop {
  0%, 60% { opacity: 1; filter: blur(0); transform: translateX(0); }
  75% { opacity: 0; filter: blur(10px); transform: translateX(-30px); }
  76%, 100% { opacity: 1; filter: blur(0); transform: translateX(0); }
}
.search-result-url {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 4px;
  font-family: var(--mono);
}
.search-result-title {
  font-size: 14px;
  color: #1a0dab;
  font-weight: 500;
  margin-bottom: 4px;
}
.search-result-snippet {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.search-result-badge {
  position: absolute;
  top: 18px;
  right: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  opacity: 0;
  animation: badgeShow 6s ease infinite;
}
.search-result.vanish:nth-child(2) .search-result-badge { animation-delay: 0s; }
.search-result.vanish:nth-child(3) .search-result-badge { animation-delay: 2s; }
.search-result.vanish:nth-child(4) .search-result-badge { animation-delay: 4s; }
@keyframes badgeShow {
  0%, 50% { opacity: 0; transform: translateY(-10px); }
  60%, 70% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; }
}

.search-after {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, var(--mint), var(--lavender));
  border-radius: 16px;
  text-align: center;
}
.search-after-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 6px;
}
.search-after-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-style: italic;
}

/* Floating decorative cards */
.float-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(26, 26, 46, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card-1 {
  top: -30px; right: -40px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 80px; left: -50px;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}
.float-card-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 980px) {
  .float-card { display: none; }
}

/* Trust strip */
.hero-trust {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trust-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 40px 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '✦';
  color: var(--coral);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION GENERAL ===== */
.section {
  padding: 140px 0;
  position: relative;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 980px) {
  .section-header { grid-template-columns: 1fr; gap: 32px; }
}

.section-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--coral);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--violet);
  position: relative;
  display: inline-block;
}
.section-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 14px;
  background: var(--butter);
  z-index: -1;
  opacity: 0.7;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
}

/* ===== INTRO / STATS ===== */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 980px) { .intro-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .intro-cards { grid-template-columns: 1fr; } }

.stat {
  padding: 36px 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.stat:nth-child(1) { background: var(--salmon); }
.stat:nth-child(2) { background: var(--lavender); }
.stat:nth-child(3) { background: var(--mint); }
.stat:nth-child(4) { background: var(--butter); }

.stat:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 30px 60px -20px rgba(26, 26, 46, 0.2);
}

.stat-num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}
.stat-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1.5px solid rgba(26, 26, 46, 0.15);
  font-weight: 600;
}

.intro-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 980px) { .intro-text-grid { grid-template-columns: 1fr; } }
.intro-text-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.intro-text-grid p strong {
  color: var(--ink);
  font-weight: 600;
  background: var(--butter);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== SERVICES GRID (index.html) ===== */
.services-section {
  background: var(--ink);
  color: var(--cream);
  border-radius: 60px 60px 0 0;
  margin-top: 60px;
}
.services-section .section-tag { color: var(--cream); }
.services-section .section-tag::before { background: var(--coral); }
.services-section .section-title { color: var(--cream); }
.services-section .section-title em {
  color: var(--peach);
}
.services-section .section-title em::after {
  background: rgba(255, 184, 158, 0.2);
}
.services-section .section-lead { color: rgba(250, 247, 242, 0.7); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-color, var(--peach));
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 0;
}
.service-card:nth-child(1) { --bg-color: var(--peach); }
.service-card:nth-child(2) { --bg-color: var(--lavender); }
.service-card:nth-child(3) { --bg-color: var(--mint); }
.service-card:nth-child(4) { --bg-color: var(--butter); }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { color: var(--ink); border-color: var(--bg-color); }
.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-link {
  color: var(--ink);
}
.service-card:hover .service-desc strong { color: var(--ink); background: rgba(26, 26, 46, 0.1); }
.service-card:hover .service-link::after { background: var(--ink); }
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--bg-color);
  transform: rotate(360deg);
}
.service-card:hover .service-num-big {
  color: rgba(26, 26, 46, 0.08);
}

.service-card > * { position: relative; z-index: 1; transition: color 0.4s; }

.service-num-big {
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.05);
  z-index: 0;
  font-style: italic;
  transition: color 0.4s;
}

.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-num::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--peach);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--cream);
}

.service-desc {
  color: rgba(250, 247, 242, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}
.service-desc strong {
  color: var(--cream);
  font-weight: 600;
  background: rgba(255, 184, 158, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.service-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  position: relative;
}
.service-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--peach);
  transition: width 0.3s;
}
.service-link:hover::after { width: 100%; }
.service-link svg { transition: transform 0.3s; }
.service-link:hover svg { transform: translateX(6px); }

/* CTA Ver todos los servicios */
.services-cta-wrap {
  margin-top: 60px;
  padding: 48px 40px;
  background: rgba(250, 247, 242, 0.05);
  border: 1.5px dashed rgba(250, 247, 242, 0.2);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.services-cta-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: rgba(250, 247, 242, 0.85);
  max-width: 560px;
  font-weight: 300;
}
.btn-services-all {
  background: var(--peach);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.btn-services-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-services-all span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-services-all:hover::before { transform: translateY(0); }
.btn-services-all:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -15px rgba(255, 184, 158, 0.4); }
.btn-services-all .btn-arrow {
  width: 24px; height: 24px;
  background: var(--ink);
  color: var(--peach);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.btn-services-all:hover .btn-arrow { transform: rotate(-45deg); background: var(--ink); color: var(--cream); }

@media (max-width: 768px) {
  .services-cta-wrap { flex-direction: column; align-items: stretch; text-align: center; padding: 36px 28px; }
  .services-cta-text { font-size: 18px; }
}

/* ===== PROCESS / Cómo funciona ===== */
.process-section {
  background: var(--cream);
  padding-top: 180px;
  border-radius: 0 0 60px 60px;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; } }

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px);
  opacity: 0.2;
}
@media (max-width: 980px) { .process-grid::before { display: none; } }

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  font-weight: 300;
  position: relative;
  transition: all 0.4s;
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  opacity: 0.3;
  animation: rotateBorder 20s linear infinite;
}
@keyframes rotateBorder { to { transform: rotate(360deg); } }
.step:nth-child(1) .step-circle { background: var(--salmon); color: var(--ink); }
.step:nth-child(2) .step-circle { background: var(--lavender); color: var(--ink); }
.step:nth-child(3) .step-circle { background: var(--mint); color: var(--ink); }

.step:hover .step-circle { transform: scale(1.05) rotate(-5deg); }

.step-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: 12px;
}
.step-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
}

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
@media (max-width: 980px) { .testi-row { grid-template-columns: 1fr; } }

.testi-card {
  padding: 40px 36px;
  border-radius: 28px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.testi-card:nth-child(1) { background: var(--salmon); transform: rotate(-1deg); }
.testi-card:nth-child(2) { background: var(--lavender); transform: rotate(1deg); margin-top: 20px; }
.testi-card:nth-child(3) { background: var(--mint); transform: rotate(-1deg); }
.testi-card:hover {
  transform: rotate(0) translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(26, 26, 46, 0.2);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}
.testi-stars svg {
  width: 18px; height: 18px;
  color: var(--ink);
  fill: var(--ink);
}

.testi-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 36px;
  font-weight: 300;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1.5px solid rgba(26, 26, 46, 0.15);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--ink-soft); font-family: var(--mono); margin-top: 2px; }

.testi-disclaimer {
  margin-top: 60px;
  padding: 24px 32px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-family: var(--mono);
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

/* ===== CTA (index.html) ===== */
.cta-section {
  padding: 100px 0 140px;
  background: var(--cream);
}
.cta-box {
  background: var(--ink);
  color: var(--cream);
  border-radius: 48px;
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob-1, .cta-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-blob-1 {
  width: 300px; height: 300px;
  background: var(--coral);
  top: -100px; left: -100px;
  opacity: 0.5;
  animation: floatBlob 15s ease-in-out infinite;
}
.cta-blob-2 {
  width: 350px; height: 350px;
  background: var(--violet);
  bottom: -120px; right: -100px;
  opacity: 0.4;
  animation: floatBlob 20s ease-in-out infinite reverse;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin-bottom: 32px;
  position: relative;
}
.cta-box h2 em {
  font-style: italic;
  color: var(--peach);
  position: relative;
}
.cta-box h2 em::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  bottom: 5px;
  height: 12px;
  background: rgba(255, 184, 158, 0.25);
  z-index: -1;
}
.cta-box p {
  color: rgba(250, 247, 242, 0.8);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
  position: relative;
}
.cta-box .btn-primary {
  background: var(--coral);
  color: var(--cream);
  position: relative;
}
.cta-box .btn-primary::before { background: var(--cream); }
.cta-box .btn-primary:hover span { color: var(--ink); }
.cta-box .btn-primary:hover .btn-arrow { background: var(--ink); color: var(--cream); }
.cta-box .btn-arrow { background: var(--cream); color: var(--ink); }

/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  margin-top: 60px;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-item {
  padding: 24px 0;
  border-bottom: 1.5px solid rgba(26, 26, 46, 0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
}

form {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow:
    0 30px 80px -20px rgba(26, 26, 46, 0.1),
    0 0 0 1px rgba(26, 26, 46, 0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; position: relative; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--cream-warm);
  border: 1.5px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  transition: all 0.3s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: white;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-checkbox input { margin-top: 3px; accent-color: var(--coral); width: 18px; height: 18px; }
.form-checkbox a { color: var(--coral); text-decoration: underline; }
.form-checkbox label { font-family: var(--sans); font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--ink-soft); margin-bottom: 0; }

/* Honeypot anti-spam */
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* Float card label */
.float-card-label { font-size: 11px; color: var(--ink-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* Float card icon color variant */
.float-card-icon--mint { background: var(--mint); }

/* Trust icon color variants */
.trust-icon--lavender { background: var(--lavender); }
.trust-icon--peach { background: var(--peach); }
.trust-icon--butter { background: var(--butter); }

/* Stat num text size variant (RGPD, Legal) */
.stat-num--md { font-size: 64px; }

/* Accent inline text */
.text-peach { color: var(--peach); }

/* Contact section social buttons */
.contact-social-links { display: flex; gap: 10px; margin-top: 12px; }
.contact-social-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: opacity 0.3s; }
.contact-social-btn:hover { opacity: 0.8; }

.form-submit {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: none;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover::before { transform: translateY(0); }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -15px rgba(255, 77, 109, 0.4); }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 40px;
  border-radius: 60px 60px 0 0;
}
.footer-mega-text {
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin-bottom: 80px;
  text-align: center;
}
.footer-mega-text em {
  font-style: italic;
  color: var(--peach);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-brand p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 14px;
  margin-top: 20px;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
}
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--peach);
  transition: width 0.3s;
}
.footer-col a:hover { color: var(--peach); }
.footer-col a:hover::after { width: 100%; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 247, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.footer-social a:hover {
  background: var(--peach);
  color: var(--ink);
  border-color: var(--peach);
  transform: translateY(-4px) rotate(-8deg);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
  letter-spacing: 0.05em;
}

/* ===== Reveal animations on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ===== SERVICIOS LIST (servicios.html) ===== */
.page-hero {
  padding: 200px 0 80px;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb-sep { color: var(--ink-muted); }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 1100px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.4s forwards;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--violet);
  position: relative;
}
.page-hero h1 em::before {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: var(--lavender);
  z-index: -1;
  border-radius: 50% 20% 60% 30% / 40% 50% 30% 60%;
  opacity: 0;
  animation: blobReveal 1s cubic-bezier(0.2, 1, 0.3, 1) 1.2s forwards;
}

.page-hero-lead {
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.page-hero-lead strong { color: var(--ink); font-weight: 600; }

/* ===== SERVICES LIST (formato grande, alternando) ===== */
.services-list {
  padding: 80px 0 120px;
  position: relative;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
  align-items: start;
}
.service-block:last-child { border-bottom: 1px solid rgba(26, 26, 46, 0.1); }

@media (max-width: 980px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
}

.service-block-left {
  position: sticky;
  top: 140px;
}
@media (max-width: 980px) {
  .service-block-left { position: static; }
}

.service-block-num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.9;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}
.service-block-num::after {
  content: '';
  position: absolute;
  inset: -10% -8%;
  background: var(--bg-color, var(--peach));
  z-index: -1;
  border-radius: 50% 20% 60% 30% / 40% 50% 30% 60%;
  opacity: 0.7;
}

.service-block:nth-child(1) .service-block-num { --bg-color: var(--peach); }
.service-block:nth-child(2) .service-block-num { --bg-color: var(--lavender); }
.service-block:nth-child(3) .service-block-num { --bg-color: var(--mint); }
.service-block:nth-child(4) .service-block-num { --bg-color: var(--butter); }
.service-block:nth-child(5) .service-block-num { --bg-color: var(--salmon); }
.service-block:nth-child(6) .service-block-num { --bg-color: var(--lavender); }
.service-block:nth-child(7) .service-block-num { --bg-color: var(--mint); }

.service-block-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.service-block-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--coral);
}

.service-block-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg-color-icon, var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-top: 24px;
}
.service-block:nth-child(1) .service-block-icon { --bg-color-icon: var(--peach); }
.service-block:nth-child(2) .service-block-icon { --bg-color-icon: var(--lavender); }
.service-block:nth-child(3) .service-block-icon { --bg-color-icon: var(--mint); }
.service-block:nth-child(4) .service-block-icon { --bg-color-icon: var(--butter); }
.service-block:nth-child(5) .service-block-icon { --bg-color-icon: var(--salmon); }
.service-block:nth-child(6) .service-block-icon { --bg-color-icon: var(--lavender); }
.service-block:nth-child(7) .service-block-icon { --bg-color-icon: var(--mint); }

.service-block-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}

.service-block-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.service-block-desc strong {
  color: var(--ink);
  font-weight: 600;
}
.service-block-desc + .service-block-desc {
  margin-top: -8px;
}

.service-checklist {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 16px 20px;
  background: rgba(255, 184, 158, 0.12);
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 46, 0.06);
}
.service-block:nth-child(2) .service-checklist li { background: rgba(212, 197, 249, 0.18); }
.service-block:nth-child(3) .service-checklist li { background: rgba(184, 224, 210, 0.2); }
.service-block:nth-child(4) .service-checklist li { background: rgba(255, 229, 168, 0.2); }
.service-block:nth-child(5) .service-checklist li { background: rgba(255, 212, 196, 0.2); }
.service-block:nth-child(6) .service-checklist li { background: rgba(212, 197, 249, 0.18); }
.service-block:nth-child(7) .service-checklist li { background: rgba(184, 224, 210, 0.2); }

.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }

.service-block-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-block-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateY(101%);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}
.service-block-cta span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }
.service-block-cta:hover::before { transform: translateY(0); }
.service-block-cta:hover { transform: translateY(-2px); }

/* ===== TRUST PILLARS (servicios.html) ===== */
.trust-section {
  background: var(--ink);
  color: var(--cream);
  border-radius: 60px 60px 0 0;
  padding: 120px 0;
}
.trust-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.trust-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 24px;
  display: inline-block;
}
.trust-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}
.trust-title em {
  font-style: italic;
  color: var(--peach);
}
.trust-lead {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 36px 28px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg, var(--peach));
}
.pillar:nth-child(1) { --bg: var(--peach); }
.pillar:nth-child(2) { --bg: var(--lavender); }
.pillar:nth-child(3) { --bg: var(--mint); }
.pillar:nth-child(4) { --bg: var(--butter); }
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--bg);
  background: rgba(250, 247, 242, 0.06);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(250, 247, 242, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  margin-bottom: 24px;
  transition: all 0.4s;
}
.pillar:hover .pillar-icon {
  background: var(--bg);
  color: var(--ink);
  transform: rotate(-5deg) scale(1.05);
}
.pillar-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.65);
}
.pillar-desc strong {
  color: var(--cream);
  font-weight: 600;
}

/* ===== CTA (servicios.html) ===== */
.cta-section.servicios-cta {
  background: var(--ink);
  padding: 60px 0 120px;
}
.cta-section.servicios-cta .cta-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  color: var(--ink);
}
.cta-section.servicios-cta .cta-box h2 em {
  color: var(--violet);
}
.cta-section.servicios-cta .cta-box h2 em::after {
  background: var(--lavender);
  height: 14px;
  opacity: 0.7;
}
.cta-section.servicios-cta .cta-box p { color: var(--ink-soft); }
.cta-section.servicios-cta .cta-blob-1 { opacity: 0.25; }
.cta-section.servicios-cta .cta-blob-2 { opacity: 0.2; }
.cta-section.servicios-cta .cta-box .btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.cta-section.servicios-cta .cta-box .btn-primary::before { background: var(--coral); }
.cta-section.servicios-cta .cta-box .btn-primary:hover span { color: var(--cream); }
.cta-section.servicios-cta .cta-box .btn-arrow { background: var(--cream); color: var(--ink); }

/* Footer en servicios.html (borde en vez de padding-top grande) */
.footer.servicios-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 0;
}
.footer.servicios-footer .footer-grid {
  padding-top: 0;
  border-top: none;
  margin-bottom: 60px;
}

/* ===== GRACIAS (gracias.html) ===== */
body.gracias-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0 120px;
  position: relative;
  z-index: 2;
}

.thanks-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Check animado en círculo */
.check-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 48px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: scaleIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.2s forwards;
}
.check-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed var(--ink);
  opacity: 0.25;
  animation: rotateBorder 30s linear infinite;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.check-svg {
  width: 70px;
  height: 70px;
  stroke: var(--ink);
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.7s ease-out 0.9s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.thanks-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) 1.4s forwards;
}
.thanks-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}

.thanks-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 1, 0.3, 1) 1.6s forwards;
}
.thanks-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--violet);
  position: relative;
  display: inline-block;
}
.thanks-title em::before {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: var(--lavender);
  z-index: -1;
  border-radius: 50% 20% 60% 30% / 40% 50% 30% 60%;
  opacity: 0;
  animation: blobReveal 1s cubic-bezier(0.2, 1, 0.3, 1) 2.2s forwards;
}

.thanks-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.9s forwards;
}
.thanks-lead strong { color: var(--ink); font-weight: 600; }

/* Cards de info */
.thanks-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.9s ease 2.2s forwards;
}
@media (max-width: 768px) { .thanks-info { grid-template-columns: 1fr; } }

.info-card {
  padding: 28px 24px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}
.info-card:nth-child(1) { background: var(--salmon); }
.info-card:nth-child(2) { background: var(--lavender); }
.info-card:nth-child(3) { background: var(--butter); }
.info-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 20px 40px -15px rgba(26, 26, 46, 0.15);
}

.info-num {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 6px;
  font-weight: 600;
}
.info-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

/* Botones en gracias */
.thanks-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 2.5s forwards;
}

/* Gracias footer — sin padding-top doble */
.footer.gracias-footer {
  padding: 80px 0 40px;
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 2;
}
.footer.gracias-footer .footer-grid {
  padding-top: 32px;
  border-top: none;
}
