/* ===================================================
   HLIZZYE STORE - LINK NA BIO PREMIUM THEME
   Palette: Teal/Petroleum (#2B6D76, #1A4950), Cyan (#00E5FF, #3DB7C6), Dark Glass (#0d191b)
=================================================== */

:root {
  --primary-teal: #2b6d76;
  --primary-teal-dark: #15393e;
  --primary-teal-light: #3d8a95;
  --accent-cyan: #22d3ee;
  --accent-cyan-glow: rgba(34, 211, 238, 0.4);
  
  --bg-dark: #080e10;
  --card-bg: rgba(14, 27, 30, 0.75);
  --card-border: rgba(43, 109, 118, 0.35);
  --card-hover-border: rgba(34, 211, 238, 0.6);
  
  --text-white: #ffffff;
  --text-dim: #cadfe2;
  --text-muted: #8ba2a6;
  
  --whatsapp-color: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);
  
  --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6), 0 0 20px rgba(43, 109, 118, 0.15);
  --shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(34, 211, 238, 0.3);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

/* Background Opaco com Visibilidade da Foto e Alta Legibilidade */
.bg-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -3;
  filter: brightness(0.65) saturate(1.1);
  transform: scale(1.03);
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 19, 0.78) 0%,
    rgba(8, 20, 24, 0.88) 40%,
    rgba(5, 12, 14, 0.94) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -2;
}

.bg-glow {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 109, 118, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Container Principal */
.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

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

/* Profile / Header */
.profile-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.avatar-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 16px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-teal), #0f272a);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--primary-teal-dark);
  display: block;
}

.avatar-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: var(--accent-cyan);
  color: #032127;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border: 2.5px solid var(--bg-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.profile-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.profile-tag {
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.badge-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(43, 109, 118, 0.25);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Links Section */
.links-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Botões Padrão de Ação */
.btn-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  overflow: hidden;
}

.btn-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-action:hover::before {
  left: 140%;
}

.btn-action:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-hover);
}

.btn-action:active {
  transform: translateY(0) scale(0.99);
}

.btn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.btn-action:hover .btn-icon {
  transform: scale(1.08) rotate(3deg);
}

.btn-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.btn-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-white);
  letter-spacing: 0.2px;
}

.btn-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-arrow {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-action:hover .btn-arrow {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

/* ===================================================
   DESTAQUE: BOTÃO DO SITE COM IMAGEM SOBREPOSTA
=================================================== */
.featured-site-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.site-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
  display: block;
}

.featured-site-card:hover .site-preview-img {
  transform: scale(1.03);
}

.site-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 26, 29, 0.05) 0%,
    rgba(10, 26, 29, 0.25) 60%,
    rgba(8, 20, 24, 0.85) 100%
  );
  pointer-events: none;
}

.delivery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14, 38, 42, 0.85);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Botão que sobrepõe suavemente a parte inferior da imagem */
.btn-site-overlap {
  margin-top: -14px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(32, 85, 92, 0.95), rgba(18, 50, 55, 0.95));
  border: 1.5px solid rgba(34, 211, 238, 0.6);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(34, 211, 238, 0.25);
  padding: 16px 20px;
}

.btn-site-overlap .btn-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary-teal));
  color: #051a1d;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
}

.btn-site-overlap .btn-title {
  color: #ffffff;
  font-size: 1.05rem;
}

.btn-site-overlap .btn-subtitle {
  color: var(--accent-cyan);
  font-weight: 500;
}

.btn-site-overlap .btn-arrow {
  color: var(--accent-cyan);
}

.btn-site-overlap:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #5eead4;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 30px rgba(34, 211, 238, 0.45);
}

/* Customização Específica: WhatsApp */
.btn-whatsapp {
  border-left: 4px solid var(--whatsapp-color);
}

.btn-whatsapp .btn-icon {
  color: var(--whatsapp-color);
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.online-tag {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.7), 0 0 20px var(--whatsapp-glow);
}

/* Customização Específica: Instagram */
.btn-instagram .btn-icon,
.btn-instagram-reserva .btn-icon {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.3);
  color: #f43f5e;
}

.btn-instagram:hover,
.btn-instagram-reserva:hover {
  border-color: rgba(244, 63, 94, 0.5);
  box-shadow: 0 12px 30px -5px rgba(0,0,0,0.7), 0 0 20px rgba(244, 63, 94, 0.25);
}

/* ===================================================
   SEÇÃO LOCALIZAÇÃO & LOJA FÍSICA
=================================================== */
.location-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  transition: var(--transition);
}

.location-container:hover {
  border-color: var(--card-hover-border);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.loc-icon-bubble {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-teal), #103237);
  border: 1.5px solid rgba(34, 211, 238, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.loc-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.loc-header-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.loc-header-text p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.35;
}

.loc-header-text p i {
  color: var(--accent-cyan);
  margin-right: 3px;
}

.map-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(43, 109, 118, 0.4);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
  background-color: #122124;
}

.map-wrapper iframe {
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

/* Botão Visite Nossa Loja Física */
.btn-location-action {
  background: linear-gradient(135deg, var(--primary-teal), #19464e);
  border: 1px solid rgba(34, 211, 238, 0.45);
  padding: 14px 18px;
}

.btn-location-action .btn-icon {
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent-cyan);
  border-color: rgba(34, 211, 238, 0.3);
}

.btn-location-action:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.8), 0 0 25px var(--accent-cyan-glow);
}

/* Footer */
.footer {
  margin-top: 32px;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  body {
    padding: 18px 12px 30px;
  }
  
  .avatar-wrapper {
    width: 118px;
    height: 118px;
  }

  .profile-name {
    font-size: 1.45rem;
  }
  
  .site-image-wrapper {
    height: 180px;
  }
  
  .btn-site-overlap {
    margin-top: -12px;
  }
  
  .btn-action {
    padding: 12px 15px;
  }
  
  .btn-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.15rem;
  }
  
  .btn-title {
    font-size: 0.95rem;
  }
  
  .btn-subtitle {
    font-size: 0.75rem;
  }
}
