/* ==========================================================================
   LA MEXICANA EN PARAGUAY - SITIO EN CONSTRUCCIÓN
   Estilo Moderno, Minimalista y Sofisticado (Dark / Glass Theme)
   ========================================================================== */

:root {
  /* Paleta moderna extraída de la identidad del logo */
  --bg-primary: #0b0d11;
  --bg-card: rgba(18, 22, 31, 0.85);
  --bg-card-inner: rgba(255, 255, 255, 0.03);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(20, 184, 166, 0.45);

  --teal-accent: #14b8a6;
  --teal-glow: rgba(20, 184, 166, 0.25);
  --teal-dark: #0f766e;

  --whatsapp-color: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.25);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset y estructura básica */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Iluminación Ambiental de Fondo (Modern Mesh Glow)
   -------------------------------------------------------------------------- */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 50% 15%, rgba(20, 184, 166, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 10% 85%, rgba(15, 118, 110, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(37, 211, 102, 0.08) 0%, transparent 40%);
}

/* Contenedor principal */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Tarjeta Principal con Efecto Glassmorphism
   -------------------------------------------------------------------------- */
.main-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: cardFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Avatar del Logo Oficial
   -------------------------------------------------------------------------- */
.avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.avatar-ring {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: var(--radius-full);
  padding: 4px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.8), rgba(255, 255, 255, 0.1), rgba(15, 118, 110, 0.8));
  box-shadow: 
    0 0 35px var(--teal-glow),
    0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.avatar-ring:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 45px rgba(20, 184, 166, 0.4),
    0 15px 30px rgba(0, 0, 0, 0.7);
}

.brand-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
  display: block;
  background-color: #000000;
}

/* --------------------------------------------------------------------------
   Badge de Estado Moderno (Pulse Dot)
   -------------------------------------------------------------------------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.1rem;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 1.8rem;
}

.status-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  background-color: var(--teal-accent);
  border-radius: 50%;
}

.status-ping {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--teal-accent);
  opacity: 0.75;
  animation: pingAnimation 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #5eead4;
}

/* --------------------------------------------------------------------------
   Tipografía Principal
   -------------------------------------------------------------------------- */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.highlight-text {
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 50%, #f0fdfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.4rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Botones de Acción (WhatsApp / Instagram)
   -------------------------------------------------------------------------- */
.actions-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.4rem;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  flex: 0 1 auto;
  width: auto;
  min-width: 220px;
  max-width: 280px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Botón WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Botón Instagram */
.btn-instagram {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(225, 48, 108, 0.5);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.25);
}

/* --------------------------------------------------------------------------
   Tarjetas de Información (Puntos de Venta & Antojería)
   -------------------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.2rem;
}

.info-card {
  background: var(--bg-card-inner);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-3px);
}

.info-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-accent);
}

.info-heading {
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.info-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.info-text strong {
  color: #ffffff;
}

.info-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--teal-accent);
  font-weight: 500;
}

.dot-active {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-accent);
}

/* --------------------------------------------------------------------------
   Footer Moderno
   -------------------------------------------------------------------------- */
.footer {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal-accent);
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.15);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Animaciones
   -------------------------------------------------------------------------- */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pingAnimation {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Responsividad
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.5rem 1rem 2.5rem;
  }

  .main-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .avatar-ring {
    width: 110px;
    height: 110px;
  }

  .status-pill {
    padding: 0.35rem 0.8rem;
    gap: 0.45rem;
  }

  .status-text {
    font-size: 0.75rem;
  }

  .actions-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0 1.2rem;
    font-size: 0.92rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
