/**
 * COMPONENTES DO BIO LINK PREMIUM (MÉTODO "COPY" v15 CREATOR EDITION)
 * Projeto: Isadora Marceano
 */

/* ═══════════════════════════════════════════════════════════════
   1. HERO DA MARCA (EDITORIAL FOTOGRÁFICO)
   ═══════════════════════════════════════════════════════════════ */
.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-top: 4px;
}

/* Avatar Circular com Anel de Glow Verde Linktree */
.avatar-frame {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.85;
  filter: drop-shadow(0 0 18px var(--accent-glow));
  animation: pulse-glow 3.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.70; }
  100% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 26px var(--accent-glow)); }
}

.avatar-inner {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0D0B10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(67, 230, 96, 0.45);
  box-shadow: 0 0 20px var(--accent-glow-subtle);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* Título Monumental & Tipografia Fluida (Sem quebra nem overflow) */
.brand-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.25rem, 5.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  margin-top: 4px;
  white-space: nowrap;
}

.brand-tagline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(0.52rem, 1.8vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-top: -2px;
  max-width: 100%;
}

/* Slogan Oficial em Aspas */
.brand-slogan {
  font-size: clamp(0.76rem, 2.2vw, 0.84rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.45;
  max-width: 100%;
  margin: 0 auto;
}

/* Location Tag com Pin */
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.location-tag svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

.location-sub {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.74rem;
}

/* Banner Showcase Panorâmico */
.showcase-banner {
  position: relative;
  width: 100%;
  height: 175px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-elevation);
  margin-top: 8px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.5s var(--ease-spring);
}

.showcase-banner:hover .showcase-img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 10, 0.25) 0%, rgba(10, 18, 12, 0.82) 75%, #08070A 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  gap: 6px;
  text-align: left;
}

.showcase-badge {
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--accent-gradient);
  color: #08070A;
  font-family: 'Archivo', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.showcase-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   2. CARDS DE AÇÃO (PEÇA CENTRAL DE CONVERSÃO)
   ═══════════════════════════════════════════════════════════════ */
.actions-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.action-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  background-image: 
    linear-gradient(180deg, rgba(16, 18, 17, 0.90) 0%, rgba(11, 13, 12, 0.95) 100%),
    linear-gradient(180deg, rgba(67, 230, 96, 0.35) 0%, rgba(67, 230, 96, 0.08) 45%, rgba(255, 255, 255, 0.02) 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.40), 0 16px 32px rgba(0, 0, 0, 0.50);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-image var(--transition-fast);
  overflow: hidden;
}

/* Shine Sweep Efeito 60fps */
.action-card::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: transform 0.65s ease;
  pointer-events: none;
  z-index: 1;
}

.action-card:hover::before {
  transform: skewX(-20deg) translateX(320%);
}

.action-card:hover {
  transform: translateY(-2px);
  background-image: 
    linear-gradient(180deg, rgba(20, 24, 21, 0.94) 0%, rgba(13, 16, 14, 0.97) 100%),
    linear-gradient(180deg, rgba(67, 230, 96, 0.55) 0%, rgba(210, 231, 34, 0.20) 50%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 20px 40px rgba(0, 0, 0, 0.60);
}

/* Card WhatsApp em Destaque Primário */
.action-card--featured {
  background-image: 
    linear-gradient(180deg, rgba(14, 24, 18, 0.92) 0%, rgba(10, 16, 12, 0.96) 100%),
    linear-gradient(180deg, rgba(67, 230, 96, 0.72) 0%, rgba(210, 231, 34, 0.32) 50%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.40), 0 18px 36px rgba(0, 0, 0, 0.55), 0 0 26px -2px rgba(67, 230, 96, 0.20);
}

.action-card--featured:hover {
  background-image: 
    linear-gradient(180deg, rgba(18, 30, 22, 0.95) 0%, rgba(12, 20, 15, 0.98) 100%),
    linear-gradient(180deg, rgba(67, 230, 96, 0.90) 0%, rgba(210, 231, 34, 0.50) 50%, rgba(67, 230, 96, 0.15) 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 24px 44px rgba(0, 0, 0, 0.65), 0 0 34px 0px rgba(67, 230, 96, 0.30);
}

/* Ícones de Ação (Gêmeos em proporção, caixa e alinhamento) */
.action-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.action-icon svg {
  width: 100%;
  height: 100%;
}

/* Monograma Fotto Especial */
.action-icon--fotto {
  background: linear-gradient(135deg, #121614 0%, #0D0B10 100%);
  border: 1px solid rgba(67, 230, 96, 0.35);
  box-shadow: inset 0 0 12px rgba(67, 230, 96, 0.12);
}

.fotto-monogram {
  font-family: 'Archivo', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
}

/* Textos e Hierarquia Interna dos Cards */
.action-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.action-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.action-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.action-subtext {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge AO VIVO (Pulsante) */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  color: #25D366;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #25D366; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Pill de Identificação */
.action-pill {
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.action-pill--accent {
  background: rgba(67, 230, 96, 0.15);
  border-color: rgba(67, 230, 96, 0.35);
  color: var(--accent-primary);
}

/* Seta Chevron Deslizante */
.action-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

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

/* ═══════════════════════════════════════════════════════════════
   2.1 BLOCO DE SERVIÇOS (O QUE VOCÊ PODE CONTRATAR — v15)
   ═══════════════════════════════════════════════════════════════ */
.services-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section-header {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.section-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(14, 15, 16, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-2px);
  background: rgba(18, 22, 19, 0.90);
  border-color: var(--border-accent-subtle);
}

.service-num-box {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(67, 230, 96, 0.12);
  border: 1px solid rgba(67, 230, 96, 0.30);
  color: var(--accent-primary);
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.service-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.service-card:hover .action-arrow {
  transform: translateX(4px);
  color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════
   3. MICRO-LINK DISCRETO
   ═══════════════════════════════════════════════════════════════ */
.micro-link-container {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.micro-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.micro-link:hover {
  color: var(--accent-primary);
  background: rgba(67, 230, 96, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
   4. TRUST GRID (3 MINI-CAIXAS COM DIFERENCIAIS)
   ═══════════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}

.trust-item {
  background: rgba(14, 15, 16, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

.trust-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   5. REDES SOCIAIS OFICIAIS (BLOCO MULTI-CONTAS)
   ═══════════════════════════════════════════════════════════════ */
.socials-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(14, 15, 16, 0.70);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent-subtle);
}

.social-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.social-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.social-handle {
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.social-sub {
  font-size: 0.70rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   8. RODAPÉ (EXATAMENTE 2 LINHAS — NADA A MAIS, NADA A MENOS)
   ═══════════════════════════════════════════════════════════════ */
.brand-footer {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-line-copyright {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-line-agency {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.agency-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* Área de toque WCAG AA */
  padding: 0 4px;
  transition: color var(--transition-fast);
}

.agency-link strong {
  font-weight: 800;
  color: var(--accent-primary);
  margin-left: 1px;
}

.agency-link:hover strong {
  color: var(--accent-secondary);
  text-shadow: 0 0 10px var(--accent-glow);
}
