/* ===== CUSTOM FONTS ===== */
@font-face {
  font-family: 'Sharp Sans Disp';
  src: url('fonts/Sharp Sans Disp No1 Medium It.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sharp Sans';
  src: url('fonts/Sharp Sans Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sharp Sans';
  src: url('fonts/Sharp Sans Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sharp Sans';
  src: url('fonts/SharpSansBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Avatar mobile — oculto en desktop */
.hero__avatar-mobile { display: none; }

/* Ocultos por defecto — solo activos en desktop con mouse */
#trailCanvas, .cursor-pen { display: none; }

/* ===== CUSTOM CURSOR — BRUSH ===== */
@media (min-width: 821px) {
  body.cursor-custom { cursor: none !important; }
  body.cursor-custom * { cursor: none !important; }

  /* Botones y links — manito en todo el elemento y sus hijos */
  body.cursor-custom a,
  body.cursor-custom a *,
  body.cursor-custom button,
  body.cursor-custom button *,
  body.cursor-custom .btn,
  body.cursor-custom .btn *,
  body.cursor-custom select,
  body.cursor-custom [role="button"],
  body.cursor-custom [role="button"] *,
  body.cursor-custom .tab-icon,
  body.cursor-custom .tab-icon *,
  body.cursor-custom .sidebar-icon,
  body.cursor-custom .sidebar-icon *,
  body.cursor-custom .lang-btn,
  body.cursor-custom .lang-btn * { cursor: pointer !important; }

  /* Inputs — cursor texto */
  body.cursor-custom input,
  body.cursor-custom textarea { cursor: text !important; }

  /* Textos sueltos — I-beam */
  body.cursor-custom p,
  body.cursor-custom h1,
  body.cursor-custom h2,
  body.cursor-custom h3,
  body.cursor-custom h4,
  body.cursor-custom li,
  body.cursor-custom .hero__name,
  body.cursor-custom .hero__role,
  body.cursor-custom .hero__stats,
  body.cursor-custom .stat-label,
  body.cursor-custom .stat-number,
  body.cursor-custom .role-serif,
  body.cursor-custom .role-amp,
  body.cursor-custom .role-typewriter { cursor: text !important; }

  /* Spans fuera de botones — I-beam */
  body.cursor-custom span:not(button span):not(.btn span):not(a span):not(.lang-btn span):not(.sidebar-icon span) { cursor: text !important; }

  /* Nav bar — cursor default (no desaparecer) */
  body.cursor-custom .nav,
  body.cursor-custom .nav * { cursor: default !important; }
  body.cursor-custom .nav a,
  body.cursor-custom .nav a *,
  body.cursor-custom .nav button,
  body.cursor-custom .nav button * { cursor: pointer !important; }

  /* Spin badge — manito */
  body.cursor-custom .spin-badge,
  body.cursor-custom .spin-badge * { cursor: pointer !important; }

  /* Modales — cursor normal dentro del popup */
  body.cursor-custom .modal-overlay,
  body.cursor-custom .modal-box { cursor: default !important; }
  body.cursor-custom .modal-box input,
  body.cursor-custom .modal-box textarea { cursor: text !important; }
  body.cursor-custom .modal-box button,
  body.cursor-custom .modal-box button *,
  body.cursor-custom .modal-box a,
  body.cursor-custom .modal-box select { cursor: pointer !important; }
  body.cursor-custom .modal-box p,
  body.cursor-custom .modal-box label,
  body.cursor-custom .modal-box h2,
  body.cursor-custom .modal-box span { cursor: default !important; }

  #trailCanvas {
    display: block !important;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
  }
  .cursor-pen {
    display: block !important;
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-2px, -34px);
  }
  .cursor-pen svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 4px rgba(0,172,255,0.8));
  }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #2A39FF;
  --bg-2: #1e2eee;
  --bg-3: #3a45ff;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.9);
  --accent: #00ACFF;
  --accent-hover: #33bdff;
  --border: rgba(255,255,255,0.15);
  --radius: 10px;
  --font: 'Montserrat', sans-serif;
  --font-ui: 'Sharp Sans', 'Montserrat', sans-serif;
  --font-title: 'Sharp Sans', 'Montserrat', sans-serif;
  --font-bold: 'Sharp Sans', 'Montserrat', sans-serif;
  --font-disp: 'Sharp Sans Disp', 'Sharp Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --nav-h: 150px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; height: 100%; overflow: hidden; }
html.scrollable { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: linear-gradient(-25deg, #7200C4 0%, #2A39FF 45%, #2A39FF 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 18px 4px rgba(0,172,255,0.45), 0 6px 20px rgba(0,172,255,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 0 18px 4px rgba(255,255,255,0.15), 0 6px 20px rgba(255,255,255,0.1);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 0 18px 4px rgba(37,211,102,0.45), 0 6px 20px rgba(37,211,102,0.25);
}

/* Progress fill en botones submit de modales WA */
.btn--whatsapp.modal-submit {
  --progress: 0%;
  background: linear-gradient(90deg, #25D366 var(--progress), #1a3d2a var(--progress));
  border-color: #1a3d2a;
  position: relative;
  overflow: hidden;
  transition: background 0.6s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--whatsapp.modal-submit.complete {
  background: #25D366;
  border-color: #25D366;
}
.btn--whatsapp.modal-submit.complete:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 0 18px 4px rgba(37,211,102,0.45), 0 6px 20px rgba(37,211,102,0.25);
}

.accent { color: var(--accent); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav__logo { justify-self: start; }
.nav__links { justify-self: center; }
.lang-toggle { justify-self: end; }
.nav.scrolled {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon { width: 140px; height: 140px; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; display: block; object-fit: contain; }
.logo-text { display: none; }
.logo-tld { display: none; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.nav__links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-icon { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav__links a.active {
  color: var(--text);
  font-weight: 800;
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  justify-self: end;
  grid-column: 3;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; order: 2; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ===== SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: rgba(30,30,30,0.9);
  backdrop-filter: blur(8px);
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--border);
  border-right: none;
  overflow: hidden;
}
.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--text-muted);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
.sidebar-icon:last-child { border-bottom: none; }
.sidebar-icon svg { width: 22px; height: 22px; }
.sidebar-icon:hover { background: var(--accent); color: #fff; }

/* ===== WATERMARK BACKGROUND ===== */
.geo-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
}
.geo-bg img {
  width: 35vw;
  height: auto;
}

/* ===== PAGE WRAPPER ===== */
.page {
  flex: 1;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 0.75rem 2rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.footer p { font-size: 0.78rem; color: var(--text-muted); }
.footer strong { color: var(--text); }

/* ============================================================
   HOME / HERO PAGE
   ============================================================ */
.hero {
  height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14rem;
  padding: 2rem 5rem;
  position: relative;
  overflow: visible;
}
.hero__content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hero__hello {
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--accent);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.hero__name {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 5vw, 5.1rem);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
  margin-bottom: 1.6rem;
}
.hero__aka {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.hero__aka .accent { font-weight: 700; font-size: 1.15rem; }
.hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero__role {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.role-mid {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: #00ACFF;
  display: block;
}
.role-serif {
  font-family: var(--font-bold);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  display: block;
  line-height: 1;
}
.role-amp-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-height: auto;
  padding-bottom: 4px;
}
.role-amp {
  font-family: var(--font-bold);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  flex-shrink: 0;
}
.role-typewriter {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: #00ACFF;
  white-space: nowrap;
  border-right: 3px solid #00ACFF;
  display: inline-block;
  vertical-align: baseline;
  padding-bottom: 3px;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: stretch; }
.hero__cta .btn { align-items: center; height: 48px; }

/* ===== HERO STATS ===== */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-number {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero__avatar {
  position: relative !important;
  z-index: 1;
  flex-shrink: 0;
  height: 68vh;
  max-height: 580px;
  width: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero__avatar img {
  height: 100%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(245,168,0,0.08));
}
.avatar-placeholder {
  height: 100%;
  opacity: 0.25;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder svg { height: 70%; width: auto; }

/* ===== SPINNING BADGE ===== */
.spin-badge {
  position: absolute;
  top: 2%;
  right: -60px;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: auto;
  cursor: pointer;
}
.spin-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-ring 10s linear infinite;
}
.spin-badge__text {
  font-family: var(--font-bold);
  font-size: 18.5px;
  font-weight: 700;
  fill: #ffffff;
  letter-spacing: 5.2px;
  text-transform: uppercase;
}
.spin-badge__arrow {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.spin-badge__arrow svg {
  width: 24px;
  height: 24px;
  color: #2A39FF;
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spin-ring-half {
  from { transform: rotate(0deg); }
  to   { transform: rotate(180deg); }
}

/* Hex geo shapes — hidden */
.geo { display: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 4rem 2.5rem 1rem;
}
.about-page .container { width: 100%; }

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-header-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.25;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Left column */
.about-left { text-align: center; }
.about-name {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  text-align: left;
}
.about-handle {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: 1.5rem;
}
.about-aka {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.about-aka .accent { font-weight: 700; font-size: 1.4rem; }

.photo-wrap {
  display: inline-block;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  box-shadow: 0 0 0 2px var(--accent);
}
.photo-wrap img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid var(--bg);
}
.photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 4px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.photo-placeholder svg { width: 56px; height: 56px; color: rgba(255,255,255,0.2); }
.photo-placeholder span { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* Right column */
.about-bio p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-bio .hl { color: #ffffff; font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  min-height: calc(100vh - var(--nav-h) - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}
/* En modo scrollable: no forzar alto ni centrado vertical — deja que el contenido fluya natural */
body.scrollable .contact-page {
  min-height: unset;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.contact-header-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  max-width: 640px;
}
.contact-inner h1 {
  font-family: var(--font-disp);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact-inner .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Icon tabs widget */
.contact-tabs {
  display: inline-block;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-width: 580px;
}
.contact-tabs__icons {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.tab-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  cursor: pointer;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  background: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  font-family: var(--font);
}
.tab-icon:last-child { border-right: none; }
.tab-icon svg { width: 18px; height: 18px; pointer-events: none; }
.tab-icon:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.tab-icon.active { background: var(--accent); color: #fff; }

.contact-tabs__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 52px;
  background: #3a3a3a;
}
.contact-tabs__panel span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}
#tabLabel {
  font-weight: 800 !important;
}
.contact-tabs__panel span .hl { color: #ffffff; font-weight: 600; }
.contact-tabs__panel a.go-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 1rem;
}
.contact-tabs__panel a.go-btn:hover { background: var(--accent); color: #fff; }

/* ===== INTL TEL INPUT ===== */
.iti { width: 100%; }
.iti input[type="tel"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem 0.75rem 6rem !important;
  color: #fff !important;
  font-family: var(--font-ui) !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.iti input[type="tel"]:focus { border-color: var(--accent) !important; }
.iti input[type="tel"]::placeholder { color: rgba(255,255,255,0.4) !important; }
.iti__selected-country {
  background: rgba(255,255,255,0.08) !important;
  border-radius: 10px 0 0 10px !important;
  padding: 0 0.5rem !important;
}
.iti__selected-country:hover { background: rgba(255,255,255,0.15) !important; }
.iti__selected-dial-code { color: rgba(255,255,255,0.9) !important; font-size: 0.85rem !important; }
.iti__arrow { border-top-color: rgba(255,255,255,0.6) !important; }
.iti__dropdown-content {
  background: #1a27d4 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 10px !important;
  color: #fff !important;
}
.iti__search-input {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  color: #fff !important;
  padding: 0.4rem 0.6rem !important;
}
.iti__country:hover { background: rgba(255,255,255,0.1) !important; }
.iti__country.iti__highlight { background: rgba(0,172,255,0.2) !important; }
.iti__dial-code { color: rgba(255,255,255,0.6) !important; }
.iti__country-name { color: #fff !important; }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 52px;
  width: 72px;
  height: 72px;
  background: #25D366;
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 38px; height: 38px; color: #fff; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px 6px rgba(37,211,102,0.5);
}

/* ===== ANIMACIONES DE ENTRADA (about + contact) ===== */
@keyframes page-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* About — todos los elementos animados */
.about-header,
.about-left,
.about-bio,
.process-header,
.process-card,
.tools-marquee-wrap {
  opacity: 0;
}
.about-header.anim-in,
.about-left.anim-in,
.about-bio.anim-in {
  animation: page-fade-up 0.6s ease forwards;
}
.process-header.anim-in,
.tools-marquee-wrap.anim-in {
  animation: page-fade-up 0.6s ease forwards;
}
.process-card.anim-in {
  animation: card-pop 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* FAQ — entrada suave con stagger (título → subtítulo → items 1..8) */
.faq-header > h2,
.faq-header > p,
.faq-item {
  opacity: 0;
}
.faq-header > h2.anim-in,
.faq-header > p.anim-in {
  animation: page-fade-up 0.6s ease forwards;
}
.faq-item.anim-in {
  animation: page-fade-up 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Contact */
.contact-header-title {
  animation: page-fade-up 0.6s ease both;
  animation-delay: 0.05s;
}
.contact-page h1 {
  animation: page-fade-up 0.6s ease both;
  animation-delay: 0.18s;
}
.contact-page .subtitle {
  animation: page-fade-up 0.6s ease both;
  animation-delay: 0.3s;
}
.contact-tabs {
  animation: page-fade-up 0.6s ease both;
  animation-delay: 0.42s;
}
.contact-page-form {
  animation: page-fade-up 0.6s ease both;
  animation-delay: 0.54s;
}


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 4rem 2rem 5rem;
  width: 100%;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-header h2 {
  font-family: var(--font-bold);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.faq-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.14);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: background var(--transition);
}
.faq-item:hover {
  background: rgba(255,255,255,0.03);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  position: relative;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #ffffff;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before { width: 11px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 11px; }
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%,-50%) scaleY(0);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1);
}
.faq-answer-inner {
  padding: 0 0.75rem 1.5rem;
}
.faq-answer p {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 720px;
}
.faq-answer p strong {
  color: #ffffff;
  font-weight: 700;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}

@media (max-width: 820px) {
  .faq-section { padding: 3rem 1.25rem 4rem; }
  .faq-header { margin-bottom: 2.25rem; }
  .faq-header h2 { font-size: 1.8rem; }
  .faq-header p { font-size: 0.9rem; }
  .faq-question {
    padding: 1.15rem 0.25rem;
    font-size: 0.88rem;
    gap: 1rem;
  }
  .faq-icon { width: 22px; height: 22px; }
  .faq-icon::before { width: 9px; }
  .faq-icon::after  { height: 9px; }
  .faq-answer-inner { padding: 0 0.25rem 1.25rem; }
  .faq-answer p { font-size: 0.85rem; line-height: 1.65; }
}


/* ===== SCROLLABLE PAGE (about) ===== */
html.scrollable, body.scrollable {
  overflow-y: auto !important;
  height: auto !important;
}
body.scrollable { padding-bottom: 0; }
body.scrollable .footer {
  position: static;
  margin-top: 3rem;
}


/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 4rem 0 4rem;
  position: relative;
  z-index: 1;
}
.process-header {
  text-align: center;
  margin-bottom: 3rem;
}
.process-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3.5rem;
}
.process-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.25;
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.process-card {
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
}
@keyframes card-pop {
  0%   { opacity: 0; transform: scale(0.75) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.process-card.pop-in {
  animation: card-pop 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.process-card--1 { background: rgba(220,255,230,0.12); }
.process-card--2 { background: rgba(255,210,230,0.12); }
.process-card--3 { background: rgba(255,235,200,0.12); }
.process-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.process-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card__icon svg { width: 24px; height: 24px; color: rgba(255,255,255,0.85); }
.process-card__num {
  font-family: var(--font-bold);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.process-card h3 {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.process-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== TOOLS MARQUEE ===== */
.tools-marquee-wrap { overflow: hidden; }
.tools-label {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.tools-marquee { overflow: hidden; }
.tools-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.tools-track span {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
.tools-sep {
  color: var(--accent) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== CONTACT PAGE FORM ===== */
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 580px;
  margin: 1.5rem auto 0;
  text-align: left;
}
.contact-form__row {
  display: flex;
  gap: 0.75rem;
}
.contact-form__row .modal-input {
  flex: 1;
}
.contact-page-form .modal-textarea {
  min-height: 80px;
  resize: none;
  overflow: hidden;
  transition: height 0.15s ease;
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
  margin-left: 1rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem;
  border-radius: 50%;
  transition: all var(--transition);
  opacity: 0.45;
}
.lang-btn .flag-img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.lang-btn:hover { opacity: 0.85; }
.lang-btn.active {
  opacity: 1;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 50%;
}
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  user-select: none;
}
.lang-toggle--mobile {
  order: 1;
  margin: 0 auto;
  justify-content: center;
}
.mobile-socials {
  order: 3;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.mobile-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.mobile-socials svg { width: 18px; height: 18px; }

/* ============================================================
   HIRE ME MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.modal-input::placeholder { color: rgba(255,255,255,0.4); }
.modal-input:focus { border-color: var(--accent); }
.modal-textarea { resize: vertical; min-height: 110px; }
.modal-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.3rem; }
.modal-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; text-transform: uppercase; }
.modal-select { appearance: none; cursor: pointer; }
.modal-select option { background: #2A39FF; color: #fff; }

/* ===== CUSTOM VALIDATION ===== */
.field-error {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.3rem;
  display: none;
  padding-left: 0.2rem;
}
.field-error.visible { display: block; }
.modal-input.invalid { border-color: var(--accent) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .social-sidebar { display: none; }
}

@media (max-width: 820px) {
  /* ---- Nav ---- */
  :root { --nav-h: 100px; }
  .logo-icon { width: 90px; height: 90px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav .lang-toggle { display: none; }
  .social-sidebar { display: none; }

  /* ---- Background ---- */
  .geo-bg img { width: 80vw; }

  /* ---- Hero ---- */
  .hero {
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    height: auto;
    min-height: calc(100vh - 80px);
  }
  .hero__content { text-align: center; width: 100%; }
  .hero__role { align-items: center; }
  .role-amp-row { justify-content: center; }
  .hero__avatar { display: none; }
  .hero__cta { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__cta a.btn:last-child { order: 3; }
  .hero__stats { flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; }

  /* ---- Hero avatar mobile ---- */
  .hero__avatar-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1rem 0 2rem;
  }
  .hero__avatar-mobile img {
    width: 50vw;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(245,168,0,0.1));
  }
  /* ---- About ---- */
  .about-page { padding: 2.5rem 0 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-name, .about-aka { text-align: center; }
  .photo-wrap img { width: min(200px, 52vw); height: min(200px, 52vw); }
  .about-bio p { font-size: 0.9rem; line-height: 1.7; }

  /* ---- Process ---- */
  .process-section { padding: 2rem 0 3rem; }
  .process-cards { grid-template-columns: 1fr; }

  /* ---- Contact tabs — grid 3×2 en móvil ---- */
  .contact-tabs { min-width: unset; width: 100%; max-width: 420px; }
  .contact-tabs__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .tab-icon {
    height: 68px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-top: none;
    border-left: none;
  }
  .tab-icon:nth-child(3n) { border-right: none; }
  .tab-icon:nth-child(4),
  .tab-icon:nth-child(5),
  .tab-icon:nth-child(6) { border-bottom: none; }
  .tab-icon svg { width: 22px; height: 22px; }
  .contact-tabs__panel { height: 58px; }
  .contact-form__row { flex-direction: column; }

  /* ---- Modals ---- */
  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 1rem;
  }
  .modal-box {
    padding: 1.75rem 1.5rem;
    width: 100%;
    margin: 0 auto;
    max-height: none;
    border-radius: 16px;
  }

  /* ---- WA Float ---- */
  .wa-float { right: 16px; bottom: 70px; }
}

@media (max-width: 520px) {
  .container { padding: 0 1.25rem; }
  .hero__name { font-size: 2.4rem; text-align: center; width: 100%; }
  .hero__hello { font-size: 1.9rem; }
  .role-serif, .role-amp { font-size: 1.9rem; }
  .role-typewriter { font-size: 1.9rem; }
  .contact-inner h1 { font-size: 2.8rem; }
  .contact-tabs { max-width: 100%; }
  .tab-icon { height: 48px; }
  .tab-icon svg { width: 16px; height: 16px; }

  /* Stats — grid 2×2 */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    text-align: center;
    margin-top: 2rem;
  }
  .stat-divider { display: none; }
  .stat-label { white-space: normal; }

  /* Modals */
  .modal-title { font-size: 1.4rem; }
  .modal-box { padding: 1.5rem 1.25rem; }
  .modal-overlay { padding: 0.75rem; }

  /* Process cards */
  .process-card { padding: 1.5rem; }

  /* WA Float — slightly smaller on tiny screens */
  .wa-float { right: 12px; width: 60px; height: 60px; }
  .wa-float svg { width: 32px; height: 32px; }
}
