@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #050507;
  --bg-card: rgba(18, 18, 22, 0.82);
  --bg-card-hover: rgba(28, 28, 34, 0.95);
  --text-primary: #ffffff;
  --text-secondary: #e4e4e7;
  --text-muted: #a1a1aa;
  --accent-red: #e50914;
  --accent-red-hover: #ff1f2d;
  --accent-red-glow: rgba(229, 9, 20, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-white: rgba(255, 255, 255, 0.7);
  --border-hover: rgba(255, 255, 255, 0.35);
  --radius-lg: 14px;
  --radius-banner: 16px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px 60px 16px;
  position: relative;
  overflow-x: hidden;
}

/* Background com imagem da loja mais visível */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('bg_loja.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.32;
  filter: contrast(1.15) brightness(0.85);
  pointer-events: none;
  z-index: 0;
}

.bg-radial-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(5,5,7,0.7) 0%, rgba(5,5,7,0.85) 60%, #050507 100%);
  pointer-events: none;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Header & Profile */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  animation: fadeInDown 0.6s ease-out;
}

.avatar-wrapper {
  position: relative;
  margin-bottom: 14px;
}

/* Borda da logo BRANCA */
.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  background-color: #000000;
  display: block;
}

.avatar-wrapper:hover .avatar {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.brand-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 320px;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* Social Icons (Preto e Branco) */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 22, 28, 0.85);
  color: #ffffff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.social-icon-btn:hover svg {
  fill: #000000;
}

/* Banner Card com Botão */
.banner-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.7s ease-out;
  margin-bottom: 4px;
}

.banner-card {
  width: 100%;
  border-radius: var(--radius-banner);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-subtle);
  background: #121216;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.banner-card:hover .banner-img {
  transform: scale(1.015);
}

.banner-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 7, 0.9) 100%);
  pointer-events: none;
}

/* Botão Único com o Vermelho: 100% da largura, encaixando lateralmente na base */
.banner-overlay-btn {
  width: 100%;
  margin-top: -38px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e50914 0%, #b80710 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.45), 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.banner-overlay-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff1a26 0%, #cc0812 100%);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.65);
}

.banner-btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-btn-texts {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.banner-btn-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.banner-btn-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2px;
}

.banner-btn-subtitle strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Logo pequena no botão do site */
.btn-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ffffff;
  background: #000000;
  flex-shrink: 0;
}

.banner-overlay-btn .link-arrow {
  color: #ffffff;
  transition: var(--transition);
}

.banner-overlay-btn:hover .link-arrow {
  transform: translateX(4px);
}

/* Links Section (Preto e Branco) */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: fadeInUp 0.8s ease-out;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
  position: relative;
}

.link-content-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.link-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
  transition: var(--transition);
}

/* Ícones Brancos em caixa discreta */
.link-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: var(--transition);
  flex-shrink: 0;
}

.link-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.link-arrow {
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

/* Hover Preto & Branco elegante */
.link-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(255, 255, 255, 0.08);
}

.link-card:hover .link-icon-box {
  background: #ffffff;
  color: #000000;
}

.link-card:hover .link-subtitle {
  color: var(--text-secondary);
}

.link-card:hover .link-arrow {
  color: #ffffff;
  transform: translateX(4px);
}

/* Footer */
.footer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 28px 14px 44px 14px;
  }

  .banner-overlay-btn {
    padding: 13px 15px;
    margin-top: -34px;
  }

  .banner-btn-title {
    font-size: 0.92rem;
  }

  .banner-btn-subtitle {
    font-size: 0.74rem;
  }
  
  .link-card {
    padding: 13px 16px;
  }
  
  .link-title {
    font-size: 0.91rem;
  }
}
