/*
Theme Name: Patricia M. Val
Theme URI: https://patriciaval.com
Author: Patricia M. Val
Author URI: https://futuraspace.com
Description: Tema personalizado para Patricia M. Val — Consultora Estratégica · Cultura Digital · XR
Version: 1.0
License: Privado
Text Domain: patricia-mval
*/

/* ─── RESET & BASE ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --bg2:      #0F0F0F;
  --bg3:      #161616;
  --bg4:      #1E1E1E;
  --dark:     #F5F0E8;
  --dark2:    #C8C2AE;
  --border:   #1E1E1E;
  --border2:  #2A2A2A;
  --accent:   #E8C84E;
  --accent2:  #F0D980;
  --accent3:  #C8A020;
  --taupe:    #C49A68;
  --taupe2:   #A07850;
  --cream:    #161616;
  --text:     #F5F0E8;
  --muted:    #888888;
  --muted2:   #555555;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ──────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-weight: 800; font-size: 16px;
  color: var(--dark); text-decoration: none;
  letter-spacing: -.01em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--muted);
  text-decoration: none; transition: color .2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  color: var(--accent) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* ─── HERO ─────────────────────────────── */
.hero-section {
  background: var(--bg2);
  padding-top: 96px;
}
.hero-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 52px 80px;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent3); margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.04em;
  color: var(--dark);
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 18px; color: var(--dark2);
  line-height: 1.75; max-width: 520px;
  margin-bottom: 48px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--dark); color: var(--bg);
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--dark2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--dark);
  padding: 14px 32px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; display: inline-block;
  border: 2px solid var(--dark);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--dark); color: var(--bg); }

/* Hero card */
.hero-card {
  background: var(--bg3); border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero-card-photo {
  background: var(--taupe2); border-radius: 12px; aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500;
}
.hero-card-name {
  font-size: 18px; font-weight: 800; margin-bottom: 4px;
  color: #fff; letter-spacing: -.01em;
}
.hero-card-role {
  font-size: 12px; color: rgba(255,255,255,.6);
  font-weight: 500; line-height: 1.6; margin-bottom: 16px;
}
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: rgba(255,255,255,.12);
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; color: rgba(255,255,255,.7);
  font-weight: 600; letter-spacing: .03em;
}

/* ─── STAT STRIP ────────────────────────── */
.stat-strip-wrap { background: var(--bg3); padding: 0 52px; }
.stat-strip {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 52px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
  letter-spacing: -.04em;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.55; font-weight: 500; }

