@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body, html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Fondo animado */
.oru-bg {
  background: radial-gradient(circle at 15% 30%, #C8E6C9 0%, transparent 50%),
              radial-gradient(circle at 85% 70%, #A5D6A7 0%, transparent 50%),
              linear-gradient(to bottom, #E8F5E9, #FFFFFF);
  animation: bgMove 12s infinite alternate ease-in-out;
  background-size: 200% 200%;
}
@keyframes bgMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Botones */
.btn-primary, .btn-outline {
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #2E7D32;
  color: #fff;
  box-shadow: 0 4px 10px rgba(46,125,50,0.3);
}
.btn-primary:hover { transform: scale(1.05); }

.btn-outline {
  border: 2px solid #2E7D32;
  color: #2E7D32;
}
.btn-outline:hover { background: #E8F5E9; }

/* Tarjetas */
.card {
  background: #F9FAFB;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Banner instalación */
.install-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46,125,50,0.2);
  border-radius: 1rem;
  width: 90%;
  max-width: 380px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: slideUp 0.6s ease-out;
  z-index: 9999;
}
.install-banner img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.install-banner .info h3 {
  font-weight: 700;
  color: #1B5E20;
  font-size: 0.95rem;
}
.install-banner .info p {
  font-size: 0.75rem;
  color: #4B5563;
}
.btn-install {
  background: #2E7D32;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}
@keyframes slideUp {
  from { transform: translate(-50%, 100%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}


#playerBar {
  transform: translateY(100%);
  opacity: 0;
}
#playerBar.translate-y-0 {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease;
}



.btn-primary {
  background: linear-gradient(135deg, #2e7d32, #3cb371);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.btn-outline {
  border: 2px solid #2E7D32;
  color: #2E7D32;
  padding: 0.9rem 1.6rem;
  border-radius: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s ease;
}
.btn-outline:hover {
  background: #e8f5e9;
}

/* Banner instalación */
.install-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 1rem;
  width: 90%;
  max-width: 380px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out;
  z-index: 9999;
}
