@charset "UTF-8";

/* ════════════════════════════════════════════════
   TOKENS & BASE
   ════════════════════════════════════════════════ */
:root {
  --bg: #0A0908;
  --bg-soft: #12100E;
  --cream: #FDFCFB;
  --accent: #C59D3F;
  --accent-muted: rgba(197, 157, 63, 0.12);
  --muted: #8E8884;
  --line: rgba(255, 255, 255, 0.04);
  --wa: #25D366;
  --f-display: "Playfair Display", serif;
  --f-sans: "Geist", system-ui, -apple-system, sans-serif;
  --f-data: "Geist Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-inner: rgba(255, 255, 255, 0.02);
  --radius-lg: 2.5rem;
  --radius-md: 1.5rem;
  --radius-sm: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: crosshair;
}

html {
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% -20%, #1A1614, transparent);
  color: var(--cream);
  scroll-behavior: smooth;
  font-size: 16px;
  selection-background-color: var(--accent);
  selection-color: var(--bg);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

body {
  font-family: var(--f-sans);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* Custom Scrollbar for Chrome/Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-muted);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

/* REVEAL SYSTEM */
[data-enter] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  will-change: transform, opacity;
}

[data-enter].is-visible,
.hero [data-enter] {
  opacity: 1;
  transform: translateY(0);
}

.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  animation: noise 0.2s infinite;
}

@keyframes noise {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-1%, -1%);
  }

  20% {
    transform: translate(-2%, 1%);
  }

  30% {
    transform: translate(1%, -2%);
  }

  40% {
    transform: translate(-1%, 3%);
  }

  50% {
    transform: translate(-2%, 1%);
  }

  60% {
    transform: translate(3%, 2%);
  }

  70% {
    transform: translate(2%, 1%);
  }

  80% {
    transform: translate(-1%, -1%);
  }

  90% {
    transform: translate(1%, 2%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 16px 40px;
  background: rgba(12, 10, 9, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-inner);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  position: absolute;
  transition: all 0.4s var(--ease);
}

.nav-toggle span:first-child {
  top: 0;
}

.nav-toggle span:last-child {
  bottom: 0;
}

.nav.menu-active .nav-toggle span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.nav.menu-active .nav-toggle span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 13, 11, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease);
    z-index: 1000;
  }

  .nav.menu-active .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-family: var(--f-display);
    font-size: 3rem;
    font-style: italic;
    color: var(--cream);
    text-decoration: none;
  }

  .nav-cta {
    display: none;
  }

  /* Hide CTA in nav pill on mobile, show inside menu or keep as brand logo focus */
}