/* ─── SECTIONS ──────────────────────────── */
.section-wrap { padding: 0 52px; }
.section { max-width: 1200px; margin: 0 auto; padding: 100px 0; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent3); margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800;
  line-height: 1.06; letter-spacing: -.03em; margin-bottom: 20px;
  color: var(--dark);
}
.section-sub {
  font-size: 18px; color: var(--muted);
  max-width: 560px; line-height: 1.75;
}
.dark-bg .section-label { color: var(--accent); }
.dark-bg .section-title { color: #fff; }
.dark-bg .section-sub { color: rgba(255,255,255,.5); }

/* ─── SOBRE MÍ ──────────────────────────── */
.sobre-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.sobre-text p {
  font-size: 17px; color: var(--muted); line-height: 1.85;
  margin-bottom: 22px;
}
.sobre-text p strong { color: var(--dark); font-weight: 700; }
.info-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card {
  background: var(--bg3); border-radius: 14px; padding: 28px 32px;
}
.info-card-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 10px;
}
.info-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ─── POR QUÉ PATRICIA ──────────────────── */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.pillar {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; padding: 44px 36px;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,13,22,.08); }
.pillar-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent3); margin-bottom: 28px;
}
.pillar h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: 14px; color: var(--dark);
}
.pillar p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ─── CÓMO TRABAJO (dark bg) ────────────── */
.dark-section { background: var(--bg3); }
.dark-section .section-title { color: #fff; }
.dark-section .section-sub { color: rgba(255,255,255,.5); }
.dark-section .section-label { color: var(--accent); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 56px;
}
.process-step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 36px 28px;
  transition: border-color .2s;
}
.process-step:hover { border-color: var(--accent2); }
.process-step-num {
  font-size: 60px; font-weight: 800;
  color: rgba(255,255,255,.1); line-height: 1;
  margin-bottom: 20px; letter-spacing: -.04em;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.process-step p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.process-note {
  margin-top: 40px; padding: 28px 36px;
  background: rgba(232,200,78,.06);
  border: 1px solid rgba(232,200,78,.18);
  border-radius: 12px;
  font-size: 16px; color: rgba(255,255,255,.4); line-height: 1.75;
  font-style: italic;
}
.process-note strong { color: rgba(255,255,255,.85); font-style: normal; font-weight: 700; }

/* ─── SERVICIOS ─────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.service-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,13,22,.09); }
.service-card.featured { background: var(--bg4); border-color: var(--border2); }
.service-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent3); margin-bottom: 24px; display: block;
}
.service-card.featured .service-tag { color: rgba(255,255,255,.55); }
.service-card h3 {
  font-size: 26px; font-weight: 800;
  letter-spacing: -.025em; margin-bottom: 12px;
  line-height: 1.15; color: var(--dark);
}
.service-card.featured h3 { color: #fff; }
.service-card > p {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; margin-bottom: 28px; flex: 1;
}
.service-card.featured > p { color: rgba(255,255,255,.65); }
.service-items { display: flex; flex-direction: column; gap: 9px; margin-bottom: 36px; }
.service-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.service-item::before { content: "→"; color: var(--accent3); font-weight: 700; flex-shrink: 0; }
.tier-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.tier-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.1); border-radius: 10px; padding: 12px 16px;
}
.tier-name { font-size: 13px; font-weight: 600; color: #fff; }
.tier-price { font-size: 15px; font-weight: 800; color: var(--accent); }
.tier-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.service-note {
  font-size: 12px; color: var(--muted2); line-height: 1.55;
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border);
}
.service-note a { color: var(--accent3); text-decoration: none; }
.btn-taupe {
  background: rgba(255,255,255,.15); color: #fff;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; display: block;
  text-align: center;
  transition: background .2s;
}
.btn-taupe:hover { background: rgba(255,255,255,.25); }

/* ─── FUTURA SPACE (cream bg) ───────────── */
.cream-section { background: var(--cream); }
.futura-header {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end; margin-bottom: 48px;
}
.futura-link {
  font-size: 14px; color: var(--dark); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  white-space: nowrap; transition: color .2s;
}
.futura-link:hover { color: var(--accent3); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(14,13,22,.07); }
.project-img {
  background: var(--bg3); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--muted2); font-weight: 500;
}
.project-info { padding: 20px; }
.project-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent3); margin-bottom: 6px; }
.project-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.project-client { font-size: 12px; color: var(--muted); }
.clients-strip { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--border); }
.clients-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted2); margin-bottom: 20px; }
.clients-list { display: flex; flex-wrap: wrap; gap: 10px; }
.client-pill {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 18px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}

/* ─── ECOSISTEMA ────────────────────────── */
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.eco-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .2s;
}
.eco-card:hover { transform: translateY(-3px); }
.eco-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent3); flex-shrink: 0; margin-top: 7px; }
.eco-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.eco-role { font-size: 12px; color: var(--accent3); font-weight: 700; margin-bottom: 8px; }
.eco-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.awards-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.award-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 18px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.award-pill::before { content: "★"; color: var(--accent3); font-size: 10px; }

/* ─── TESTIMONIOS ───────────────────────── */
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.testimonio-card { background: var(--bg3); border-radius: 16px; padding: 36px; border: 1px solid var(--border2); }
.testimonio-quote {
  font-size: 15px; color: rgba(255,255,255,.7);
  line-height: 1.8; margin-bottom: 28px; font-style: italic;
}
.testimonio-quote::before {
  content: "\201C"; color: var(--accent); font-size: 40px;
  line-height: 0; vertical-align: -14px; margin-right: 3px; font-style: normal;
}
.testimonio-author { display: flex; gap: 12px; align-items: center; }
.testimonio-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,.4); flex-shrink: 0;
}
.testimonio-name { font-size: 13px; font-weight: 700; color: #fff; }
.testimonio-role { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── CONTACTO ──────────────────────────── */
.cta-section { background: var(--bg2); }
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 52px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; align-items: center;
}
.cta-inner h2 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.05;
  margin-bottom: 16px; color: #fff;
}
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; flex-shrink: 0; }
.btn-accent {
  background: var(--accent); color: #0E0D16;
  padding: 16px 36px; border-radius: 100px;
  font-weight: 800; font-size: 14px;
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.btn-accent:hover { background: var(--accent2); transform: translateY(-1px); }
.cta-email { font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.cta-email:hover { color: var(--accent); }

/* ─── FOOTER ────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 52px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-logo { font-weight: 800; font-size: 14px; color: rgba(255,255,255,.55); }

/* ─── DIVIDER ───────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); border-right: none; }
  .pillars { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-wrap { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 40px; }
  .hero-card { display: none; }
  .section { padding: 72px 0; }
  .section-wrap { padding: 0 24px; }
  .eco-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .futura-header { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 64px 24px; }
  .cta-actions { flex-direction: row; }
  footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .stat-strip-wrap { padding: 0 24px; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
