/* Estilos Globais */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Estilos de botões padronizados */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  gap: 8px;
  min-width: 100px;
}

.button.primary {
  background: linear-gradient(135deg, #FFD700, #FF6B6B);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 107, 107, 0.4);
}

.button.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.button-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Novos estilos de botões modernos */
.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.subscribe-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.subscribe-button:hover::before {
  left: 100%;
}

.subscribe-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.subscribe-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: none;
}

.subscribe-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.premium-manage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.premium-manage-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.profile-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: 100%;
  max-width: 250px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 12px auto;
}

.profile-logout-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.logout-icon {
  margin-right: 8px;
  font-size: 16px;
}

.quick-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 280px;
}

.quick-login-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  width: 100%;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.social-login-button.google {
  background: linear-gradient(to right, #4285F4, #34A853);
  color: white;
  box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

.social-login-button.facebook {
  background: linear-gradient(to right, #3b5998, #0078ff);
  color: white;
  box-shadow: 0 4px 10px rgba(59, 89, 152, 0.3);
}

.social-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.create-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  width: 100%;
  max-width: 280px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  background: linear-gradient(135deg, #FFD700, #FF6B6B);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.create-account-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.create-account-button:hover::before {
  left: 100%;
}

.create-account-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.create-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* Botão na seção de mapa */
.nearby-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 12px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  min-width: 60px;
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.nearby-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s;
}

.nearby-action:hover::before {
  left: 100%;
}

.nearby-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

/* Novos estilos de botões modernos */
.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.subscribe-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.subscribe-button:hover::before {
  left: 100%;
}

.subscribe-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.subscribe-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: none;
}

.subscribe-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.premium-manage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.premium-manage-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.profile-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: 100%;
  max-width: 250px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 12px auto;
}

.profile-logout-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.logout-icon {
  margin-right: 8px;
  font-size: 16px;
}

.quick-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 280px;
}

.quick-login-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  width: 100%;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.social-login-button.google {
  background: linear-gradient(to right, #4285F4, #34A853);
  color: white;
  box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

.social-login-button.facebook {
  background: linear-gradient(to right, #3b5998, #0078ff);
  color: white;
  box-shadow: 0 4px 10px rgba(59, 89, 152, 0.3);
}

.social-login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.create-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  width: 100%;
  max-width: 280px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  background: linear-gradient(135deg, #FFD700, #FF6B6B);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.create-account-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.create-account-button:hover::before {
  left: 100%;
}

.create-account-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.create-icon {
  margin-right: 8px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

.app {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #121212;
  overflow: hidden;
}

/* Fundo Animado */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-color: #121212;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
  transform: translateZ(0);
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 85, 85, 0.5), rgba(80, 0, 0, 0));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(75, 0, 130, 0.5), rgba(0, 0, 80, 0));
  bottom: -5%;
  right: -5%;
  animation-delay: 2s;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.4), rgba(80, 80, 0, 0));
  bottom: 30%;
  left: -5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5%, 5%);
  }
  50% {
    transform: translate(2%, 8%);
  }
  75% {
    transform: translate(8%, 2%);
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212;
  z-index: 100;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  text-align: center;
  padding: 0 20px;
}

