/*
Theme Name: Alfa y Omega Digital Studio
Theme URI: https://alfaomegadigital.com
Author: ALFA & OMEGA Digital Studio
Author URI: https://alfaomegadigital.com
Description: Tema moderno para ALFA & OMEGA Digital Studio. Estudio de marketing y diseño digital con paleta negro y dorado.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alfa-omega
Tags: marketing, one-page, portfolio, dark, gold
*/

/* =====================================================
   VARIABLES
===================================================== */
:root {
  --gold:   #C9A84C;
  --gold-l: #E2C47A;
  --gold-xl:#F5E6BC;
  --black:  #080808;
  --dark:   #111111;
  --dark2:  #181818;
  --dark3:  #222222;
  --muted:  #666666;
  --muted2: #999999;
  --white:  #F8F4EE;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a, button { cursor: none; }
img { max-width: 100%; display: block; }

/* ── CUSTOM CURSOR ── */
.cur {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}
.cur-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .25s ease;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: .5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.4rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,.97) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-logo { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; color: var(--gold); letter-spacing: .05em;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 300;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); line-height: 1.2;
}
.nav-logo-text small { display: block; font-size: .6rem; letter-spacing: .3em; color: var(--muted2); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted2); text-decoration: none;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  transition: color .25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: var(--gold); color: var(--black);
  padding: .55rem 1.4rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s;
  display: inline-block;
}
.nav-btn:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 5vw 5rem;
  position: relative; overflow: hidden;
  gap: 4rem;
}
.hero-bg-word {
  position: absolute; bottom: -4rem; left: -2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(10rem, 22vw, 26rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.055);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}
.hero-orb {
  position: absolute; right: -180px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,76,.04) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,.06);
  animation: spin 40s linear infinite;
}
.hero-orb::before {
  content: ''; position: absolute; inset: 80px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,.04);
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  animation: riseIn .7s ease forwards; animation-delay: .2s; opacity: 0;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6.5vw, 7.5rem);
  font-weight: 300; line-height: .92; letter-spacing: -.025em;
  animation: riseIn .7s ease forwards; animation-delay: .35s; opacity: 0;
}
.hero-title em   { font-style: italic; color: var(--gold); }
.hero-title strong { font-weight: 600; }
.hero-desc {
  margin-top: 2.2rem;
  font-size: .88rem; line-height: 1.75; color: var(--muted2); max-width: 440px;
  animation: riseIn .7s ease forwards; animation-delay: .5s; opacity: 0;
}
.hero-actions {
  margin-top: 3rem; display: flex; gap: 1.2rem; align-items: center;
  animation: riseIn .7s ease forwards; animation-delay: .65s; opacity: 0;
}
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 1rem 2.4rem;
  font-size: .73rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: background .25s, transform .2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.12); color: var(--muted2);
  padding: .95rem 2rem; font-size: .73rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: border-color .25s, color .25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-right { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,.14);
  padding: 3rem 2.5rem; width: 340px; position: relative;
  animation: riseIn .7s ease forwards; animation-delay: .45s; opacity: 0;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.hc-symbol { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--gold); letter-spacing: .05em; line-height: 1; margin-bottom: 1.8rem; }
.hc-tag  { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.hc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 2rem; line-height: 1.2; }
.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.8rem; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-l { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
.hero-dot { position: absolute; border-radius: 50%; pointer-events: none; animation: pulse 3s ease-in-out infinite; }
.hero-dot:nth-child(1) { width: 4px; height: 4px; background: var(--gold); top: 20%; left: 10%; }
.hero-dot:nth-child(2) { width: 3px; height: 3px; background: var(--gold-l); top: 70%; left: 15%; animation-delay: 1s; }
.hero-dot:nth-child(3) { width: 5px; height: 5px; background: var(--gold); top: 40%; right: 30%; animation-delay: .5s; }
@keyframes pulse { 0%,100% { opacity: .3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } }

/* ── TICKER ── */
.ticker { overflow: hidden; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: var(--dark2); }
.ticker-track { display: flex; gap: 5rem; white-space: nowrap; animation: tickerMove 22s linear infinite; width: max-content; }
@keyframes tickerMove { to { transform: translateX(-50%); } }
.ticker-item { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 2rem; }
.ticker-item .gem { color: var(--gold); font-size: .7rem; }

/* ── SECTION BASE ── */
section { padding: 7rem 5vw; }
.sec-label { font-size: .65rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.sec-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,4vw,4.5rem); font-weight: 300; line-height: 1; letter-spacing: -.02em; }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 5rem; }
.more-link { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: .5rem; transition: color .25s; white-space: nowrap; margin-bottom: .3rem; }
.more-link:hover { color: var(--gold); }
.more-link::after { content: '→'; }