.nav.scrolled {
  padding: 16px 40px;
  background: rgba(17, 13, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-data);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.15em;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-family: var(--f-data);
  font-size: 11px;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(17, 13, 11, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-header {
  font-family: var(--f-data);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(5rem, 20vw, 16rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.75;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.06em;
}

.hero-sub {
  font-family: var(--f-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  max-width: 600px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 100dvh !important;
    display: flex !important;
    padding: 100px 24px 160px 24px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero [data-enter] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2em;
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 8rem) !important;
  }

  .hero-sub {
    font-size: 0.8rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════════════
   DECLARACIÓN
   ════════════════════════════════════════════════ */
.declaracion {
  padding: 240px 40px 180px 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 60vh;
  display: block !important;
}

@media (max-width: 900px) {
  .declaracion {
    padding: 60px 24px;
    min-height: auto;
  }
}

.capitulo-num {
  font-family: var(--f-data);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: inline-block;
}

.declaracion-texto {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--cream);
  text-align: center;
  text-wrap: balance;
}

/* ════════════════════════════════════════════════
   MASTER SPREAD MANIFESTO
   ════════════════════════════════════════════════ */
.manifesto-master {
  padding: 240px 60px; /* Increased padding for Art Gallery Mode */
  background: var(--bg);
}

.master-container {
  max-width: 1400px;
  margin: 0 auto;
}

.master-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1100px) {
  .master-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .manifesto-master {
    padding: 80px 24px;
  }
}

/* Col 1: Text */
.col-text {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.edition-tag {
  font-family: var(--f-data);
  font-size: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.2em;
}

.master-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.master-description {
  font-family: var(--f-sans);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

.master-meta-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.meta-entry {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-label {
  font-family: var(--f-data);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.entry-value {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
}

/* Col 2: Visual */
.visual-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 60px;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.6s var(--ease);
}

.frame-corners span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
}

.frame-corners span:nth-child(1) {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.frame-corners span:nth-child(2) {
  top: -1px;
  right: -1px;
  border-left: 0;
  border-bottom: 0;
}

.frame-corners span:nth-child(3) {
  bottom: -1px;
  left: -1px;
  border-right: 0;
  border-top: 0;
}

.frame-corners span:nth-child(4) {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.visual-img {
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.1);
  mix-blend-mode: lighten;
}

.visual-caption {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--bg);
  padding: 4px 12px;
  font-family: var(--f-data);
  font-size: 8px;
  color: var(--accent);
  border: 1px solid var(--line);
}

/* Col 3: Stock */
.stock-panel {
  background: transparent;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.unit-grid-master {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 8px;
}

.u {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}

.u.filled {
  background: var(--accent);
  border-color: var(--accent);
}

.stock-main-display {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.stock-val {
  font-family: var(--f-display);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
  color: var(--cream);
  letter-spacing: -0.05em;
}

.stock-sub {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stock-total {
  font-family: var(--f-data);
  font-size: 1.2rem;
  color: var(--muted);
}

.stock-text {
  font-family: var(--f-data);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.2em;
}

@media (max-width: 600px) {
  .master-col {
    padding: 0;
  }

  .stock-val {
    font-size: 6rem;
  }

  .unit-grid-master {
    gap: 4px;
  }
}

/* Meta Data */
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-label {
  font-family: var(--f-data);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.meta-value {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
}

.meta-line {
  height: 1px;
  background: var(--line);
  margin: 30px 0;
}

@media (max-width: 768px) {
  .manifesto-technical {
    padding: 60px 20px;
  }

  .tech-cell {
    padding: 40px 30px;
  }

  .cell-label {
    left: 30px;
  }

  .stock-wrap {
    width: 240px;
    height: 240px;
  }

  .stock-num {
    font-size: 6rem;
  }
}

.spec-value {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-top: 8px;
}

/* spec-line removed for cleaner look */

/* ════════════════════════════════════════════════
   LOOKBOOK BENTO
   ════════════════════════════════════════════════ */
.lookbook-bento {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: repeat(2, 400px);
  gap: 20px;
}

.look-item {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--bg-soft);
  transition: transform 0.8s var(--ease);
}

.look-item:hover {
  transform: scale(0.98);
}

.look-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.look-item:hover img {
  transform: scale(1.1);
}

.item-main {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: var(--radius-lg);
}

.item-side-1 {
  grid-column: 1;
  grid-row: 1;
}

.item-side-2 {
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 900px) {
  .lookbook-bento {
    padding: 40px 20px;
  }

  .look-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .item-main,
  .item-side-1,
  .item-side-2 {
    grid-column: span 1;
    grid-row: auto;
    height: 350px;
  }
}

/* ════════════════════════════════════════════════
   FULLBLEED IMAGE SECTION
   ════════════════════════════════════════════════ */
.fullbleed {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.fullbleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.fullbleed-text {
  position: relative;
  z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 10vw, 8.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-align: center;
  mix-blend-mode: difference;
  pointer-events: none;
}

@media (max-width: 900px) {
  .fullbleed {
    height: 70vh;
  }
}

/* ════════════════════════════════════════════════
   ADQUISICIÓN (REFINED)
   ════════════════════════════════════════════════ */
.adquisicion {
  padding: 180px 40px;
}

.adquisicion-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.adquisicion-header {
  text-align: center;
  margin-bottom: 100px;
}

.adquisicion-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.85;
}

.adquisicion-sub {
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-top: 24px;
}

.productos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .adquisicion {
    padding: 100px 24px;
  }

  .productos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.producto-card {
  background: #11100F;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(197, 157, 63, 0.1),
      transparent 40%), var(--bg-soft);
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease);
  position: relative;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
}

.producto-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}

.pc-inner {
  background: #0E0C0B;
  border-radius: calc(2.5rem - 1px);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.producto-card:hover .pc-img img {
  transform: scale(1.08);
}

.pc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 10px;
  font-family: var(--f-data);
  font-size: 8px;
  letter-spacing: 0.15em;
  z-index: 10;
}

.pc-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 900px) {
  .pc-content {
    padding: 24px;
    gap: 16px;
  }
}

.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pc-title {
  font-family: var(--f-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
}

.pc-price {
  font-family: var(--f-data);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pc-title {
    font-size: 1.6rem;
  }

  .pc-price {
    font-size: 0.9rem;
  }
}

.pc-description {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.pc-btn {
  margin-top: auto;
  background: var(--cream);
  color: var(--bg);
  padding: 24px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 4;
}

.pc-btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-muted);
}

.pc-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px var(--accent-muted);
}

.pc-btn svg {
  transition: transform 0.4s var(--ease);
}

.pc-btn:hover svg {
  transform: translate(2px, -2px);
}

/* ════════════════════════════════════════════════
   ARCHIVO
   ════════════════════════════════════════════════ */
.archivo {
  padding: 180px 40px;
}

@media (max-width: 900px) {
  .archivo {
    padding: 80px 24px;
  }
}

.archivo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.archivo-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 48px;
}

.archivo-table {
  width: 100%;
  border-collapse: collapse;
}

.archivo-row {
  display: grid;
  grid-template-columns: 80px 1fr 140px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: all 0.4s var(--ease);
}

@media (max-width: 900px) {
  .archivo-row {
    grid-template-columns: 50px 1fr 100px;
    padding: 16px 8px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .archivo-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 20px 8px;
  }

  .arch-col-id {
    font-weight: 700;
    color: var(--accent);
  }

  .arch-col-name {
    grid-column: span 2;
    font-size: 13px;
    order: 3;
    margin-top: 4px;
    line-height: 1.4;
  }

  .arch-col-status {
    font-size: 9px;
    text-align: right;
  }

  .archivo {
    padding-bottom: 120px;
  }

  /* Safe zone for WA button */
}

.archivo-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.archivo-row.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  text-transform: uppercase;
  font-family: var(--f-data);
  font-size: 11px;
}

