/* =====================================================
   STORE WELCOME - Estilos para página de bienvenida - Otra Instancia
   ===================================================== */

/* Variables - Otra Instancia */
:root {
  --welcome-primary: #8B9A7A;
  --welcome-secondary: #C4956C;
  --welcome-dark: #4A453C;
  --welcome-bg-light: #F5F2E8;
}

/* Hero section */
.welcome-hero {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.welcome-hero-overlay {
  background: linear-gradient(135deg, var(--welcome-primary), var(--welcome-secondary));
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.welcome-hero-content {
  z-index: 2;
  position: relative;
}

.welcome-hero-bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Logos and icons */
.welcome-store-logo {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.welcome-description {
  white-space: pre-line;
}

/* Social media buttons */
.welcome-social-icon {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.welcome-social-icon:hover {
  transform: scale(1.1);
}

.welcome-social-facebook {
  background-color: #1877F2;
}

.welcome-social-instagram {
  background-color: #E4405F;
}

.welcome-social-twitter {
  background-color: #1DA1F2;
}

.welcome-social-youtube {
  background-color: #FF0000;
}

/* Footer */
.welcome-footer {
  background: linear-gradient(135deg, var(--welcome-dark), var(--welcome-primary));
}