/* ── SERVICES ── */
.services-bg { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.04); }
.svc { background: var(--dark); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background .35s; }
.svc:hover { background: var(--dark2); }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right,var(--gold),var(--gold-l)); transform: scaleX(0); transition: transform .4s; transform-origin: left; }
.svc:hover::after { transform: scaleX(1); }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: rgba(201,168,76,.07); position: absolute; top: 1.5rem; right: 2rem; line-height: 1; transition: color .35s; }
.svc:hover .svc-num { color: rgba(201,168,76,.15); }
.svc-icon { width: 48px; height: 48px; border: 1px solid rgba(201,168,76,.18); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 2rem; transition: border-color .35s, background .35s; }
.svc:hover .svc-icon { border-color: var(--gold); background: rgba(201,168,76,.05); }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: .9rem; line-height: 1.15; }
.svc-desc { font-size: .8rem; line-height: 1.75; color: var(--muted2); margin-bottom: 2rem; }
.svc-price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--gold); }
.svc-price span { font-family: 'DM Sans'; font-size: .72rem; color: var(--muted); font-weight: 300; }

/* ── PIXEL ── */
.pixel-section { background: var(--dark2); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.pixel-visual { position: relative; aspect-ratio: 1; border: 1px solid rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pixel-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 40% 40%,rgba(201,168,76,.08) 0%,transparent 65%); }
.pixel-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 4px; width: 80%; position: relative; z-index: 1; }
.px { aspect-ratio: 1; background: rgba(201,168,76,.05); border: 1px solid rgba(201,168,76,.08); }
.px.on { background: rgba(201,168,76,.35); border-color: rgba(201,168,76,.5); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.px.on:nth-child(3n) { animation-delay: .4s; }
.px.on:nth-child(5n) { animation-delay: .8s; }
.px.on:nth-child(7n) { animation-delay: 1.2s; }
.pixel-points { list-style: none; margin-top: 2rem; }
.pixel-points li { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .82rem; color: var(--muted2); line-height: 1.5; display: flex; align-items: flex-start; gap: .8rem; }
.pixel-points li::before { content: '◆'; color: var(--gold); font-size: .45rem; margin-top: .35rem; flex-shrink: 0; }

/* ── PACKS ── */
.packs-section { background: var(--black); }
.packs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.05); margin-top: 5rem; }
.pack { background: var(--dark); padding: 3.5rem 3rem; position: relative; transition: background .35s; }
.pack:hover { background: var(--dark2); }
.pack-badge { position: absolute; top: 2rem; right: 2rem; background: var(--gold); color: var(--black); font-size: .6rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; padding: .3rem .7rem; }
.pack::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background .35s; }
.pack:hover::before { background: linear-gradient(to right, var(--gold), var(--gold-l)); }
.pack-icon { font-size: 2rem; margin-bottom: 2rem; }
.pack-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; margin-bottom: .6rem; line-height: 1; }
.pack-subtitle { font-size: .78rem; color: var(--muted2); margin-bottom: 2rem; line-height: 1.5; }
.pack-features { list-style: none; margin-bottom: 2.5rem; }
.pack-features li { padding: .5rem 0; font-size: .8rem; color: var(--muted2); border-bottom: 1px solid rgba(255,255,255,.05); display: flex; gap: .7rem; align-items: flex-start; }
.pack-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pack-cta { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: .75rem 2rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: background .25s, color .25s; }
.pack-cta:hover { background: var(--gold); color: var(--black); }