.arch-col-id {
  font-family: var(--f-data);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.arch-col-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.arch-col-status {
  text-align: right;
  font-family: var(--f-data);
  font-size: 11px;
}

.arch-col-status.active {
  color: var(--wa);
}

.archivo-footer {
  text-align: right;
  margin-top: 40px;
}

.archivo-link {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  padding: 120px 40px 60px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 120px;
  text-align: center;
}

@media (max-width: 900px) {
  footer {
    padding: 80px 24px 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }
}

.footer-label {
  display: block;
  font-family: var(--f-data);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  text-align: center;
}

.footer-links li+li {
  margin-top: 12px;
}

.footer-links a {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 300ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-col p {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  gap: 40px;
}

@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
  }
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copy {
  font-family: var(--f-data);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.footer-credit {
  font-family: var(--f-data);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.15em;
  opacity: 0.6;
  transition: opacity 300ms ease;
}

.footer-credit:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-logo {
  position: absolute;
  bottom: -5vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 25vw;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.02);
  line-height: 0.7;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  width: 100%;
  text-align: center;
}

/* ANIMATIONS */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.scroll-indicator {
  animation: bounce 2s infinite ease-in-out;
  display: inline-block;
  cursor: pointer;
}

.nav-cta {
  font-family: var(--f-data);
  font-size: 11px;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  color: var(--accent);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
}

.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  color: white;
  transition: all 0.5s var(--ease);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 900px) {
  .whatsapp-btn {
    bottom: 32px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .argumento-inner {}
}

/* ════════════════════════════════════════════════
   CRO UPGRADES
   ════════════════════════════════════════════════ */
.pc-badge.highlight {
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 700;
  border: none !important;
}

.trust-bar {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.01);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-label {
  font-family: var(--f-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.trust-val {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 60px;
    padding: 0;
  }
  
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}