/* ════════════════════════════════════════════════════════════════
   Link-in-bio renderer styles. Shared between the public site and
   the admin preview. All rules are scoped under `.linkbe-page` so
   the tokens and utility class names do not leak into the admin
   chrome (which has its own design system).
   ════════════════════════════════════════════════════════════════ */

/* ── THEME TOKENS ── */
:root {
  --color-bg: #ffffff;
  --color-fg: #0a0a0a;
  --color-muted: #f5f5f5;
  --color-primary: #0EA5E9;
  --color-accent: #F472B6;
  --color-border: rgba(0, 0, 0, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
}
:root[data-theme='dark'] {
  --color-bg: #0a0a0a;
  --color-fg: #fafafa;
  --color-muted: #1a1a1a;
  --color-border: rgba(255, 255, 255, 0.08);
}

body, .linkbe-page {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

.linkbe-page {
  --black: #111111;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #ebebeb;
  --gray-300: #dddddd;
  --gray-400: #aaaaaa;
  --gray-600: #666666;
  --pink: #cc3366;
  --pink-bg: #fff0f5;
  --pink-border: #f0b8cc;
  --pink-text: #aa2255;
  --gold: #b8860b;
  --gold-bg: #fffbf0;
  --gold-border: #e8d080;
  --gold-text: #8a6a00;
  --wa: #25d366;
  --wa-bg: #f0fdf4;
  --wa-border: #b8e0c8;
  --wa-text: #1a6a3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);

  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  /* Matches builder Canvas.vue's .builder-phone-screen inner width
     (412px phone shell − 8px padding × 2 = 396px) so the preview and
     the published page render at exactly the same width. */
  max-width: 396px;
  margin: 0 auto;
  padding-bottom: 90px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.linkbe-page *,
.linkbe-page *::before,
.linkbe-page *::after { box-sizing: border-box; }

.linkbe-page h1, .linkbe-page h2, .linkbe-page h3,
.linkbe-page p, .linkbe-page button, .linkbe-page a,
.linkbe-page input, .linkbe-page form {
  margin: 0;
  padding: 0;
}

.linkbe-page button { background: none; border: none; font: inherit; color: inherit; }

/* ── HERO ── */
.linkbe-page .hero {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.linkbe-page .hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.linkbe-page .hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2a2520 0%, #1a1612 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
}
.linkbe-page .hero-placeholder-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.linkbe-page .hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 68%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.42) 35%,
    rgba(0,0,0,0.10) 70%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events: none;
}
.linkbe-page .hero-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 20px 22px;
}
.linkbe-page .hero-nome {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.30), 0 0 2px rgba(0,0,0,0.20);
}
.linkbe-page .hero-bio {
  font-size: 12px;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  margin-top: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* ── Hero without photo: compact, no fixed black region ── */
.linkbe-page .hero--no-photo {
  height: auto;
  background: transparent;
  overflow: visible;
}
.linkbe-page .hero--no-photo .hero-info {
  position: static;
  padding: 32px 20px 16px;
}
.linkbe-page .hero--no-photo .hero-nome {
  color: var(--ink, #15120d);
  text-shadow: none;
}
.linkbe-page .hero--no-photo .hero-bio {
  color: rgba(21, 18, 13, 0.65);
  text-shadow: none;
}
.linkbe-page .hero--no-photo .tag-pill {
  color: rgba(21, 18, 13, 0.85);
  background: rgba(21, 18, 13, 0.06);
  border-color: rgba(21, 18, 13, 0.12);
}

/* ── TAGS ── */
.linkbe-page .tags-row { display: flex; flex-wrap: wrap; gap: 6px; }
.linkbe-page .tag-pill {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.14);
  border: 0.5px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 4px 11px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.01em;
}

/* ── SEÇÕES ── */
.linkbe-page .section { padding: 20px 20px 0; }
.linkbe-page .section-label {
  font-size: 9px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-weight: 500;
}
.linkbe-page .divider { height: 0.5px; background: var(--gray-200); margin: 20px 20px 0; }

/* ── REDES SOCIAIS ── */
.linkbe-page .redes-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.linkbe-page .rede-btn {
  width: 44px; height: 44px;
  background: var(--gray-50);
  border: 0.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.linkbe-page .rede-btn:hover { background: var(--gray-100); border-color: #ccc; transform: scale(1.05); }
.linkbe-page .rede-btn svg { width: 18px; height: 18px; display: block; }

/* external site link */
.linkbe-page .site55305-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.linkbe-page .site55305-link:hover { opacity: 0.72; }
.linkbe-page .site55305-favicon {
  width: 18px; height: 18px;
  border-radius: 4px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.linkbe-page .site55305-url {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── WA INLINE ── */
.linkbe-page .wa-inline-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa-bg);
  border: 0.5px solid var(--wa-border);
  border-radius: var(--r-md);
  padding: 14px;
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.15s;
}
.linkbe-page .wa-inline-card:hover { opacity: 0.88; }
.linkbe-page .wa-icon-circle {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
}
.linkbe-page .wa-inline-text { flex: 1; }
.linkbe-page .wa-inline-text strong { font-size: 13px; font-weight: 500; color: var(--black); display: block; margin-bottom: 2px; }
.linkbe-page .wa-inline-text span { font-size: 11px; color: var(--gray-600); }
.linkbe-page .wa-inline-cta { background: var(--wa); color: white; font-size: 11px; font-weight: 500; padding: 6px 12px; border-radius: 20px; white-space: nowrap; }

/* ── PANGEA / LINK BOX ── */
.linkbe-page .pangea-box { background: var(--pink-bg); border: 0.5px solid var(--pink-border); border-radius: var(--r-md); padding: 16px; }
.linkbe-page .pangea-label { font-size: 10px; font-weight: 500; color: var(--pink-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.linkbe-page .pangea-text { font-size: 13px; color: #444; line-height: 1.5; margin-bottom: 12px; }

/* ── BOTÕES ── */
.linkbe-page .btn {
  display: block; width: 100%; padding: 12px;
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  text-align: center; text-decoration: none; cursor: pointer;
  border: none; transition: opacity 0.15s, transform 0.1s;
}
.linkbe-page .btn:hover { opacity: 0.88; }
.linkbe-page .btn:active { transform: scale(0.98); }
.linkbe-page .btn-solid   { background: var(--black); color: var(--white); }
.linkbe-page .btn-pink    { background: var(--pink);  color: var(--white); }
.linkbe-page .btn-gold    { background: var(--gold);  color: var(--white); }
.linkbe-page .btn-outline { background: var(--white); color: var(--black); border: 0.5px solid #222; }

/* ── LIVROS CAROUSEL ── */
.linkbe-page .livros-carousel-wrap {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
  overflow: hidden;
}
.linkbe-page .livros-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.linkbe-page .livros-carousel::-webkit-scrollbar { display: none; }

.linkbe-page .livro-slide {
  min-width: calc(100% - 32px);
  scroll-snap-align: center;
  background: var(--gray-50);
  border: 0.5px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.linkbe-page .livros-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 14px;
}
.linkbe-page .livro-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.linkbe-page .livro-dot.active {
  background: var(--black);
  width: 18px;
  border-radius: 3px;
}

/* ── LIVROS ── */
.linkbe-page .book-cover-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 0;
}
.linkbe-page .book-cover {
  width: 130px;
  height: 190px;
  border-radius: 3px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.linkbe-page .book-cover:hover { transform: scale(1.03); box-shadow: 4px 8px 20px rgba(0,0,0,0.22); }
.linkbe-page .book-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.linkbe-page .book-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ddd, #eee);
  color: var(--gray-400);
  font-size: 12px;
  font-family: var(--font-display);
  text-align: center;
  padding: 8px;
}

.linkbe-page .book-info { padding: 14px; flex: 1; }
.linkbe-page .book-titulo { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.linkbe-page .book-autografado { font-size: 10px; color: var(--gray-400); margin-bottom: 10px; display: flex; align-items: center; gap: 4px; }

.linkbe-page .book-resumo-toggle {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0;
  font-family: var(--font-body);
  font-size: 11px; color: var(--gray-600);
  cursor: pointer; margin-bottom: 6px;
  transition: color 0.15s;
}
.linkbe-page .book-resumo-toggle:hover { color: var(--black); }
.linkbe-page .book-resumo-toggle svg { transition: transform 0.25s; }
.linkbe-page .book-resumo-toggle.open svg { transform: rotate(180deg); }

.linkbe-page .book-resumo-texto {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.65;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
  opacity: 0;
  margin-bottom: 0;
}
.linkbe-page .book-resumo-texto.open { max-height: 300px; opacity: 1; margin-bottom: 10px; }

.linkbe-page .book-amazon { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.linkbe-page .book-amazon-badge {
  font-size: 11px; font-weight: 500;
  color: #b07010;
  background: #fffbf0;
  border: 0.5px solid #e8d080;
  border-radius: 20px;
  padding: 3px 9px;
}
.linkbe-page .book-amazon-label { font-size: 10px; color: var(--gray-400); }

.linkbe-page .upsell-box { background: var(--gold-bg); border: 0.5px solid var(--gold-border); border-radius: var(--r-md); padding: 16px; margin-bottom: 10px; }
.linkbe-page .upsell-badge { display: inline-block; font-size: 9px; font-weight: 500; color: var(--gold-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.linkbe-page .upsell-titulo { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.linkbe-page .upsell-desc { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.5; }
.linkbe-page .upsell-img-wrap { margin-bottom: 12px; }
.linkbe-page .upsell-img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: var(--r-sm);
  display: block;
}

/* ── INFOPRODUTOS ── */
.linkbe-page .infoprod-card { background: var(--gray-50); border: 0.5px solid var(--gray-200); border-radius: var(--r-md); overflow: hidden; margin-bottom: 14px; }
.linkbe-page .infoprod-video { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.linkbe-page .infoprod-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.linkbe-page .infoprod-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.linkbe-page .infoprod-thumb-wrap:hover .infoprod-thumb-img { transform: scale(1.03); }
.linkbe-page .infoprod-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.linkbe-page .infoprod-thumb-wrap:hover .infoprod-thumb-overlay { background: rgba(0,0,0,0.18); }
.linkbe-page .play-btn-large {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, background 0.2s;
}
.linkbe-page .infoprod-thumb-wrap:hover .play-btn-large { transform: scale(1.08); background: #fff; }
.linkbe-page .play-btn-large-triangle {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid var(--black);
  margin-left: 4px;
}
.linkbe-page .infoprod-video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.linkbe-page .play-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.10);
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
}
.linkbe-page .play-triangle {
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #555;
  margin-left: 3px;
}
.linkbe-page .infoprod-body { padding: 14px; }
.linkbe-page .infoprod-titulo { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 5px; }
.linkbe-page .infoprod-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; margin-bottom: 12px; }

/* ── NEWSLETTER ── */
.linkbe-page .nl-post-card {
  background: var(--white);
  border: 0.5px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.linkbe-page .nl-post-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.linkbe-page .nl-post-body { padding: 12px 14px; }
.linkbe-page .nl-post-source { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.linkbe-page .nl-post-source-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
}
.linkbe-page .nl-post-source-label { font-size: 11px; font-weight: 500; color: var(--gray-600); }
.linkbe-page .nl-post-titulo { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 5px; line-height: 1.4; }
.linkbe-page .nl-post-texto {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  max-height: 56px;
  overflow: hidden;
}
.linkbe-page .nl-post-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}
.linkbe-page .nl-post-cta:hover { text-decoration: underline; }

.linkbe-page .newsletter-card { background: var(--gray-50); border: 0.5px solid var(--gray-200); border-radius: var(--r-md); padding: 16px; }
.linkbe-page .newsletter-titulo { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.linkbe-page .newsletter-desc { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; line-height: 1.5; }
.linkbe-page .nl-input {
  width: 100%; padding: 11px 14px;
  background: var(--white);
  border: 0.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--black);
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.15s;
}
.linkbe-page .nl-input:focus { border-color: #aaa; }
.linkbe-page .nl-input::placeholder { color: var(--gray-400); }
.linkbe-page .nl-feedback {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
  min-height: 18px;
  color: var(--wa-text);
}

/* ── WA FLUTUANTE ── */
.linkbe-page .wa-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
  text-decoration: none;
}
.linkbe-page .wa-float-label {
  background: var(--white);
  border: 0.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--black);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: linkbe-fadeInRight 0.4s ease 0.6s both;
}
.linkbe-page .wa-float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  animation: linkbe-fadeInUp 0.4s ease 0.4s both;
}
.linkbe-page .wa-float-btn:hover { transform: scale(1.08); }

@keyframes linkbe-fadeInUp    { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes linkbe-fadeInRight { from { opacity:0; transform:translateX(12px); } to { opacity:1; transform:translateX(0); } }

/* ── EBOOK BANNER ── */
.linkbe-page .ebook-banner {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 0.5px solid var(--gray-200);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.linkbe-page .ebook-banner:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
.linkbe-page .ebook-banner-img {
  width: 100%; aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}
.linkbe-page .ebook-banner-img-ph {
  width: 100%; aspect-ratio: 16/7;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
}
.linkbe-page .ebook-banner-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.linkbe-page .ebook-banner-tag {
  display: inline-block;
  background: #e8a045;
  color: #1a0a00;
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 8px; align-self: flex-start;
}
.linkbe-page .ebook-banner-titulo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: #fff; line-height: 1.3;
  margin-bottom: 4px;
}
.linkbe-page .ebook-banner-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 10px;
}
.linkbe-page .ebook-banner-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #111;
  font-size: 12px; font-weight: 500;
  padding: 8px 16px; border-radius: 6px;
  align-self: flex-start;
}

/* ── AÇÕES DE DESTAQUE ── */
.linkbe-page .acoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.linkbe-page .acao-card {
  background: var(--gray-50);
  border: 0.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 14px 12px;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.linkbe-page .acao-card:hover { background: var(--gray-100); border-color: #ccc; }
.linkbe-page .acao-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.linkbe-page .acao-icon--indigo { background: #f0f0ff; color: #5555cc; }
.linkbe-page .acao-icon--gold { background: #fff8ee; color: #b07010; }
.linkbe-page .acao-icon--forest { background: #eef4ee; color: #26543a; }
.linkbe-page .acao-icon--ember { background: #ffeeee; color: #8a1f0f; }
.linkbe-page .acao-titulo {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}
.linkbe-page .acao-desc {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
}
.linkbe-page .acao-cta {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

/* ── RESPONSIVO ── */
@media (max-width: 360px) {
  .linkbe-page .hero-nome { font-size: 24px; }
  .linkbe-page .acoes-grid { grid-template-columns: 1fr; }
  .linkbe-page .redes-grid { gap: 6px; }
  .linkbe-page .rede-btn { width: 40px; height: 40px; }
}

/* theme overrides */
:root {
  --color-primary: #0EA5E9;
  --color-accent: #F472B6;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
:root[data-theme='dark'] {
  --color-primary: #0EA5E9;
  --color-accent: #F472B6;
}
