/* ============================================================
   BOTILLERÍA PORVENIR — Landing Page Styles
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46,139,34,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0A0F0A 0%, #060B06 100%);
}

.hero-bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46,139,34,0.07) 0%, transparent 70%);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Badges */
.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  animation: slide-up 0.5s ease both;
}

/* Título hero */
.hero-title {
  display: flex;
  flex-direction: column;
  animation: slide-up 0.6s ease 0.1s both;
}

.hero-title-top {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--verde-glow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-title-main {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  background: linear-gradient(135deg, #FFFFFF 30%, #F5A623 70%, #E08A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.3));
}

.hero-title-sub {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.hero-desc {
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 480px;
  line-height: 1.75;
  animation: slide-up 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: slide-up 0.6s ease 0.3s both;
}

/* Info rápida debajo del CTA */
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: slide-up 0.6s ease 0.4s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-info-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.5));
}

.hero-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-info-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Mascota / Logo grande */
.hero-mascota {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide-up 0.7s ease 0.15s both;
}

.hero-logo-bg {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,34,0.15) 0%, rgba(245,166,35,0.08) 50%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-logo-main {
  width: 380px;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(46,139,34,0.4), 0 0 120px rgba(245,166,35,0.1);
  position: relative;
  z-index: 2;
  border: 3px solid rgba(245,166,35,0.3);
  animation: float 5s ease-in-out infinite;
}

.hero-mascota-img {
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 180px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite 1s;
  z-index: 3;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fade-in 1s ease 1s both;
}

.scroll-dot {
  width: 6px; height: 6px;
  background: var(--naranja);
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── FEATURES ─────────────────────────────────────────── */
.features {
  padding: 6rem 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,139,34,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--glow-verde);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(245,166,35,0.4));
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── STATS ────────────────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(46,139,34,0.08) 0%, rgba(245,166,35,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--naranja), #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--naranja);
  position: absolute;
  margin-top: -0.5rem;
}

.stat-item {
  position: relative;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── PROMOS ───────────────────────────────────────────── */
.promos-section {
  padding: 6rem 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.promo-placeholder {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(245,166,35,0.2);
}

.promo-placeholder:hover {
  transform: translateY(-4px);
  border-color: var(--naranja);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.promo-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(245,166,35,0.4));
}

.promo-info h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--naranja);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.promo-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Promo dinámica del admin */
.promo-card-dinamica {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card-dinamica::before {
  content: '⭐ PROMO';
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--naranja), #FF6B35);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.promo-card-dinamica:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--glow-naranja);
}

.promo-card-dinamica .promo-precio {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--naranja);
}

/* ── CATEGORÍAS ───────────────────────────────────────── */
.categorias-section {
  padding: 6rem 0;
  background: rgba(10,15,10,0.5);
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.cat-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--naranja);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 20px rgba(245,166,35,0.15);
  background: rgba(40, 65, 40, 0.8);
}

.cat-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-emoji {
  transform: scale(1.2);
}

.cat-name {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.cat-card:hover .cat-name {
  color: var(--naranja);
}

.cat-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.categorias-cta {
  text-align: center;
}

/* ── DELIVERY BANNER ──────────────────────────────────── */
.delivery-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.delivery-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,139,34,0.15) 0%, rgba(245,166,35,0.08) 50%, rgba(27,42,74,0.2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.delivery-banner-bg::before {
  content: '🍺🍷🥃🍹🎉';
  position: absolute;
  font-size: 8rem;
  opacity: 0.03;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  letter-spacing: 2rem;
  user-select: none;
}

.delivery-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.delivery-banner-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.delivery-banner-title span { color: var(--naranja); }

.delivery-banner-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.delivery-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem !important;
  font-weight: 600;
  color: var(--text-primary) !important;
}

.delivery-steps span { white-space: nowrap; }

.delivery-banner-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.delivery-banner-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* ── WhatsApp Flotante ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(37,211,102,0.7);
}

.wa-float-label {
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .wa-float-label { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .categorias-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-mascota { order: -1; }
  .hero-logo-main { width: 260px; }
  .hero-mascota-img { width: 120px; right: -20px; bottom: -10px; }
  .hero-logo-bg { width: 300px; height: 300px; }
  .hero-info { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-desc { text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .categorias-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery-banner-inner { flex-direction: column; text-align: center; }
  .delivery-steps { justify-content: center; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categorias-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mascota-img { display: none; }
}

@media (max-width: 480px) {
  .hero-title-main { font-size: 3rem; }
  .categorias-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
