/* Legacy skin (design antigo) aplicado sobre a base "loja nova" */

/* Fundo/atmosfera */
body {
  font-family: 'Roboto', sans-serif;
  background-image: linear-gradient(135deg, #0c1220 0%, #0e1530 50%, #0c1220 100%);
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.02) 0%, transparent 60%),
    radial-gradient(circle at 60% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

@keyframes logoAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0px); }
}

.logo-anim {
  animation: logoAnim 3s infinite ease-in-out;
  transition: all .1s;
}

.logo-anim:hover {
  filter: brightness(90%);
}

/* Animações de entrada */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal-left { animation: slideInLeft 0.6s ease-out both; }
.reveal-right { animation: slideInRight 0.6s ease-out both; }
.reveal-up { animation: fadeUp .5s ease-out both; }

/* Ícones principais com brilho suave */
.c-icon {
  color: #22d3ee;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
}

/* Header (design antigo) */
.c-header {
  position: relative;
  overflow: visible;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 0 0 14px 14px !important;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.c-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.3) 0%, rgba(14, 21, 48, 0.4) 100%);
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.c-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: blur(0.5px);
  transform: scale(1.05);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.c-header__icon-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.c-header__icon-box:hover {
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.c-header__icon {
  color: #22d3ee;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.c-header__connect-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.c-header__connect-btn:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.c-header__connect-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-header__connect-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.c-header__connect-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.c-header__arrow {
  color: #22d3ee;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.c-header__connect-btn:hover .c-header__arrow {
  transform: translateX(4px);
}

.c-header__logo {
  position: relative;
  z-index: 3;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.c-header__logo img {
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.c-header__logo h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(34, 211, 238, 0.3);
}

/* Navegação (design antigo) */
.c-nav {
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.95) 0%, rgba(14, 21, 48, 0.98) 100%);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  backdrop-filter: blur(10px);
}

.c-nav__menu-btn {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.c-nav__menu-btn:hover {
  opacity: 1;
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.5);
}

.c-nav__link {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.c-nav__link:hover {
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.1);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.c-nav__icon {
  color: #22d3ee;
  font-size: 20px;
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}

/* Footer (design antigo) */
.c-footer {
  position: relative;
  background: linear-gradient(180deg, #0c1220 0%, #0e1530 100%);
  border-top: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.c-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}

.c-link:hover {
  color: #22d3ee;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

.c-link--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.c-footer__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34,211,238,0), rgba(34,211,238,0.6), rgba(34,211,238,0));
}

.c-footer__payment-section {
  padding: 24px 0;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  margin: 16px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.payment-method:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-2px);
}

.c-footer__terms-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 8px;
  color: #22d3ee;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.c-footer__terms-link:hover {
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.5);
  color: #06b6d4;
  transform: translateY(-1px);
}

.c-footer__security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .c-footer__payment-section { padding: 16px 0; margin: 12px 0; }
  .payment-method { padding: 6px; }
  .c-footer__terms-link, .c-footer__security-badge { padding: 6px 12px; font-size: 13px; }
}