/* ── PROMO ── */
.promo { margin: 0 5vw; background: linear-gradient(130deg,var(--gold) 0%,#9A7020 50%,#1a1500 100%); padding: 5rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4rem; position: relative; overflow: hidden; }
.promo::before { content: 'AΩ'; position: absolute; right: -3rem; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 20rem; color: rgba(0,0,0,.1); line-height: 1; pointer-events: none; letter-spacing: -.05em; }
.promo-tag { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(0,0,0,.55); margin-bottom: 1rem; }
.promo-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3.8rem); font-weight: 600; color: var(--black); line-height: 1.05; margin-bottom: 1rem; }
.promo-sub { font-size: .85rem; color: rgba(0,0,0,.6); line-height: 1.6; max-width: 480px; }
.btn-dark { background: var(--black); color: var(--gold); padding: 1.2rem 2.8rem; font-size: .73rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; transition: background .25s; display: inline-block; }
.btn-dark:hover { background: #1a1a1a; }

/* ── IDENTIDAD ── */
.identidad-section { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.id-visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: .8rem; }
.id-block { background: var(--dark2); border: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(201,168,76,.4); transition: all .4s; height: 100px; }
.id-block:hover { background: var(--dark3); color: var(--gold); border-color: rgba(201,168,76,.2); }
.id-block.big { grid-column: span 2; font-size: 3.5rem; height: 140px; }
.id-block.color-a { background: var(--gold); color: var(--black); border-color: var(--gold); font-family: 'DM Sans'; font-size: .75rem; font-weight: 500; letter-spacing: .15em; }
.id-block.color-b { background: #1a1a1a; border-color: rgba(255,255,255,.08); font-family: 'DM Sans'; font-size: .65rem; letter-spacing: .2em; color: var(--muted2); }

/* ── PROCESO ── */
.proceso-section { background: var(--dark2); }
.proceso-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; margin-top: 5rem; }
.step { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; }
.step:first-child { border-top-color: var(--gold); }
.step-num { font-size: .65rem; letter-spacing: .28em; color: var(--gold); margin-bottom: 1.5rem; }
.step-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: .9rem; line-height: 1.15; }
.step-desc { font-size: .78rem; line-height: 1.75; color: var(--muted2); }

/* ── PAGOS ── */
.pagos-section { background: var(--dark); }
.pagos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
.pago-group h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-bottom: .4rem; display: flex; align-items: center; gap: .8rem; }
.pago-group h3::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,.15); }
.pago-subtitle { font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.pago-list { list-style: none; }
.pago-list li { padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .82rem; color: var(--muted2); display: flex; align-items: center; gap: .7rem; }
.pago-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ── CTA FINAL ── */
.cta-section { text-align: center; padding: 9rem 5vw; background: var(--dark2); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(201,168,76,.04) 0%,transparent 65%); }
.cta-section .sec-label { justify-content: center; }
.cta-section .sec-label::before { display: none; }
.cta-big { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,8vw,9rem); font-weight: 300; line-height: .9; letter-spacing: -.03em; margin: 2rem 0; position: relative; z-index: 1; }
.cta-big em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: .88rem; color: var(--muted2); max-width: 420px; margin: 0 auto 3rem; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { font-size: .8rem; color: var(--muted); line-height: 1.75; max-width: 300px; margin-top: 1.2rem; }
.footer-col h4 { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .8rem; }
.footer-col ul li a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .7rem; color: var(--muted); letter-spacing: .05em; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 8rem 5vw 4rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pixel-section { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .promo { grid-template-columns: 1fr; gap: 2rem; padding: 3rem; }
  .pagos-grid { grid-template-columns: 1fr; }
  .identidad-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  section { padding: 5rem 5vw; }
}
@media (max-width: 500px) {
  .proceso-steps { grid-template-columns: 1fr; }
  .promo { padding: 2.5rem 1.5rem; }
}
