/* =========================
   HERO HOME – LOGO FLOAT
========================= */

.home-hero {
  position: relative;
  min-height: 75vh;
  padding: 90px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(circle at 50% 35%, rgba(255, 214, 102, 0.12), transparent 55%),
    linear-gradient(135deg, #1b2a6b, #2f1f6b);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 45%);
  z-index: 0;
}

.home-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.32), rgba(255,255,255,0) 70%);
  filter: blur(52px);
  z-index: 1;
}

.hero-logo {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  text-align: center;
}

.hero-logo img {
  max-width: 260px;
  width: 100%;

  filter: drop-shadow(0 26px 52px rgba(0,0,0,0.45));

  animation:
    heroIn 1.1s ease forwards,
    heroFloat 6s ease-in-out infinite;
  animation-delay: 0s, 1.1s;
}
/* =========================
   BOTÓN HERO (AISLADO)
========================= */

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 46px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(255,214,102,0.95),
    rgba(255,193,7,1)
  );

  color: #2a1b00;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.45);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.btn-hero:active {
  transform: scale(0.97);
}


/* =========================
   PROPUESTA DE VALOR
========================= */

.value-section {
  background: #ffffff;
}

.value-grid {
  max-width: 1100px;
  margin: 48px auto 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.value-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* =========================
   POR QUÉ LITTLE STICKS
========================= */

.why-ls {
  background: #f8fafc;
}

.why-grid {
  max-width: 1100px;
  margin: 48px auto 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--light);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 15px 40px rgba(15,23,42,0.08);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

/* =========================
   QUIÉNES SOMOS (HOME)
========================= */

.about-home {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: center;

  position: relative;
  z-index: 1;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;

  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-content {
  text-align: left;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.about-content .btn-primary {
  margin-top: 12px;
}

/* Formas decorativas */
.about-shape {
  position: absolute;
  background: var(--secondary);
  opacity: 0.12;
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.shape-yellow-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: -80px;
}

.shape-yellow-2 {
  width: 280px;
  height: 280px;
  bottom: -100px;
  right: -100px;
}

/* =========================
   CTA HOME
========================= */

.home-cta {
  text-align: center;
  padding: 80px 20px;
  background-color: #ffffff;
}

.home-cta p {
  max-width: 720px;
  margin: 0 auto 35px;
  color: var(--gray);
}

/* =========================
   ANIMACIONES
========================= */

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* =========================
   SCROLL ANIMATIONS
========================= */

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 70vh;
    padding: 70px 20px;
  }

  .hero-logo img {
    max-width: 200px;
  }
}
