/* ============================================================
   PJC Solutions · Plenitud Jireh Corporation
   Hoja de estilos compartida (sitio multipágina)
   ============================================================ */

:root {
  --teal: #0a7a8f;
  --teal-light: #5dd0e0;
  --teal-soft: #d8f0f5;
  --dark: #0d2137;
  --dark-2: #0a1a24;
  --cream: #f7f4ef;
  --mid: #e2ddd6;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; }
a { color: inherit; }

/* ====================== NAV ====================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,26,36,0.96); backdrop-filter: blur(16px);
  padding: 18px 60px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-logo-icon svg { width: 24px; height: 24px; }
.nav-logo-text { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.nav-logo-text span { color: var(--teal-light); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a.active { color: #fff; }
.nav-links a.active:not(.nav-cta)::after {
  content: ''; display: block; height: 2px; margin-top: 5px; border-radius: 2px;
  background: var(--teal-light);
}
.nav-cta { background: var(--teal); color: #fff !important; padding: 10px 22px; border-radius: 40px; font-weight: 600 !important; font-size: 13px !important; transition: opacity 0.2s !important; }
.nav-cta:hover { opacity: 0.85; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity: 0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ====================== TIPOGRAFÍA / UTILS ====================== */
.section-inner { max-width: 1100px; margin: 0 auto; }
.label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 12px; }
.label.tl { color: var(--teal-light); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
h2 em { color: var(--teal); font-style: normal; }
h2.light { color: #fff; }
h2.light em { color: var(--teal-light); }
.section-desc { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.8; margin-bottom: 56px; }
.section-desc.light { color: rgba(255,255,255,0.5); }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: #fff; padding: 16px 36px; border-radius: 60px; font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 40px rgba(10,122,143,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(10,122,143,0.5); }
.btn-secondary { font-size: 15px; color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-secondary:hover { color: rgba(255,255,255,0.8); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid var(--teal); color: var(--teal); padding: 14px 30px; border-radius: 60px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s; }
.btn-ghost:hover { background: var(--teal); color: #fff; }

/* ====================== HERO (home) ====================== */
.hero { min-height: 100vh; background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 45%, #0a3a48 100%); display: flex; align-items: center; padding: 140px 60px 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -150px; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(10,122,143,0.12); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -250px; left: -150px; width: 800px; height: 800px; border-radius: 50%; border: 1px solid rgba(10,122,143,0.08); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; width: 100%; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(10,122,143,0.15); border: 1px solid rgba(10,122,143,0.3); border-radius: 40px; padding: 8px 18px; font-size: 12px; color: var(--teal-light); font-weight: 600; letter-spacing: 1px; margin-bottom: 32px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 68px); color: #fff; line-height: 1.05; font-weight: 900; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 48px; font-weight: 300; max-width: 480px; }
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { font-size: 13px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 12px; }

.hero-right { position: relative; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.hero-photo::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,26,36,0.65)); }
.hero-photo img { width: 100%; display: block; aspect-ratio: 4/3.4; object-fit: cover; }
.hero-photo-badge { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 4; background: rgba(10,26,36,0.55); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.hpb-left strong { font-size: 14px; color: #fff; display: block; }
.hpb-left p { font-size: 12px; color: rgba(255,255,255,0.6); }
.hpb-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; flex-shrink: 0; }
.hero-float { position: absolute; top: -22px; left: -22px; z-index: 5; background: var(--white); border-radius: 16px; padding: 14px 18px; box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.hero-float strong { font-family: 'DM Mono', monospace; font-size: 24px; color: var(--teal); display: block; line-height: 1; }
.hero-float span { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ====================== PAGE HERO (páginas internas) ====================== */
.page-hero { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 55%, #0a3a48 100%); padding: 170px 60px 90px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -180px; right: -120px; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(10,122,143,0.12); }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); color: #fff; line-height: 1.08; font-weight: 900; margin-bottom: 18px; letter-spacing: -1px; max-width: 760px; }
.page-hero h1 em { font-style: italic; color: var(--teal-light); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 560px; font-weight: 300; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.breadcrumb a { color: var(--teal-light); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ====================== LOGOS / CLIENTES ====================== */
.logos { background: var(--dark); padding: 44px 60px; display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.06); }
.logos-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 600; white-space: nowrap; }
.logo-client { background: #fff; border-radius: 14px; height: 70px; padding: 0 26px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.28); transition: transform 0.25s, box-shadow 0.25s; }
.logo-client:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.35); }
.logo-client img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.logo-client.invert img { filter: invert(1) brightness(0.35); }

/* ====================== PROBLEMA / DOLORES ====================== */
.problema { padding: 100px 60px; background: var(--cream); }
.dolores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dolor { background: var(--white); border-radius: 16px; padding: 28px 24px; border-top: 3px solid var(--teal); box-shadow: 0 2px 20px rgba(0,0,0,0.05); transition: transform 0.2s; }
.dolor:hover { transform: translateY(-4px); }
.dolor:nth-child(even) { border-top-color: var(--dark); }
.dolor-icon { font-size: 28px; margin-bottom: 14px; }
.dolor h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.dolor p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ====================== SOLUCIÓN ====================== */
.solucion { padding: 100px 60px; background: var(--white); }
.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sol-visual { position: relative; }
.sol-main-card { background: linear-gradient(135deg, var(--dark-2), var(--dark)); border-radius: 24px; padding: 40px; border: 1px solid rgba(10,122,143,0.2); position: relative; overflow: hidden; }
.sol-main-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.sol-card-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); font-weight: 700; margin-bottom: 16px; }
.sol-card-title { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 24px; line-height: 1.2; }
.sol-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sol-stat { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 18px; border: 1px solid rgba(255,255,255,0.07); }
.sol-stat-num { font-family: 'DM Mono', monospace; font-size: 28px; font-weight: 500; color: var(--teal-light); margin-bottom: 4px; }
.sol-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); }
.sol-float { position: absolute; bottom: -20px; right: -20px; background: var(--teal); border-radius: 16px; padding: 20px 24px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(10,122,143,0.4); }
.sol-float-icon { font-size: 24px; }
.sol-float-text { font-size: 13px; font-weight: 600; color: #fff; }
.sol-float-sub { font-size: 11px; color: rgba(255,255,255,0.6); }
.sol-puntos { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.sol-punto { display: flex; gap: 16px; align-items: flex-start; }
.sp-num { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'DM Mono', monospace; }
.sp-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.sp-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ====================== PREVIEW DE SERVICIOS (home) ====================== */
.serv-preview { padding: 100px 60px; background: var(--dark); }
.serv-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.spv-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 28px 24px; transition: all .25s; display: block; text-decoration: none; }
.spv-card:hover { background: rgba(10,122,143,0.1); transform: translateY(-4px); }
.spv-icon { height: 46px; margin-bottom: 16px; display: flex; align-items: center; }
.spv-icon img { height: 44px; width: 44px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.spv-icon svg { height: 44px; width: 44px; stroke: #fff; fill: none; opacity: 0.9; }
.spv-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: #fff; margin-bottom: 8px; }
.spv-card p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.serv-preview-foot { text-align: center; margin-top: 48px; }

/* ====================== SERVICIOS (filas con foto real) ====================== */
.serv-list { padding: 100px 60px; background: var(--white); }
.serv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; padding: 56px 0; border-bottom: 1px solid var(--mid); }
.serv-row:last-child { border-bottom: none; }
.serv-row.flip .serv-row-media { order: 2; }
.serv-row-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(13,33,55,0.18); }
.serv-row-media::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.serv-row-media img { width: 100%; display: block; aspect-ratio: 4/3.2; object-fit: cover; transition: transform .6s ease; }
.serv-row:hover .serv-row-media img { transform: scale(1.04); }
.serv-row-num { position: absolute; left: 16px; bottom: 16px; z-index: 3; font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500; color: #fff; background: rgba(10,26,36,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); padding: 6px 12px; border-radius: 8px; }
.serv-row-ico { width: 54px; height: 54px; border-radius: 13px; background: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 8px 22px rgba(10,122,143,0.32); }
.serv-row-ico img { height: 28px; width: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.serv-row-ico svg { height: 28px; width: 28px; stroke: #fff; fill: none; }
.serv-row-body h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.serv-row-body p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.serv-feats { display: flex; flex-direction: column; gap: 10px; }
.serv-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.serv-feat::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ====================== SERVICIOS (grid oscuro, reutilizable) ====================== */
.servicios { padding: 100px 60px; background: var(--dark); }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.servicio { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.servicio::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity 0.25s; }
.servicio:hover { background: rgba(10,122,143,0.1); transform: translateY(-4px); }
.servicio:hover::before { opacity: 1; }
.serv-icon { height: 50px; margin-bottom: 18px; display: flex; align-items: center; }
.serv-icon img { height: 48px; width: 48px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; transition: .25s; }
.serv-icon svg { height: 46px; width: 46px; stroke: #fff; fill: none; opacity: 0.9; }
.servicio:hover .serv-icon img { opacity: 1; transform: scale(1.05); }
.servicio h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; margin-bottom: 10px; }
.servicio p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 16px; }
.serv-tag { font-size: 11px; color: var(--teal-light); font-weight: 600; letter-spacing: 0.5px; }

/* ====================== PROCESO ====================== */
.proceso { padding: 100px 60px; background: var(--cream); }
.pasos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.paso { background: var(--white); border-radius: 20px; padding: 36px 28px; position: relative; box-shadow: 0 2px 20px rgba(0,0,0,0.05); transition: transform 0.2s; }
.paso:hover { transform: translateY(-4px); }
.paso-num { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: var(--mid); line-height: 1; margin-bottom: 16px; }
.paso h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.paso p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.paso-arrow { position: absolute; top: 50%; right: -16px; transform: translateY(-50%); color: var(--teal); font-size: 20px; z-index: 2; }

/* ====================== OFERTA ====================== */
.oferta { padding: 100px 60px; background: var(--dark-2); text-align: center; }
.oferta-inner { max-width: 780px; margin: 0 auto; }
.oferta-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 28px; padding: 56px 48px; margin-top: 48px; position: relative; overflow: hidden; text-align: left; }
.oferta-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.oferta-badge { display: inline-block; background: rgba(10,122,143,0.2); border: 1px solid rgba(10,122,143,0.4); color: var(--teal-light); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.oferta-incluye { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.inc-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.inc-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(10,122,143,0.2); border: 1px solid var(--teal); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--teal-light); flex-shrink: 0; margin-top: 1px; }
.inc-text h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.inc-text p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.garantia-strip { background: linear-gradient(135deg, rgba(10,122,143,0.15), rgba(10,122,143,0.05)); border: 1px solid rgba(10,122,143,0.2); border-radius: 14px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.garantia-strip .g-icon { font-size: 32px; flex-shrink: 0; }
.garantia-strip h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.garantia-strip p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.oferta-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-wa { display: inline-flex; align-items: center; gap: 12px; background: var(--teal); color: #fff; padding: 18px 36px; border-radius: 60px; font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 40px rgba(10,122,143,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.cta-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(10,122,143,0.5); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ====================== NOSOTROS / EQUIPO ====================== */
.angela { padding: 100px 60px; background: var(--white); }
.angela-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.angela-visual { background: linear-gradient(135deg, var(--dark-2), var(--dark)); border-radius: 28px; padding: 40px; border: 1px solid rgba(10,122,143,0.2); text-align: center; position: relative; overflow: hidden; }
.angela-visual::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.angela-photo { width: 100%; border-radius: 18px; overflow: hidden; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.angela-photo img { width: 100%; display: block; aspect-ratio: 4/3.6; object-fit: cover; object-position: center top; }
.angela-visual h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 6px; }
.angela-visual .cargo { font-size: 13px; color: var(--teal-light); font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; }
.angela-credenciales { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.angela-cred { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.angela-cred::before { content: '✓'; color: var(--teal); font-weight: 700; }
.angela-text h2 { margin-bottom: 16px; }
.angela-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.angela-valores { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.valor { display: flex; gap: 14px; align-items: flex-start; }
.valor-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.valor h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.valor p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ====================== MISIÓN / VISIÓN / PROPÓSITO ====================== */
.mvp { padding: 100px 60px; background: var(--cream); }
.mvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.mvp-card { background: var(--white); border-radius: 22px; padding: 40px 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.05); border-top: 3px solid var(--teal); transition: transform .2s; }
.mvp-card:hover { transform: translateY(-5px); }
.mvp-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.mvp-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--dark); margin-bottom: 12px; }
.mvp-card p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ====================== TESTIMONIOS ====================== */
.testimonios { padding: 100px 60px; background: var(--cream); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonio { background: var(--white); border-radius: 20px; padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.05); position: relative; }
.test-quote { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--teal-soft); line-height: 0.8; margin-bottom: 16px; }
.testimonio p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-autor { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--mid); }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.test-nombre { font-size: 14px; font-weight: 700; color: var(--dark); }
.test-cargo { font-size: 12px; color: var(--muted); }

/* ====================== CONTACTO ====================== */
.contacto { padding: 100px 60px; background: var(--white); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; max-width: 1100px; margin: 0 auto; }
.contacto-info h2 { margin-bottom: 18px; }
.contacto-info > p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.cinfo-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cinfo-item h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.cinfo-item p, .cinfo-item a { font-size: 14px; color: var(--muted); line-height: 1.5; text-decoration: none; }
.cinfo-item a:hover { color: var(--teal); }

.form-card { background: var(--cream); border: 1px solid var(--mid); border-radius: 24px; padding: 40px; }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--dark); margin-bottom: 8px; }
.form-card .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 7px; letter-spacing: .3px; }
.field input, .field textarea, .field select { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text); background: var(--white); border: 1px solid var(--mid); border-radius: 12px; padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,122,143,0.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 12px; margin-top: 6px; }
.form-actions button { flex: 1; cursor: pointer; border: none; justify-content: center; }
.form-actions .btn-secondary { background: var(--dark); color: #fff; padding: 16px 24px; border-radius: 60px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; }
.form-actions .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(13,33,55,0.4); }
.form-card button { width: 100%; cursor: pointer; border: none; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ====================== FINAL CTA ====================== */
.final-cta { background: linear-gradient(150deg, var(--dark-2), var(--dark), #0a3a48); padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(10,122,143,0.1); }
.final-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 { color: #fff; text-align: center; margin-bottom: 16px; font-size: clamp(32px, 5vw, 56px); }
.final-cta h2 em { color: var(--teal-light); font-style: italic; }
.final-sub { font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 48px; line-height: 1.7; }
.final-btn { display: inline-flex; align-items: center; gap: 14px; background: var(--teal); color: #fff; padding: 20px 48px; border-radius: 60px; font-size: 17px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 40px rgba(10,122,143,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.final-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(10,122,143,0.5); }
.final-nota { color: rgba(255,255,255,0.25); font-size: 13px; margin-top: 24px; }

/* ====================== FOOTER ====================== */
footer { background: #07101a; padding: 64px 60px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; text-decoration: none; }
.footer-brand-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.footer-brand-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand-icon svg { width: 20px; height: 20px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; }
.footer-brand-name span { color: var(--teal-light); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.9; }
.footer-contact a { color: var(--teal-light); text-decoration: none; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 12px; }

/* ====================== TEAM ====================== */
.team { background: var(--cream); padding: 100px 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 56px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; margin-bottom: 20px; background: var(--mid); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 4px; }
.team-cargo { font-size: 14px; color: var(--teal); font-weight: 600; }

/* ====================== DIFERENCIADORES ====================== */
.diferenciadores { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 55%, #0a3a48 100%); padding: 100px 60px; }
.dif-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin-top: 56px; }
.dif-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 28px; transition: border-color .3s, transform .3s; }
.dif-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.dif-num { font-family: 'DM Mono', monospace; font-size: 32px; font-weight: 500; color: var(--teal); margin-bottom: 16px; }
.dif-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.dif-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ====================== CONTADORES ====================== */
.counters { background: var(--teal); padding: 64px 60px; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; text-align: center; }
.counter-item { }
.counter-num { font-family: 'DM Mono', monospace; font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1; }
.counter-num .counter-suffix { font-size: 0.6em; }
.counter-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 400; }

/* ====================== MAPA ====================== */
.mapa { width: 100%; border-radius: 18px; overflow: hidden; margin-top: 48px; height: 340px; border: 1px solid var(--mid); }
.mapa iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ====================== WA FLOAT ====================== */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,0.5); text-decoration: none; z-index: 999; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-tooltip { position: fixed; bottom: 42px; right: 96px; background: #fff; color: var(--dark); font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); z-index: 999; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: opacity .4s, transform .4s; pointer-events: none; }
.wa-tooltip.show { opacity: 1; transform: translateX(0); }
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #fff; }
@keyframes wa-pulse { 0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.15); } }
.wa-float.pulse { animation: wa-pulse 2s infinite; }

/* ====================== LOGO HOVER ====================== */
.nav-logo-icon img { transition: transform .6s ease; }
.nav-logo:hover .nav-logo-icon img { transform: rotate(15deg) scale(1.08); }

/* ====================== LANG TOGGLE ====================== */
.lang-toggle { display: flex; align-items: center; gap: 4px; margin-left: 12px; font-size: 13px; font-weight: 500; }
.lang-toggle a { color: rgba(255,255,255,0.35); text-decoration: none; padding: 4px 8px; border-radius: 6px; transition: color .2s, background .2s; }
.lang-toggle a.active { color: #fff; background: rgba(255,255,255,0.1); }
.lang-toggle a:hover { color: rgba(255,255,255,0.8); }
.lang-sep { color: rgba(255,255,255,0.15); }

/* ====================== REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { max-width: 520px; }
  .sol-grid { grid-template-columns: 1fr; gap: 48px; }
  .angela-grid { grid-template-columns: 1fr; gap: 48px; }
  .dolores { grid-template-columns: 1fr 1fr; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .serv-preview-grid { grid-template-columns: 1fr 1fr; }
  .mvp-grid { grid-template-columns: 1fr; }
  .pasos { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .paso-arrow { display: none; }
  .serv-row { grid-template-columns: 1fr; gap: 32px; }
  .serv-row.flip .serv-row-media { order: 0; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: rgba(10,26,36,0.98); padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); transform: translateY(-130%); transition: transform .35s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 8px; }
  .nav-links a.active:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .nav-burger { display: flex; }
  .hero, .problema, .solucion, .servicios, .serv-preview, .serv-list, .proceso, .oferta, .angela, .mvp, .testimonios, .final-cta, .contacto { padding: 70px 24px; }
  .hero { padding-top: 120px; }
  .page-hero { padding: 130px 24px 64px; }
  .logos { padding: 40px 24px; gap: 28px; }
  footer { padding: 48px 24px 24px; }
  .dolores { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .serv-preview-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .team, .diferenciadores { padding: 70px 24px; }
  .counters { padding: 48px 24px; }
  .oferta-incluye { grid-template-columns: 1fr; }
  .oferta-card { padding: 40px 24px; }
  .form-card { padding: 28px 22px; }
  .form-actions { flex-direction: column; }
  .form-actions button { width: 100%; }
  .footer-copy { flex-direction: column; text-align: center; }
  .hero-float { left: 0; }
  .wa-float { bottom: 20px; right: 20px; }
}
