/* ---- Dogo & Dogo Hero CSS ---- */

.hero {
  min-height: 100vh;
  background: #0a0a1a;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  /* padding-top aumentado para compensar el header sticky de 110px */
  padding-top: 120px;
  z-index: 1;
}

@media only screen and (max-width: 990px) {
  .hero {
    padding-top: 90px;
  }
}

/* Animated gradient mesh background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0,194,122,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(0,180,216,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 70% 80%, rgba(217,70,168,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(255,107,43,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(155,39,175,0.12) 0%, transparent 60%);
  animation: meshShift 12s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes meshShift {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  50%  { opacity: 0.85; transform: scale(1.06) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Particle canvas */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;
}

/* Grid lines */
.hero-bg-dots {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3;
  animation: floatBlob 10s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--blue); top: -150px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 420px; height: 420px; background: var(--pink); top: 40%; right: -120px; animation-delay: -4s; }
.blob-3 { width: 380px; height: 380px; background: var(--orange); bottom: -100px; left: 25%; animation-delay: -7s; }
.blob-4 { width: 300px; height: 300px; background: var(--green); top: 20%; left: 60%; animation-delay: -2s; }

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  33%  { transform: translateY(-40px) scale(1.07); }
  66%  { transform: translateY(20px) scale(0.95); }
}

/* Floating paw prints */
.paw-float {
  position: absolute; font-size: 1.5rem; opacity: 0; z-index: 2; pointer-events: none;
  animation: pawRise linear infinite;
}
@keyframes pawRise {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  15%  { opacity: 0.35; }
  85%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120vh) rotate(360deg) scale(1.2); }
}

.hero-content {
  text-align: center; z-index: 3; padding: 0 20px; max-width: 800px;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--yellow); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1, 
.hero-title, 
.hero h1 span,
.hero-title span {
  font-family: 'Fredoka One', cursive !important;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: white; /* Default fallback */
}

/* NUCLEAR: Override Caprasimo/any Enfold theme font on Hero title */
.dogodogo-hero-container .hero h1,
.dogodogo-hero-container .hero h1 span,
.dogodogo-hero-container .hero h1 .word-d,
.dogodogo-hero-container .hero h1 .word-o1,
.dogodogo-hero-container .hero h1 .word-g,
.dogodogo-hero-container .hero h1 .word-o2,
.dogodogo-hero-container .hero h1 .amp,
.dogodogo-hero-container .hero h1 .word-d2,
.dogodogo-hero-container .hero h1 .word-o3,
.dogodogo-hero-container .hero h1 .word-g2,
.dogodogo-hero-container .hero h1 .word-o4 {
  font-family: 'Fredoka One', 'Fredoka', cursive !important;
}

/* Hero Logo Image (replaces text title) */
.hero-logo-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  max-width: min(480px, 80vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

/* NUCLEAR: Override Caprasimo/any Enfold theme font on Hero title */
.dogodogo-hero-container .hero h1,
.dogodogo-hero-container .hero h1 span,
.dogodogo-hero-container .hero h1 .word-d,
.dogodogo-hero-container .hero h1 .word-o1,
.dogodogo-hero-container .hero h1 .word-g,
.dogodogo-hero-container .hero h1 .word-o2,
.dogodogo-hero-container .hero h1 .amp,
.dogodogo-hero-container .hero h1 .word-d2,
.dogodogo-hero-container .hero h1 .word-o3,
.dogodogo-hero-container .hero h1 .word-g2,
.dogodogo-hero-container .hero h1 .word-o4 {
  font-family: 'Fredoka One', 'Fredoka', cursive !important;
}
.hero h1 .word-d { color: var(--green); }
.hero h1 .word-o1 { color: var(--yellow); }
.hero h1 .word-g { color: var(--orange); }
.hero h1 .word-o2 { color: var(--blue); }
.hero h1 .amp { color: var(--pink); }
.hero h1 .word-d2 { color: var(--green); }
.hero h1 .word-o3 { color: var(--yellow); }
.hero h1 .word-g2 { color: var(--orange); }
.hero h1 .word-o4 { color: var(--blue); }

.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 1.25rem;
  font-weight: 700; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white; font-weight: 800; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 25px rgba(255,107,43,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,43,0.55); color: white;}
.btn-secondary {
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);
  color: white; font-weight: 800; font-size: 1rem;
  padding: 14px 36px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: white;}

.hero-stats {
  display: flex; gap: 40px; justify-content: center; margin-top: 60px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number { font-family: 'Fredoka One', cursive; font-size: 2.2rem; color: white; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-number span { font-size: 1.4rem; }
