/* ─────────────────────────────────────────
   ALOCASIA.CL — Estilo MHT Group
───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500&display=swap');

:root {
  --black:         #0a0a0a;
  --black-mid:     #111111;
  --orange:        #e8520a;
  --orange-light:  #f97316;
  --orange-gold:   #f59e0b;
  --white:         #ffffff;
  --gray:          #a0a0a0;
  --gray-dark:     #2a2a2a;
  --shadow-orange: 0 0 60px rgba(232, 82, 10, 0.25);
}

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

html { -webkit-font-smoothing: antialiased; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Barlow', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* ── FONDO GLOW — centrado verticalmente, lejos del header ── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-left {
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(180, 40, 0, 0.5) 0%, transparent 70%);
  /* Empieza desde el 35% vertical — bien debajo del header */
  top: 35vh;
  left: -250px;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.glow-right {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100, 0, 120, 0.18) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: glowPulse 11s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── HEADER — fondo sólido oscuro para que el logo resalte ── */
.header {
  position: relative;
  z-index: 10;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  /* Banda oscura semitransparente encima del glow */
  background: linear-gradient(to bottom, #0a0a0a 60%, transparent);
}
.logo-link { display: inline-block; }
.logo {
  height: 38px;
  width: auto;
  /* El PNG tiene fondo negro — lo hacemos transparente con mix-blend-mode */
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}

/* ── MAIN ── */
.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s both;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── DOMAIN TITLE ── */
.domain-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeUp 0.6s 0.2s both;
}
.domain-name { color: var(--white); }
.domain-tld {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HEADLINE ── */
.headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.3s both;
}

/* ── DESCRIPTION ── */
.description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--gray);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.35s both;
}
.description strong { color: var(--white); font-weight: 500; }

/* ── TAGS ── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.4s both;
}
.tag {
  background: transparent;
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.tag:hover {
  border-color: var(--orange);
  color: var(--white);
  background: rgba(232, 82, 10, 0.08);
}

/* ── CTA ── */
.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.5s both;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-orange);
}
.cta-button:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 80px rgba(232, 82, 10, 0.4);
}
.cta-button:active { transform: translateY(0); }

.cta-secondary {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-secondary:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 24px 40px;
  border-top: 1px solid var(--gray-dark);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.footer a { color: var(--orange); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .header { padding: 20px 24px; }
  .main   { padding: 40px 24px 60px; }
  .footer { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .domain-title { font-size: 4.2rem; line-height: 0.9; }
  .headline     { font-size: 1.5rem; }
  .cta-wrapper  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-button   { width: 100%; justify-content: center; }
  .glow-left    { width: 350px; height: 350px; top: 40vh; left: -150px; }
  .glow-right   { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}