.loading-logo {
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  background: linear-gradient(to right, #FFD700, #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loading-bar-container {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 20px;
}

.loading-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, #F45B69, #E54B84);
  width: 0;
  animation: loading 3s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.loading-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Container principal */
.container {
  flex: 1;
  padding: 0 16px;
  padding-bottom: 80px; /* Espaço para navegação inferior */
}

/* Estilos da Tela de Boas-vindas */
.welcome-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 20px;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.welcome-hero {
  position: relative;
  margin-bottom: 40px;
}

.welcome-logo {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
}

.welcome-title {
  font-size: 36px;
  font-weight: 800;
  margin: 20px 0 8px;
  background: linear-gradient(to right, #FFD700, #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 280px;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
  width: 100%;
  max-width: 300px;
}

.welcome-feature {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.welcome-feature:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14px;
  flex: 1;
  text-align: left;
}

.welcome-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.welcome-button {
  width: 100%;
  max-width: 250px;
  padding: 16px 24px;
  border-radius: 50px;
  background-color: #F45B69;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.welcome-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.3s;
}

.welcome-button:hover::before {
  left: 100%;
}

.welcome-button-primary {
  background: linear-gradient(45deg, #F45B69, #E54B84);
  box-shadow: 0 4px 15px rgba(244, 91, 105, 0.3);
}

.welcome-button-primary:hover {
  box-shadow: 0 6px 20px rgba(244, 91, 105, 0.5);
  transform: translateY(-2px);
}

.welcome-button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.welcome-button-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.welcome-button-icon {
  margin-right: 10px;
  font-size: 18px;
}

.welcome-footer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Botões */
.button {
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.primary {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.primary:hover::before {
  left: 100%;
}

.primary:hover {
  background: linear-gradient(135deg, #FF5A5A, #FF7C42);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.4);
}

.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-icon {
  margin-right: 8px;
}

.login-footer {
  margin-top: 24px;
  text-align: center;
}

.login-link {
  color: #F45B69;
  text-decoration: underline;
  cursor: pointer;
}

/* Estilos de Tela */
.screen-container {
  padding: 10px 0;
}

.screen-header {
  margin-bottom: 24px;
}

.screen-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.screen-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.4;
}

/* Estilos para Modal */
.login-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.login-modal {
  background-color: #1A1A1A;
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 340px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
}

.login-close:hover {
  color: white;
  transform: scale(1.1);
}

.login-header {
  text-align: center;
  margin-bottom: 24px;
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(to right, #FFD700, #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  transition: all 0.3s;
}

.input-field:focus {
  border-color: #F45B69;
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 91, 105, 0.2);
}

/* Estilos para navegação inferior */
.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(26, 26, 26, 0.95);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  cursor: pointer;
}

.nav-item.active {
  color: #F45B69;
}

.nav-icon {
  font-size: 22px;
  margin-bottom: 4px;
  transition: all 0.3s;
}

.nav-item.active .nav-icon {
  transform: translateY(-2px);
  color: #F45B69;
}

.nav-indicator {
  position: absolute;
  top: 0;
  width: 20%;
  height: 3px;
  background: linear-gradient(to right, #F45B69, #E54B84);
  border-radius: 0 0 3px 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Estilos de Carousel */
.carousel-container {
  margin: 0 -16px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-item {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Estilos para cards de ofertas */
.card {
  background-color: #1E1E1E;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.offer-image-container {
  position: relative;
  height: 160px;
}

.offer-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.offer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #F45B69, #E54B84);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.offer-restaurant {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: white;
  z-index: 1;
}

.restaurant-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.restaurant-location {
  display: flex;
  align-items: center;
  font-size: 12px;
  opacity: 0.8;
}

.restaurant-location span:first-child {
  margin-right: 4px;
}

.offer-content {
  padding: 16px;
}

.offer-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.offer-title-icon {
  margin-right: 8px;
  font-size: 16px;
}

.offer-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.offer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.4;
}

.offer-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.offer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.offer-info-item {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.offer-info-icon {
  margin-right: 4px;
  font-size: 14px;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-price-value {
  font-size: 14px;
  color: white;
}

.offer-price-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.rating-star {
  color: #FFD700;
  font-size: 14px;
}

.rating-value {
  font-weight: 600;
  font-size: 14px;
}

.rating-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFD700;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.offer-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  background: linear-gradient(90deg, #FF6B6B, #FF8E53);
  -webkit-background-clip: text;
  background-clip: text; 
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  transition: all 0.3s;
  padding: 5px 0;
  position: relative;
}

.offer-action:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #FF6B6B, #FF8E53);
  transition: all 0.3s;
}

.offer-action:hover:after {
  width: 100%;
  left: 0;
}

.offer-action:hover {
  transform: translateX(4px);
}

.offer-action-arrow {
  margin-left: 5px;
  font-size: 16px;
}

/* Estilos para a tela Home */
.premium-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 16px;
}

.premium-logo {
  display: flex;
  align-items: center;
}

.app-title {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(to right, #FFD700, #F45B69);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
}

.app-subtitle {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-avatar:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.location-selector {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: all 0.3s;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-selector:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.location-icon {
  margin-right: 8px;
  color: #F45B69;
  font-size: 16px;
}

.location-arrow {
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.location-selector:hover .location-arrow {
  transform: rotate(180deg);
}

.experience-tabs {
  display: flex;
  margin-bottom: 24px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 8px;
  background-color: transparent !important;
  border: 1px solid transparent;
}

.tab:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab.active {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
  border: 1px solid transparent;
}

.tab-icon {
  font-size: 18px;
}

.tab-text {
  font-size: 15px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 30px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.section-more {
  font-size: 14px;
  background: linear-gradient(90deg, #FF6B6B, #FF8E53);
  -webkit-background-clip: text;
  background-clip: text; 
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.section-more:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #FF6B6B, #FF8E53);
  transition: all 0.3s;
}

.section-more:hover:after {
  width: 100%;
  left: 0;
}

.section-more:hover {
  transform: translateX(2px);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.category-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(244, 91, 105, 0.3);
}

.category-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.category-name {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.featured-card {
  width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.featured-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.featured-image {
  width: 100%;
  height: 100%;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.featured-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  z-index: 2;
}

.featured-restaurant {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.featured-location {
  display: flex;
  align-items: center;
  font-size: 12px;
  opacity: 0.8;
}

.featured-location-icon {
  margin-right: 4px;
}

.featured-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #F45B69, #E54B84);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.filtered-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.no-offers-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}

.no-offers-icon {
  font-size: 36px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.no-offers-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 250px;
  line-height: 1.4;
}

.no-offers-action {
  padding: 12px 20px;
  background: linear-gradient(135deg, #F45B69, #E54B84);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.no-offers-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(244, 91, 105, 0.35);
}

/* Estilo para os botões de navegação das abas melhorado */
.experience-tabs {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tab:not(.active) {
  color: rgba(255, 255, 255, 0.6);
}

.tab-icon {
  margin-right: 8px;
  font-size: 16px;
}

.tab-text {
  font-weight: 600;
  font-size: 14px;
}

/* Tela de busca - Search Screen */
.search-bar-container {
  margin: 16px 0 24px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.search-bar {
  width: 100%;
  padding: 14px 14px 14px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}

.search-bar:focus {
  border-color: #F45B69;
  box-shadow: 0 0 0 2px rgba(244, 91, 105, 0.2);
}

/* Responsividade */
@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 360px) {
  .app-title {
    font-size: 18px;
  }
  
  .app-subtitle {
    font-size: 10px;
  }
  
  .tab-text {
    font-size: 12px;
  }
  
  .screen-title {
    font-size: 24px;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  text-align: left;
}
/* Estilos para Assistente IA */
.ai-assistant-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-assistant-container {
  background: linear-gradient(135deg, #1A1A1A, #121212);
  width: 90%;
  max-width: 400px;
  height: 70vh;
  max-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
}

.ai-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

.ai-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ai-close-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s;
}

.ai-close-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.ai-message {
  display: flex;
  max-width: 85%;
  margin-bottom: 10px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-assistant {
  align-self: flex-start;
}

.ai-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.ai-message-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: pre-wrap;
}

.ai-user .ai-message-content {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
  border-color: rgba(255, 107, 107, 0.2);
}

.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 12px;
}

.ai-typing-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: typing 1.3s infinite ease-in-out;
}

.ai-typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.ai-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.ai-input-container {
  padding: 10px 16px;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  position: relative;
}

.ai-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 10px 16px;
  padding-right: 50px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.ai-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

.ai-send-button {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 16px;
}

.ai-send-button:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.ai-send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.1);
}

.ai-suggestions {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 5px;
}

.ai-suggestions::-webkit-scrollbar {
  display: none;
}

.ai-suggestion-chip {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.ai-suggestion-chip:hover {
  background-color: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  color: white;
}

/* Botão flutuante do assistente de IA */
.ai-floating-button {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  transition: all 0.3s ease;
  border: none;
}

.ai-floating-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.ai-floating-icon {
  font-size: 24px;
  color: white;
}

.ai-floating-button.bottom-left {
  left: 16px;
  right: auto;
}

.ai-floating-button.top-right {
  top: 80px;
  bottom: auto;
}

.ai-floating-button.top-left {
  top: 80px;
  left: 16px;
  bottom: auto;
  right: auto;
}

/* Pulse animation */
.ai-floating-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Sugestões de busca IA */
.ai-search-suggestions {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.ai-search-suggestion-header {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-search-suggestion-icon {
  font-size: 16px;
  color: #FF6B6B;
}

.ai-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-search-chip {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.8);
}

.ai-search-chip:hover {
  background-color: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Versão mini do assistente na home */
.mini-ai-assistant {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(18, 18, 18, 0.8));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mini-ai-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-ai-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.mini-ai-title {
  font-weight: 600;
  font-size: 15px;
}

.mini-ai-message {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-ai-actions {
  display: flex;
  gap: 10px;
}

.mini-ai-chip {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.mini-ai-chip:hover {
  background-color: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  color: white;
  transform: translateY(-2px);
}

.mini-ai-ask-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 12px;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.mini-ai-ask-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.mini-ai-send-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}/* Estilos para o MapScreen */
.nearby-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nearby-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby-info {
  flex: 1;
  margin-left: 15px;
  margin-right: 8px;
  overflow: hidden;
}

.nearby-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nearby-details {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.dot {
  margin: 0 6px;
  font-size: 10px;
}

.nearby-actions {
  display: flex;
}

.nearby-action-text {
  display: inline-block;
}.social-login-button.email {
  background: linear-gradient(to right, #FFD700, #FF8E53);
  color: white !important;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: none !important;
}

.social-login-button.email .social-icon {
  color: white !important;
}

.social-login-button.email::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.social-login-button.email:hover::before {
  left: 100%;
}

.social-login-button.email:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}/* Estilos para o componente de Coupon no carrinho */
.coupon-form {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
}

.coupon-input-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.coupon-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 6px;
  color: white;
  margin-right: 10px;
}

.coupon-button {
  background: linear-gradient(to right, #FF6B6B, #FF8E53);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.coupon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
}

.coupon-button:hover::before {
  left: 100%;
}

.coupon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

.coupon-applied {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: rgba(39, 174, 96, 0.1);
  border-radius: 6px;
  border-left: 3px solid #27ae60;
  margin-top: 10px;
}

.coupon-code {
  font-weight: 600;
  margin-right: 10px;
  color: #27ae60;
}

.coupon-discount {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.coupon-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.coupon-remove:hover {
  color: rgba(255, 255, 255, 0.9);
}/* Estilos para o MapScreen */
.nearby-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nearby-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nearby-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nearby-info {
  flex: 1;
  margin-left: 15px;
  margin-right: 8px;
  overflow: hidden;
}

.nearby-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nearby-details {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.dot {
  margin: 0 6px;
  font-size: 10px;
}

.nearby-actions {
  display: flex;
}

.nearby-action-text {
  display: inline-block;
}.social-login-button.email {
  background: linear-gradient(to right, #FFD700, #FF8E53) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
}

.social-login-button.email .social-icon {
  color: white !important;
}

/* Estilos para o componente de Coupon no carrinho com !important */
.coupon-button {
  background: linear-gradient(to right, #FF6B6B, #FF8E53) !important;
  color: white !important;
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.coupon-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4) !important;
}

/* Estilos para botões genéricos */
.button.primary {
  background: linear-gradient(to right, #FF6B6B, #FF8E53) !important;
  border: none !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 8px rgba(255, 107, 107, 0.25) !important;
  transition: all 0.3s ease !important;
}

.button.primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4) !important;
}

/* Estilos para a seção Nearby melhorados e com !important para garantir aplicação */
.nearby-item {
  display: flex !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

.nearby-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-2px) !important;
}

.nearby-icon {
  font-size: 24px !important;
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.nearby-info {
  flex: 1 !important;
  margin-left: 15px !important;
  margin-right: 8px !important;
  overflow: hidden !important;
}

.nearby-name {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.nearby-details {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  display: flex !important;
  align-items: center !important;
}

/* Correção para o botão de criar conta premium */
.create-account-button {
  background: linear-gradient(to right, #9D50BB, #6E48AA) !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(157, 80, 187, 0.3) !important;
  transition: all 0.3s ease !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  position: relative !important;
}

.create-account-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(157, 80, 187, 0.4) !important;
}/* Estilos melhorados para a seção de busca */
.search-container {
  padding: 16px !important;
}

.search-header {
  margin-bottom: 24px !important;
}

.search-bar-wrapper {
  display: flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 50px !important;
  padding: 5px 5px 5px 15px !important;
  margin-bottom: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

.search-bar-wrapper:focus-within {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
}

.search-icon-wrapper {
  font-size: 18px !important;
  margin-right: 10px !important;
  opacity: 0.7 !important;
}

.search-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 16px !important;
  outline: none !important;
  padding: 12px 0 !important;
}

.search-ai-button {
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.search-ai-button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: all 0.5s !important;
}

.search-ai-button:hover::before {
  left: 100% !important;
}

.search-ai-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5) !important;
}

.ai-icon {
  font-size: 18px !important;
}

/* Estilos melhorados para os filtros de pesquisa */
.search-filters {
  display: flex !important;
  overflow-x: auto !important;
  padding: 10px 0 !important;
  margin: 0 -10px !important;
  scrollbar-width: none !important;
}

.search-filters::-webkit-scrollbar {
  display: none !important;
}

.search-filter {
  background: rgba(255, 255, 255, 0.07) !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  margin: 0 6px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 1px solid transparent !important;
}

.search-filter:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px) !important;
}

.search-filter.active {
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(255, 142, 83, 0.8)) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.25) !important;
}/* Estilos adicionais para as seções de busca */
.search-section {
  margin-bottom: 24px !important;
}

.search-section-title {
  display: flex !important;
  align-items: center !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
}

.search-section-icon {
  margin-right: 10px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 8px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
}

.recent-search-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
  gap: 12px !important;
}

.recent-search-item {
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 1px solid transparent !important;
}

.recent-search-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.popular-searches .recent-search-item {
  display: flex !important;
  align-items: center !important;
}

.popular-search-type {
  font-size: 12px !important;
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  color: white !important;
  padding: 4px 8px !important;
  border-radius: 10px !important;
  margin-top: 6px !important;
  display: inline-block !important;
  font-weight: 500 !important;
}

.popular-search-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 12px !important;
  font-size: 18px !important;
}/* Estilos para resultados de pesquisa */
.search-results {
  margin-top: 20px !important;
}

.search-results-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
}

.results-count {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.results-sort {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
}

.results-sort-icon {
  margin-right: 6px !important;
}

.search-result-item {
  margin-bottom: 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.search-result-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.result-image {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
}

.result-content {
  padding: 16px !important;
}

.result-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.result-description {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 12px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.result-meta {
  display: flex !important;
  align-items: center !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.result-badge {
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: white !important;
  padding: 3px 8px !important;
  border-radius: 20px !important;
  margin-left: auto !important;
}/* Estilos para melhorar a seção de perfil do usuário */
.premium-profile-header {
  position: relative !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent) !important;
  padding: 20px 20px 70px !important;
  border-radius: 15px !important;
  margin-bottom: 60px !important;
  overflow: hidden !important;
}

.profile-cover-gradient {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 100% !important;
  background: linear-gradient(135deg, #FF6B6B, #6E48AA) !important;
  opacity: 0.8 !important;
  z-index: -1 !important;
}

.profile-avatar-container {
  position: absolute !important;
  bottom: -40px !important;
  left: 20px !important;
  display: flex !important;
  align-items: flex-end !important;
}

.profile-avatar {
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  font-weight: bold !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  border: 3px solid rgba(255, 255, 255, 0.9) !important;
}

.profile-status {
  position: absolute !important;
  bottom: 0 !important;
  right: -5px !important;
  background: #27AE60 !important;
  border-radius: 50% !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

.status-icon {
  font-size: 12px !important;
  color: white !important;
}

.profile-info {
  margin-left: 100px !important;
  margin-bottom: 15px !important;
}

.profile-name {
  font-size: 22px !important;
  font-weight: bold !important;
  margin-bottom: 5px !important;
}

.profile-email {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 10px !important;
}

.profile-badge {
  display: inline-block !important;
  background: linear-gradient(45deg, #FFD700, #FF8E53) !important;
  color: white !important;
  font-size: 12px !important;
  font-weight: bold !important;
  padding: 4px 10px !important;
  border-radius: 30px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.profile-stats {
  display: flex !important;
  justify-content: space-around !important;
  padding: 15px 0 !important;
  margin-bottom: 20px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.profile-stat-item {
  text-align: center !important;
}

.stat-value {
  font-size: 20px !important;
  font-weight: bold !important;
  margin-bottom: 5px !important;
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.stat-label {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.profile-logout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 12px !important;
  border-radius: 10px !important;
  width: 100% !important;
  margin-top: 20px !important;
  transition: all 0.3s ease !important;
}

.profile-logout-button:hover {
  background: rgba(255, 87, 87, 0.15) !important;
  border-color: rgba(255, 87, 87, 0.3) !important;
  transform: translateY(-2px) !important;
}/* Estilos para correção da página de ativação */
.activation-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  max-width: 400px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.activation-title {
  font-size: 24px !important;
  font-weight: bold !important;
  margin-bottom: 20px !important;
  background: linear-gradient(45deg, #FFD700, #FF6B6B) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-align: center !important;
}

.activation-input-container {
  width: 100% !important;
  margin-bottom: 20px !important;
}

.activation-input {
  width: 100% !important;
  padding: 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: white !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
  transition: all 0.3s ease !important;
}

.activation-input:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.2) !important;
}/* Estilos melhorados para os botões da tela de boas-vindas */
.welcome-button {
  border: none !important;
  padding: 14px 20px !important;
  border-radius: 30px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  width: 100% !important;
  margin-bottom: 15px !important;
}

.welcome-button.primary {
  background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
  color: white !important;
}

.welcome-button.primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}

.welcome-button.secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.welcome-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
}

.welcome-button.outline {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.welcome-button.outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.welcome-action-container {
  margin-top: 10px !important;
  width: 100% !important;
}

/* Atualização da tela de ativação */
.activation-input-container {
  width: 100% !important;
  margin-bottom: 10px !important;
}

.activation-input {
  width: 100% !important;
  padding: 16px !important;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
  transition: all 0.3s ease !important;
}

.activation-input:focus {
  outline: none !important;
  border-color: #FF6B6B !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
}/* Ajustes no espaçamento e no cabeçalho */
.activation-container {
  margin-top: 30px !important;
  padding: 30px !important;
}

.activation-title {
  margin-bottom: 30px !important;
  font-size: 28px !important;
}

.welcome-header {
  position: relative !important;
  z-index: 2 !important;
  padding: 25px 20px 30px !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.welcome-logo {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 25px !important;
}

/* Logo obsoleto - manter apenas para compatibilidade */
.welcome-logo-icon {
  width: 40px !important;
  height: 40px !important;
  background: linear-gradient(135deg, #FF8C00, #FFD700) !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  margin-right: 12px !important;
}

/* Novo padrão de logo PG para toda a aplicação */
.app-logo-icon {
  background: linear-gradient(135deg, #FF8C00, #FFD700) !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 18px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  margin-right: 12px !important;
}

.welcome-logo-title {
  font-size: 24px !important;
  font-weight: bold !important;
  margin: 0 !important;
  background: linear-gradient(45deg, #FFFFFF, #E6E6E6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.welcome-title {
  font-size: 28px !important;
  font-weight: bold !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
  background: linear-gradient(45deg, #FFD700, #FF6B6B) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.welcome-subtitle {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 30px !important;
  max-width: 300px !important;
  line-height: 1.5 !important;
}.welcome-secondary-action {
  margin-top: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.premium-code-text {
  margin-bottom: 12px !important;
  display: block !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.feature-icon {
  flex-shrink: 0 !important;
}