/* =========================================================
   ZOOTECNIA EQUINA 2.0
   style.css — base visual profissional SPA
   ========================================================= */


/* =========================
   RESET E BASE
   ========================= */

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top, rgba(30, 144, 255, 0.08), transparent 35%),
    linear-gradient(180deg, #0a0f1c 0%, #0f1728 45%, #0c1322 100%);
  color: #eef3ff;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:root {
  --bg-main: #0b1220;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-strong: rgba(255, 255, 255, 0.08);

  --text-main: #eef3ff;
  --text-soft: #b8c4dd;
  --text-muted: #8c99b2;

  --accent: #39c6ff;
  --accent-2: #66e0ff;
  --accent-warm: #e0b15b;

  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(57, 198, 255, 0.32);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 14px 32px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 18px rgba(57, 198, 255, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --menu-height: 78px;
  --container: 1240px;
  --transition: 0.28s ease;
}

/* =========================
   BARRA DE ROLAGEM INTERNA
   ========================= */

#viewport::-webkit-scrollbar {
  width: 10px;
}

#viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

#viewport::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(57, 198, 255, 0.7), rgba(224, 177, 91, 0.55));
  border-radius: 999px;
}

#viewport {
  position: fixed;
  top: var(--menu-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 34px 28px 42px;
}

/* =========================
   MENU PRINCIPAL
   ========================= */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--menu-height);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(7, 12, 24, 0.94) 0%,
    rgba(10, 16, 31, 0.90) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0 18px;
  width: min(100%, var(--container));
  flex-wrap: wrap;
}

.menu li {
  margin: 0;
  padding: 0;
}

.menu ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.menu ul li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 10px rgba(57, 198, 255, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 14px rgba(57, 198, 255, 0.10);
  transform: translateY(-1px);
}

.menu ul li a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  opacity: 0.95;
}

.menu ul li a:hover::after,
.menu ul li a.active::after,
.menu ul li a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu ul li a.active,
.menu ul li a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, #0a1f3d, #1f4e79);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(0, 140, 255, 0.18);
}

/* =========================
   CONTAINER GERAL
   ========================= */

.page,
.section,
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page {
  animation: fadeUp 0.35s ease;
}

.section {
  margin-bottom: 30px;
}

.section + .section {
  margin-top: 26px;
}

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

/* =========================
   TIPOGRAFIA
   ========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 750;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 1rem;
}

.lead,
.subtitle,
.text-lead {
  font-size: 1.08rem;
  color: #d8e4fb;
}

.small,
.text-small {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.highlight {
  color: var(--accent-2);
}

.gold {
  color: var(--accent-warm);
}

/* =========================================================
   HERO GLOBAL — PADRÃO PREMIUM
   ========================================================= */

.hero-global {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  max-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-global img,
.hero-global::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 10, 20, 0.75),
    rgba(5, 10, 20, 0.4),
    rgba(5, 10, 20, 0.2)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
}

   /* =========================
   HERO / CAPA
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  min-height: 420px;
  padding: 42px 42px 42px 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(57, 198, 255, 0.10), rgba(224, 177, 91, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* glow decorativo inferior direito */
.hero::before {
  content: "";
  position: absolute;
  inset: auto -100px -120px auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 236, 237, 0.18), transparent 65%);
  pointer-events: none;
}

/* glow decorativo superior esquerdo */
.hero::after {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(224, 177, 91, 0.12), transparent 65%);
  pointer-events: none;
}

/* bloco de conteúdo textual */
.hero-content,
.hero-text {
  position: relative;
  z-index: 2;

  /* ajuda a centralizar melhor o card de texto dentro da coluna */
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* baixa levemente todo o conjunto textual */
  transform: translateY(12px);
}

/* título principal */
.hero h1 {
  margin-top: 38px;     /* baixa o título ~3cm visualmente */
  margin-bottom: 14px;
  line-height: 1.1;
}

/* texto descritivo */
.hero p {
  max-width: 680px;
  margin-top: 18px;     /* baixa o texto um pouco */
}

/* grupo de botões/ações */
.hero-actions,
.cta-group,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 88px;   /* desce mais os botões */
  position: relative;
  top: 62px;          /* empurrão extra para baixo */
}

/* área da imagem / cavalo */
.hero-media img,
.hero-image img,
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  object-position: center 35px; /* baixa o cavalo dentro da moldura */
}

/* =========================
   BOTÕES
   ========================= */

.btn,
.button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover,
.button:hover,
a.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.button-primary {
  color: #07111e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(57, 198, 255, 0.18);
}

.btn-primary:hover,
.button-primary:hover {
  box-shadow:
    0 14px 32px rgba(57, 198, 255, 0.22),
    0 0 14px rgba(57, 198, 255, 0.18);
}

.btn-secondary,
.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn-secondary:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
}

.btn-outline,
.button-outline {
  color: var(--accent-2);
  background: transparent;
  border-color: rgba(57, 198, 255, 0.32);
}

.btn-outline:hover,
.button-outline:hover {
  background: rgba(57, 198, 255, 0.08);
  box-shadow: 0 0 14px rgba(57, 198, 255, 0.14);
}

/* =========================
   CARDS
   ========================= */

.cards-grid,
.grid-cards,
.services-grid,
.blog-grid,
.gallery-grid,
.stats-grid {
  display: grid;
  gap: 28px;
}

.cards-grid,
.grid-cards,
.services-grid,
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card,
.service-card,
.blog-card,
.info-card,
.client-card,
.gallery-card,
.stat-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-soft);
}

.card::before,
.service-card::before,
.blog-card::before,
.info-card::before,
.client-card::before,
.gallery-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(57, 198, 255, 0.09), transparent 65%);
  pointer-events: none;
}

.card:hover,
.service-card:hover,
.blog-card:hover,
.info-card:hover,
.client-card:hover,
.gallery-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.30),
    0 0 18px rgba(57, 198, 255, 0.12);
}

.card h3,
.service-card h3,
.blog-card h3,
.info-card h3,
.client-card h3,
.gallery-card h3,
.stat-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
}

.card:hover h3,
.service-card:hover h3,
.blog-card:hover h3,
.info-card:hover h3,
.client-card:hover h3,
.gallery-card:hover h3,
.stat-card:hover h3 {
  color: var(--accent-2);
}

.card p:last-child,
.service-card p:last-child,
.blog-card p:last-child,
.info-card p:last-child,
.client-card p:last-child,
.gallery-card p:last-child,
.stat-card p:last-child {
  margin-bottom: 0;
}

/* Tipografia dos textos dentro dos cards */

.card p,
.service-card p,
.blog-card p,
.info-card p,
.client-card p,
.gallery-card p,
.stat-card p {

  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text-soft);

}

/* =========================
   CARD — REFINO PREMIUM (NÍVEL 2.0)
   ========================= */

/* linha superior de identidade */
.card::after,
.service-card::after,
.blog-card::after,
.info-card::after,
.client-card::after,
.gallery-card::after,
.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    rgba(255,255,255,0)
  );
  opacity: 0.85;
}

/* mini label (se existir no HTML) */
.card-mini-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent-2);
  opacity: 0.9;
}

/* hover mais refinado (menos agressivo que o atual) */
.card:hover,
.service-card:hover,
.blog-card:hover,
.info-card:hover,
.client-card:hover,
.gallery-card:hover,
.stat-card:hover {
  transform: translateY(-4px); /* antes -6px */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(57, 198, 255, 0.14);
}

/* =========================
   BLOCOS / PAINÉIS
   ========================= */

.panel,
.box,
.content-box,
.glass,
.feature-box,
.article-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.panel-header,
.section-header,
.block-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.section-title {
  margin-bottom: 6px;
}

/* =========================
   REFINO PREMIUM DE TÍTULOS
   ========================= */

.section-centered .section-title,
.section-intro-centered .section-title {
  margin-top: 22px;
  margin-bottom: 26px;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-2);
  font-weight: 700;
}

/* =========================
   INTRO / SEÇÕES CENTRALIZADAS
   ========================= */

.section-intro-centered {
  max-width: 900px;
  margin: 0 auto 34px auto;
  text-align: center;
  padding: 8px 12px 2px;
}

.section-intro-centered .section-kicker {
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.section-intro-centered .section-title {
  margin-bottom: 18px;
  text-align: center;
}

.section-intro-centered p {
  max-width: 760px;
  margin: 0 auto 14px auto;
  text-align: center;
}

.section-centered > .section-kicker,
.section-centered > .section-title,
.section-centered > p {
  text-align: center;
}

.section-centered > .section-kicker {
  display: block;
  margin-bottom: 12px;
}

.section-centered > .section-title {
  margin-bottom: 18px;
}

/* =========================
   ESPAÇAMENTO PREMIUM ENTRE SEÇÕES
   ========================= */

.section {
  margin-bottom: 58px; /* antes 48 → agora mais respiro */
}

.section + .section {
  margin-top: 52px; /* antes 42 → agora mais fluido */
}

.cards-grid {
  margin-bottom: 28px; /* separa melhor dos títulos abaixo */
}

/* =========================
   ARTIGOS / BLOG
   ========================= */

.article,
.post,
.blog-post,
.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.article-header,
.post-header {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-meta,
.post-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.article h2,
.post h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.article h3,
.post h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.article p,
.post p,
.article li,
.post li {
  color: #d6e1f5;
  font-size: 1rem;
}

.article ul,
.article ol,
.post ul,
.post ol {
  padding-left: 22px;
}

.article blockquote,
.post blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(57, 198, 255, 0.06);
  border-radius: 0 12px 12px 0;
  color: #e6f6ff;
}

.article table,
.post table,
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.article th,
.article td,
.post th,
.post td,
.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article th,
.post th,
.table th {
  color: #ffffff;
  background: rgba(57, 198, 255, 0.10);
}

.references,
.ref-list {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.references li,
.ref-list li {
  color: var(--text-soft);
  margin-bottom: 10px;
  word-break: break-word;
}

/* =========================
   LISTAS / DESTAQUES
   ========================= */

.feature-list,
.check-list,
.icon-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li,
.check-list li,
.icon-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.feature-list li::before,
.check-list li::before,
.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-size: 1.2rem;
  line-height: 1;
}

/* =========================
   FORMULÁRIOS
   ========================= */

form,
.form-box,
.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #e9f2ff;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #97a7c5;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(57, 198, 255, 0.40);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(57, 198, 255, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================
   GALERIA / MÍDIA
   ========================= */

.gallery-item,
.media-card,
.photo-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.gallery-item:hover,
.media-card:hover,
.photo-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.28),
    0 0 18px rgba(57, 198, 255, 0.12);
}

.gallery-item img,
.media-card img,
.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-caption,
.media-caption {
  padding: 14px 16px;
  color: var(--text-soft);
}

/* =========================
   SOBRE / PERFIL
   ========================= */

.about-grid,
.profile-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.profile-badge,
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.20);
  font-weight: 600;
  font-size: 0.92rem;
}

.avatar-box,
.about-image,
.profile-image {
  min-height: 280px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
}

/* =========================
   CLIENTES / DEPOIMENTOS
   ========================= */

.testimonial,
.depoimento,
.quote-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.testimonial p,
.depoimento p,
.quote-card p {
  font-style: italic;
  color: #deebff;
}

.testimonial strong,
.depoimento strong,
.quote-card strong {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
}

/* =========================
   KPIs / NÚMEROS
   ========================= */

.stat-number,
.metric-value,
.kpi-value {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label,
.metric-label,
.kpi-label {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* =========================
   SEPARADORES
   ========================= */

.divider,
.hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(57, 198, 255, 0.35),
    transparent
  );
  margin: 28px 0;
  border: none;
}

/* =========================
   RODAPÉ PREMIUM
   ========================= */

.site-footer {
  width: 100%;
  padding: 22px 0 26px;
  text-align: center;

  background:
    linear-gradient(180deg, #0b1220 0%, #0a0f1c 100%);

  border-top: 1px solid rgba(57, 198, 255, 0.15);

  box-shadow:
    0 -8px 24px rgba(0, 0, 0, 0.25),
    0 -2px 8px rgba(57, 198, 255, 0.08);

  position: relative;
  z-index: 10;
}

.site-footer .footer-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(230, 240, 255, 0.65);
  letter-spacing: 0.4px;
}

/* =========================
   HELPERS
   ========================= */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-0 { padding: 0; }
.hidden { display: none !important; }

/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 1080px) {
  .hero,
  .about-grid,
  .profile-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --menu-height: 96px;
  }

  #viewport {
    padding: 24px 18px 34px;
  }

  .menu {
    height: var(--menu-height);
    padding: 8px 0;
  }

  .menu ul {
    gap: 8px;
    padding: 0 10px;
  }

  .menu ul li a {
    font-size: 0.92rem;
    padding: 9px 14px;
    min-height: 40px;
  }

  .hero,
  .panel,
  .box,
  .content-box,
  .article,
  .post,
  .blog-post,
  .article-page {
    padding: 24px;
  }

  .gallery-item img,
  .media-card img,
  .photo-card img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  :root {
    --menu-height: 118px;
  }

  #viewport {
    padding: 18px 14px 28px;
  }

  .menu ul {
    justify-content: center;
  }

  .hero,
  .panel,
  .box,
  .content-box,
  .card,
  .service-card,
  .blog-card,
  .info-card,
  .client-card,
  .gallery-card,
  .stat-card,
  .article,
  .post,
  .blog-post,
  .article-page {
    padding: 20px;
    border-radius: 18px;
  }

  .hero-actions,
  .cta-group,
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .button,
  a.btn {
    width: 100%;
  }

  .article table,
  .post table,
  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .gallery-item img,
  .media-card img,
  .photo-card img {
    height: 200px;
  }
}

/* =========================
   BASE GLOBAL RESPONSIVA
   ========================= */

img {
  max-width: 100%;
  height: auto;
}

/* Cards mais consistentes no site inteiro */
.card,
.service-card,
.blog-card,
.info-card,
.client-card,
.gallery-card,
.stat-card,
.esp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body,
.service-card-body,
.blog-card-body,
.info-card-body,
.client-card-body,
.gallery-card-body,
.stat-card-body,
.esp-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Grids com alinhamento estável */
.cards-grid,
.grid-cards,
.services-grid,
.blog-grid,
.gallery-grid,
.stats-grid,
.esp-grid {
  align-items: stretch;
}

/* Ajuste fino para notebook/tablet grande */
@media (max-width: 1080px) {
  .cards-grid,
  .grid-cards,
  .services-grid,
  .blog-grid,
  .gallery-grid,
  .stats-grid,
  .esp-grid {
    gap: 20px;
  }
}

/* Tablet */
@media (max-width: 860px) {
  .container,
  .page,
  .section {
    width: 100%;
  }

  .cards-grid,
  .grid-cards,
  .services-grid,
  .blog-grid,
  .esp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 560px) {
  .cards-grid,
  .grid-cards,
  .services-grid,
  .blog-grid,
  .gallery-grid,
  .stats-grid,
  .esp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-actions,
  .cta-group,
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .button,
  a.btn {
    width: 100%;
  }
}

/* =========================================================
   HERO GLOBAL — PADRÃO PREMIUM
   ========================================================= */

.hero-global {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  max-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-global img,
.hero-global::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 10, 20, 0.75),
    rgba(5, 10, 20, 0.4),
    rgba(5, 10, 20, 0.2)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
}

/* =========================================================
   HERO HOME INICIO — ZOOTECNIA EQUINA
   ========================================================= */

.hero-home {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  border-radius: 0;
  overflow: hidden;

  background-image: url("../imagens/fundo-topo.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  border: none;
  box-shadow: var(--shadow-card);
}

.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 14, 24, 0.88) 0%,
    rgba(7, 14, 24, 0.62) 45%,
    rgba(7, 14, 24, 0.20) 82%,
    rgba(7, 14, 24, 0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(57, 198, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.03) 40%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content-home {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content-home.hero-centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(20px);
}

.hero-brand {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  position: relative;
  top: 0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.38),
    0 0 10px rgba(140, 235, 255, 0.16),
    0 0 22px rgba(140, 235, 255, 0.10);
}

.hero-divider {
  width: 160px;
  height: 2px;
  margin: 16px auto 22px auto;
  background: linear-gradient(
    90deg,
    rgba(120,220,255,0),
    rgba(120,220,255,0.9),
    rgba(120,220,255,0)
  );
  border-radius: 20px;
}

.hero-subtitle {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: #c9f1ff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  text-align: center;
  color: #def4ff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-actions-centered {
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-btn {
  min-width: 220px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-home .hero-actions {
  margin-top: 26px;
}

.hero-home .btn-primary {
  color: #07111e;
  background: linear-gradient(135deg, #a8f0ff, #72dfff);
  box-shadow:
    0 12px 24px rgba(114, 223, 255, 0.20),
    0 0 14px rgba(114, 223, 255, 0.14);
}

.hero-home .btn-primary:hover {
  box-shadow:
    0 16px 30px rgba(114, 223, 255, 0.24),
    0 0 16px rgba(114, 223, 255, 0.18);
}

@media (max-width: 860px) {
  .hero-home {
    min-height: 540px;
    padding: 40px 24px;
    background-position: center center;
  }

  .hero-brand {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }
}

@media (max-width: 560px) {
  .hero-home {
    min-height: 480px;
    padding: 28px 18px;
    background-position: center center;
  }

  .hero-content-home {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 0.98rem;
  }
}

/* =========================================================
   SOBRE — HERO PREMIUM CONSOLIDADO
   ========================================================= */

.page-sobre{
  width: 100%;
  max-width: none;
  margin: 0;
}

.sobre-hero{
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0;
  margin: 0 0 40px 0;

  background:
    linear-gradient(
      90deg,
      rgba(3,8,14,0.90) 0%,
      rgba(6,10,16,0.78) 26%,
      rgba(8,12,18,0.48) 48%,
      rgba(10,14,20,0.26) 68%,
      rgba(10,14,20,0.16) 100%
    ),
    radial-gradient(
      circle at 24% 44%,
      rgba(255,255,255,0.07) 0%,
      rgba(255,255,255,0.025) 16%,
      rgba(255,255,255,0.00) 34%
    ),
    url("../imagens/apaleteada.webp");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  box-shadow: var(--shadow-card);
}

.sobre-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 46%, rgba(78,195,255,0.08), transparent 28%),
    radial-gradient(circle at 82% 38%, rgba(78,195,255,0.05), transparent 24%);
  z-index: 1;
  pointer-events: none;
}

.sobre-hero::before{
  display: none;
}

.reflexo-chao{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.00) 0%,
    rgba(120,170,210,0.05) 55%,
    rgba(120,170,210,0.10) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.sobre-hero-conteudo{
  position: relative;
  z-index: 2;
  min-height: 720px;

  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: 14px;

  padding: 56px 54px 0;
}

.sobre-texto{
  max-width: 720px;
  color: #f2f6ff;
  align-self: center;
  padding-bottom: 42px;
  animation: textoEntrada 0.9s ease-out both;
}

.sobre-kicker{
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  color: #63d1ff;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(57,198,255,0.25);
}

.sobre-texto h1{
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.02;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.sobre-texto h2{
  position: relative;
  display: inline-block;
  margin: 0 0 34px;
  font-size: clamp(1.25rem, 2.2vw, 1.95rem);
  font-weight: 500;
  color: #9feaff;
  text-shadow: 0 0 12px rgba(78,195,255,0.14);
}

.sobre-texto h2::before,
.sobre-texto h2::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 999px;
}

.sobre-texto h2::before{
  top: -16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(57,198,255,0.95), rgba(57,198,255,0.06));
  box-shadow: 0 0 18px rgba(57,198,255,0.24);
}

.sobre-texto h2::after{
  bottom: -14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(57,198,255,0.65), rgba(57,198,255,0.02));
}

.sobre-texto p{
  font-size: 1.13rem;
  line-height: 1.76;
  color: #eef3ff;
  margin: 0 0 20px;
  max-width: 760px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.18);
}

.sobre-texto strong{
  color: #aeeaff;
  font-weight: 700;
}

.sobre-foto{
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  height: 100%;
  overflow: visible;
}

.sobre-foto::before{
  content: "";
  position: absolute;
  right: 30px;
  bottom: 82px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(68,190,255,0.30) 0%,
    rgba(68,190,255,0.16) 30%,
    rgba(68,190,255,0.07) 52%,
    rgba(68,190,255,0.00) 100%
  );
  filter: blur(28px);
  z-index: 1;
  pointer-events: none;
}

.sobre-foto::after{
  content: "";
  position: absolute;
  right: 42px;
  bottom: 54px;
  width: 160px;
  height: 76%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(68,190,255,0.00) 0%,
    rgba(68,190,255,0.14) 24%,
    rgba(68,190,255,0.08) 58%,
    rgba(68,190,255,0.00) 100%
  );
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.sobre-foto img{
  position: relative;
  z-index: 2;
  max-height: 720px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  filter:
    drop-shadow(0 28px 34px rgba(0,0,0,0.42))
    drop-shadow(0 12px 44px rgba(0,0,0,0.24))
    drop-shadow(0 0 10px rgba(68,190,255,0.10))
    drop-shadow(0 0 22px rgba(68,190,255,0.06));
  transform: translateX(10px) translateY(6px) scale(1.02);
  animation: fotoEntrada 1.05s ease-out both;
}

/* =========================================================
   CARDS
   ========================================================= */

.sobre-destaques{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto 40px;
}

.sobre-card{
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(20,30,45,0.92),
    rgba(10,18,30,0.96)
  );
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* glow interno suave */
.sobre-card::before{
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(57, 198, 255, 0.09), transparent 65%);
  pointer-events: none;
}

/* linha premium superior */
.sobre-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent),
    rgba(255,255,255,0)
  );
  opacity: 0.85;
}

.sobre-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.34),
    0 0 20px rgba(57,198,255,0.14);
  border-color: rgba(78,195,255,0.22);
}

.sobre-card h3{
  color: #9feaff;
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.sobre-card:hover h3{
  color: var(--accent-2);
}

.sobre-card p{
  color: #e3ecfb;
  line-height: 1.6;
  font-size: 0.98rem;
}

.sobre-card p:last-child{
  margin-bottom: 0;
}

/* =========================================================
   ANIMAÇÕES
   ========================================================= */

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

@keyframes fotoEntrada{
  from{
    opacity: 0;
    transform: translateX(42px) translateY(18px) scale(0.985);
    filter:
      blur(5px)
      drop-shadow(0 22px 26px rgba(0,0,0,0.24));
  }
  to{
    opacity: 1;
    transform: translateX(10px) translateY(6px) scale(1.02);
  }
}

@keyframes nevoaChuva{
  from{
    transform: translateY(0px) scale(1);
    opacity: 0.82;
  }
  to{
    transform: translateY(-6px) scale(1.015);
    opacity: 1;
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1080px){
  .sobre-hero{
    min-height: auto;
  }

  .sobre-hero-conteudo{
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 26px 0;
    gap: 6px;
  }

  .sobre-texto{
    max-width: 100%;
    padding-bottom: 14px;
  }

  .sobre-foto{
    justify-content: center;
  }

  .sobre-foto::before{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 64px;
  }

  .sobre-foto::after{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 52px;
  }

  .sobre-foto img{
    max-height: 540px;
    transform: translateY(6px) scale(1.01);
  }
}

@media (max-width: 900px){
  .sobre-destaques{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .sobre-hero{
    border-radius: 0;
  }

  .sobre-hero-conteudo{
    padding: 34px 18px 0;
  }

  .sobre-kicker{
    font-size: 0.94rem;
    letter-spacing: 0.18em;
  }

  .sobre-texto h1{
    font-size: 2.2rem;
  }

  .sobre-texto h2{
    font-size: 1.14rem;
    margin-bottom: 26px;
  }

  .sobre-texto p{
    font-size: 1rem;
    line-height: 1.72;
  }

  .sobre-foto img{
    max-height: 410px;
  }
}

/* =========================================================
   CHUVA — SOBRE HERO
   ========================================================= */

.chuva-overlay{
  display: none;
}

.chuva-overlay::before{
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(
      115deg,
      rgba(255,255,255,0.00) 0%,
      rgba(210,230,255,0.00) 40%,
      rgba(210,230,255,0.16) 50%,
      rgba(255,255,255,0.00) 60%
    );
  background-size: 20px 20px;
  opacity: 0.30;
  transform: translateY(-10%) rotate(6deg);
  animation: chuvaCaindo 0.9s linear infinite;
  filter: blur(0.3px);
}

.chuva-overlay::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.06), transparent 10%),
    radial-gradient(circle at 42% 18%, rgba(220,235,255,0.05), transparent 8%),
    radial-gradient(circle at 76% 26%, rgba(255,255,255,0.05), transparent 9%),
    radial-gradient(circle at 68% 44%, rgba(220,235,255,0.04), transparent 8%);
  opacity: 0.62;
  animation: neblinaChuva 5.5s ease-in-out infinite alternate;
}

@keyframes chuvaCaindo{
  from{
    transform: translateY(-12%) rotate(6deg);
  }
  to{
    transform: translateY(12%) rotate(6deg);
  }
}

@keyframes neblinaChuva{
  from{
    opacity: 0.35;
    transform: translateY(0px);
  }
  to{
    opacity: 0.55;
    transform: translateY(-4px);
  }
}

/* =========================
BASE DAS SEÇÕES
========================= */
.ze-section {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
}

.ze-section-dark {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 25%),
    linear-gradient(180deg, #0b0f14 0%, #111823 100%);
}

.ze-section-gradient {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 25%),
    linear-gradient(180deg, #121a24 0%, #0d131b 100%);
}

.ze-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ze-section-header {
  max-width: 860px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.ze-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: #f1d27a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ze-section-header h2 {
  margin: 0 0 18px 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: #f5f7fa;
  font-weight: 800;
}

.ze-section-header p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(235, 240, 245, 0.82);
}

/* =========================
GRID
========================= */
.ze-grid {
  display: grid;
  gap: 28px;
}

.ze-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ze-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========================
CARDS
========================= */
.ze-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ze-card h3 {
  margin: 0 0 14px 0;
  font-size: 1.28rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
}

.ze-card p {
  margin: 0;
  color: rgba(232, 238, 245, 0.78);
  line-height: 1.75;
  font-size: 0.99rem;
}

.ze-glow-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 12px 35px rgba(0,0,0,0.28),
    0 0 22px rgba(212,175,55,0.08);
}

.ze-border-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.24),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}

.ze-card:hover {
  transform: translateY(-8px);
}

.ze-glow-card:hover {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.35),
    0 0 30px rgba(212,175,55,0.16);
}

.ze-border-card:hover {
  border-color: rgba(212, 175, 55, 0.30);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.32),
    0 0 24px rgba(212,175,55,0.09);
}

.ze-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  font-size: 1.5rem;
  background: linear-gradient(180deg, rgba(212,175,55,0.18), rgba(212,175,55,0.07));
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 0 18px rgba(212,175,55,0.10);
}

/* DESATIVAR TEMPORARIAMENTE O EFEITO DE CHUVA NA PÁGINA SOBRE */
.sobre-hero::before{
  display: none !important;
}

.chuva-overlay,
.chuva-overlay::before,
.chuva-overlay::after{
  display: none !important;
  animation: none !important;
}

/* =========================
PUBLICAÇÕES
========================= */
.ze-publications {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.ze-pub-card {
  position: relative;
  padding: 28px 28px 26px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.28),
    0 0 22px rgba(212,175,55,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ze-pub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.34);
  box-shadow:
    0 16px 42px rgba(0,0,0,0.34),
    0 0 26px rgba(212,175,55,0.12);
}

.ze-pub-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);
  color: #f1d27a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ze-pub-card h3 {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.35;
}

.ze-pub-card p {
  margin: 0;
  color: rgba(232,238,245,0.78);
  line-height: 1.75;
}

/* =========================
RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .ze-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ze-section {
    padding: 70px 18px;
  }

  .ze-grid-3,
  .ze-grid-2 {
    grid-template-columns: 1fr;
  }

  .ze-card,
  .ze-pub-card {
    padding: 24px 20px;
  }

  .ze-section-header {
    margin-bottom: 36px;
  }

  .ze-section-header p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* =========================
   HERO ESPECIALIDADES
   ========================= */

.esp-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 56px;
  border-radius: 0;
  overflow: hidden;

  background-image: url("../imagens/especialidades-hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

  border: none;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(0, 180, 255, 0.10);
}

.esp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 14, 32, 0.94) 0%, rgba(4, 14, 32, 0.78) 34%, rgba(4, 14, 32, 0.36) 100%),
    radial-gradient(circle at 78% 48%, rgba(0, 180, 255, 0.18), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(0, 180, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.esp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  margin-left: 0;
  transform: translateY(-40px);
  text-align: left;
}


.esp-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7fdcff;
  background: rgba(0, 180, 255, 0.10);
  border: 1px solid rgba(127, 220, 255, 0.22);
}

.esp-hero h1 {
  margin: -40px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
}

.esp-hero p {
  margin: 40px 0 0 0;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.esp-grid-section {
  padding: 90px 20px;
  background: transparent;
}

.esp-container {
  max-width: 1240px;
  margin: 0 auto;
}

.esp-section-header {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.esp-section-header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.esp-section-header p {
  margin: 0;
  color: rgba(232,238,245,0.80);
  font-size: 1.02rem;
  line-height: 1.8;
}

.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.esp-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 30, 48, 0.82), rgba(10, 18, 30, 0.92));
  border: 1px solid rgba(95, 170, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.34),
    0 0 14px rgba(57,198,255,0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.esp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 210, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 22px rgba(57,198,255,0.16),
    0 0 42px rgba(57,198,255,0.10);
}

/* =========================
   ENERGIA METABÓLICA (CARD DIETAS)
   ========================= */

.energia-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ponto energia 1 (digestão) */
.energia-overlay::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #39c6ff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(57,198,255,0.9);
  top: 40%;
  left: 28%;
}

/* ponto energia 2 (músculo / potência) */
.energia-overlay::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #e0b15b;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(224,177,91,0.9);
  top: 60%;
  left: 65%;
}

.esp-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1220 0%, #132238 100%);
}

.esp-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.22) 100%),
    radial-gradient(circle at 82% 18%, rgba(95,185,255,0.12), transparent 32%);
  pointer-events: none;
}

.esp-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.esp-card:hover .esp-card-image img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.esp-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* =========================
   ESPECIALIDADES — IDENTIDADE DOS 3 PRIMEIROS CARDS
   ========================= */

.esp-card-nutricao-atletas:hover {
  border-color: rgba(80, 180, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(80,180,255,0.18),
    0 0 42px rgba(80,180,255,0.10);
}

.esp-card-nutricao-atletas:hover .esp-card-body h3 {
  color: #8fdcff;
}

.esp-card-osteo:hover {
  border-color: rgba(170, 220, 255, 0.30);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(170,220,255,0.14),
    0 0 42px rgba(170,220,255,0.08);
}

.esp-card-osteo:hover .esp-card-body h3 {
  color: #c8efff;
}

.esp-card-dietas:hover {
  border-color: rgba(120, 190, 255, 0.30);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 20px rgba(80,180,255,0.14),
    0 0 18px rgba(224,177,91,0.10),
    0 0 42px rgba(80,180,255,0.08);
}

.esp-card-dietas:hover .esp-card-body h3 {
  color: #bfe7ff;
  text-shadow:
    0 0 10px rgba(80,180,255,0.12),
    0 0 12px rgba(224,177,91,0.08);
}

/* =========================
   ESPECIALIDADES — IDENTIDADE DOS 3 NOVOS CARDS
   ========================= */

.esp-card-suplementacao:hover {
  border-color: rgba(90, 190, 255, 0.32);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(57,198,255,0.18),
    0 0 42px rgba(57,198,255,0.10);
}

.esp-card-suplementacao:hover .esp-card-body h3 {
  color: #8fe4ff;
}

.esp-card-reproducao:hover {
  border-color: rgba(224, 177, 91, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(224,177,91,0.16),
    0 0 42px rgba(224,177,91,0.10);
}

.esp-card-reproducao:hover .esp-card-body h3 {
  color: #f0cf86;
}

.esp-card-manejo:hover {
  border-color: rgba(106, 201, 138, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(106,201,138,0.16),
    0 0 42px rgba(106,201,138,0.10);
}

.esp-card-manejo:hover .esp-card-body h3 {
  color: #9fe0b1;
}

.esp-cta {
  padding: 0 20px 100px;
  background: transparent;
}

.esp-cta-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 12px 2px;
  text-align: center;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.esp-cta-box h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.esp-cta-box p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: rgba(232,238,245,0.80);
  line-height: 1.8;
  font-size: 1rem;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}

.esp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #11161d;
  background: linear-gradient(180deg, #f1d27a 0%, #d4af37 100%);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(212,175,55,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.esp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(212,175,55,0.28);
}

@media (max-width: 1100px) {
  .esp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .esp-hero {
    min-height: 66vh;
    padding: 110px 20px 80px;
  }

  .esp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .esp-card-image {
    height: 210px;
  }

  .esp-card-body {
    padding: 22px 18px 24px;
  }

  .esp-cta-box {
    padding: 34px 22px;
  }
}

/* =========================================================
   SERVIÇOS — VERSÃO PREMIUM ESTRUTURADA
   ========================================================= */

/* =========================
   HERO SERVIÇOS
   ========================= */

.serv-hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 56px;
  overflow: hidden;
  background-image: url("../imagens/servicos-hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: none;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(0, 180, 255, 0.10);
}

.serv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      rgba(4, 14, 32, 0.88) 0%,
      rgba(4, 14, 32, 0.70) 24%,
      rgba(4, 14, 32, 0.30) 48%,
      rgba(4, 14, 32, 0.08) 72%,
      rgba(4, 14, 32, 0.00) 100%
    ),
    radial-gradient(circle at 24% 48%, rgba(255,255,255,0.06), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(0, 180, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.serv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  text-align: left;
  transform: translateY(22px);
}

.serv-hero h1 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(2.3rem, 4vw, 4.15rem);
  line-height: 1.03;
  color: #ffffff;
}

.serv-hero p {
  margin: 0;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   ESTRUTURA GERAL
   ========================= */

.serv-container {
  max-width: 1240px;
  margin: 0 auto;
}

.serv-intro-section {
  padding: 84px 20px 30px;
  background: transparent;
}

.serv-grid-section {
  padding: 42px 20px 90px;
  background: transparent;
}

.serv-section-header {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.serv-section-header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.serv-section-header p {
  margin: 0;
  color: rgba(232, 238, 245, 0.80);
  font-size: 1.02rem;
  line-height: 1.82;
}

/* =========================
   BLOCO DE ENTRADA / DESTAQUE
   ========================= */

.serv-highlight-section {
  padding: 24px 20px 42px;
  background: transparent;
}

.serv-highlight-card {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(95, 170, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(12, 22, 38, 0.96), rgba(8, 15, 27, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(57, 198, 255, 0.08);
}

.serv-highlight-image {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, #0b1220 0%, #14243b 100%);
  overflow: hidden;
}

.serv-highlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 100%),
    radial-gradient(circle at 78% 18%, rgba(95,185,255,0.14), transparent 30%);
  pointer-events: none;
}

.serv-highlight-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.serv-highlight-content {
  padding: 36px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serv-highlight-tag,
.serv-premium-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fdcff;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.22);
  box-shadow: 0 0 18px rgba(57, 198, 255, 0.06);
}

.serv-highlight-content h2,
.serv-premium-text h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
}

.serv-highlight-content > p,
.serv-premium-text p {
  margin: 0 0 16px;
  color: rgba(232, 238, 245, 0.84);
  font-size: 1rem;
  line-height: 1.82;
}

.serv-highlight-list {
  display: grid;
  gap: 14px;
  margin: 12px 0 24px;
}

.serv-highlight-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(95, 170, 255, 0.10);
}

.serv-highlight-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.serv-highlight-item span {
  display: block;
  color: rgba(232, 238, 245, 0.80);
  font-size: 0.95rem;
  line-height: 1.68;
}

/* =========================
   GRID DE SERVIÇOS
   ========================= */

.serv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* =========================
   CARDS SERVIÇOS
   ========================= */

.serv-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 30, 48, 0.82), rgba(10, 18, 30, 0.92));
  border: 1px solid rgba(95, 170, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.34),
    0 0 14px rgba(57,198,255,0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.serv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 210, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 22px rgba(57,198,255,0.16),
    0 0 42px rgba(57,198,255,0.10);
}

.serv-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1220 0%, #132238 100%);
}

.serv-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.24) 100%),
    radial-gradient(circle at 82% 18%, rgba(95,185,255,0.12), transparent 32%);
  pointer-events: none;
}

.serv-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.serv-card:hover .serv-card-image img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.serv-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.serv-card-body h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.serv-card-body p {
  margin: 0;
  color: rgba(232,238,245,0.82);
  line-height: 1.72;
  font-size: 0.98rem;
}

/* =========================
   IDENTIDADE DOS SERVIÇOS
   ========================= */

.serv-card-consultoria:hover {
  border-color: rgba(80, 180, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(80,180,255,0.18),
    0 0 42px rgba(80,180,255,0.10);
}

.serv-card-consultoria:hover .serv-card-body h3 {
  color: #8fdcff;
}

.serv-card-dietas:hover {
  border-color: rgba(120, 190, 255, 0.30);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 20px rgba(80,180,255,0.14),
    0 0 18px rgba(224,177,91,0.10),
    0 0 42px rgba(80,180,255,0.08);
}

.serv-card-dietas:hover .serv-card-body h3 {
  color: #bfe7ff;
  text-shadow:
    0 0 10px rgba(80,180,255,0.12),
    0 0 12px rgba(224,177,91,0.08);
}

.serv-card-reproducao:hover {
  border-color: rgba(224, 177, 91, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(224,177,91,0.16),
    0 0 42px rgba(224,177,91,0.10);
}

.serv-card-reproducao:hover .serv-card-body h3 {
  color: #f0cf86;
}

.serv-card-gestao:hover {
  border-color: rgba(106, 201, 138, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(106,201,138,0.16),
    0 0 42px rgba(106,201,138,0.10);
}

.serv-card-gestao:hover .serv-card-body h3 {
  color: #9fe0b1;
}

.serv-card-monitoramento:hover {
  border-color: rgba(163, 151, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(163,151,255,0.16),
    0 0 42px rgba(163,151,255,0.10);
}

.serv-card-monitoramento:hover .serv-card-body h3 {
  color: #c9c2ff;
}

.serv-card-racoes:hover {
  border-color: rgba(255, 196, 92, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(255,196,92,0.16),
    0 0 42px rgba(255,196,92,0.10);
}

.serv-card-racoes:hover .serv-card-body h3 {
  color: #ffd68f;
}

/* =========================
   BLOCO PREMIUM
   ========================= */

.serv-premium-section {
  padding: 0 20px 46px;
  background: transparent;
}

.serv-premium-box {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(224, 177, 91, 0.20);
  background:
    linear-gradient(145deg, rgba(15, 21, 35, 0.98), rgba(10, 15, 26, 0.98));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(224, 177, 91, 0.08);
}

.serv-premium-text {
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serv-premium-tag {
  color: #f0cf86;
  background: rgba(224, 177, 91, 0.10);
  border: 1px solid rgba(224, 177, 91, 0.22);
  box-shadow: 0 0 18px rgba(224, 177, 91, 0.06);
}

.serv-premium-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1220 0%, #1a2334 100%);
}

.serv-premium-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.26) 100%),
    radial-gradient(circle at 80% 20%, rgba(224,177,91,0.12), transparent 30%);
  pointer-events: none;
}

.serv-premium-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.serv-btn-premium {
  margin-top: 8px;
}

/* =========================
   CTA CONSULTORIA
   ========================= */

.serv-cta-consultoria {
  padding: 18px 20px 12px;
}

.cta-consultoria {
  margin: 0 auto;
  padding: 38px 32px;
  max-width: 860px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(14, 40, 68, 0.96)),
    radial-gradient(circle at top, rgba(57, 198, 255, 0.10), transparent 60%);
  border: 1px solid rgba(57, 198, 255, 0.18);
  border-radius: 22px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(57, 198, 255, 0.10);
}

.cta-consultoria h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.3;
}

.cta-consultoria p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(230, 238, 248, 0.88);
  font-size: 1rem;
  line-height: 1.72;
}

/* =========================
   CTA FINAL
   ========================= */

.serv-cta {
  padding: 10px 22px 122px;
  background: transparent;
}

.serv-cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0 18px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.serv-cta-box h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.serv-cta-box p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: rgba(232,238,245,0.80);
  line-height: 1.8;
  font-size: 1rem;
}

/* =========================
   BOTÕES
   ========================= */

.serv-btn,
.btn-consultoria {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.serv-btn {
  padding: 14px 28px;
  color: #11161d;
  background: linear-gradient(180deg, #f1d27a 0%, #d4af37 100%);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(212,175,55,0.22);
}

.serv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(212,175,55,0.28);
}

.btn-consultoria {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: #071223;
  background: linear-gradient(135deg, #39c6ff, #7fe3ff);
  box-shadow:
    0 10px 24px rgba(57, 198, 255, 0.28),
    0 0 14px rgba(57, 198, 255, 0.20);
}

.btn-consultoria:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 28px rgba(57, 198, 255, 0.34),
    0 0 18px rgba(57, 198, 255, 0.26);
  filter: brightness(1.03);
}

/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 1180px) {
  .serv-highlight-card,
  .serv-premium-box {
    grid-template-columns: 1fr;
  }

  .serv-highlight-image,
  .serv-premium-image {
    min-height: 320px;
  }
}

@media (max-width: 1100px) {
  .serv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .serv-card-image {
    height: 235px;
  }
}

@media (max-width: 768px) {
  .serv-hero {
    min-height: 560px;
    justify-content: center;
    padding: 90px 20px 70px;
    background-position: center center;
  }

  .serv-hero-content {
    margin-left: 0;
    text-align: center;
    transform: translateY(18px);
  }

  .serv-intro-section {
    padding: 70px 20px 24px;
  }

  .serv-highlight-section {
    padding: 18px 20px 34px;
  }

  .serv-highlight-content,
  .serv-premium-text {
    padding: 28px 20px 26px;
  }

  .serv-highlight-image,
  .serv-premium-image {
    min-height: 250px;
  }

  .serv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .serv-card-image {
    height: 220px;
  }

  .serv-card-body {
    padding: 22px 18px 24px;
  }

  .serv-cta-consultoria {
    padding: 10px 20px 0;
  }

  .cta-consultoria {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .cta-consultoria h3 {
    font-size: 1.35rem;
  }

  .cta-consultoria p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .btn-consultoria,
  .serv-btn {
    width: 100%;
    padding: 14px 18px;
  }

  .serv-cta {
    padding: 10px 20px 80px;
  }
}

/* =========================
   PÁGINA — ARTIGOS E PUBLICAÇÕES
========================= */

/* Força comportamento de link clicável */
nav a,
.menu a,
.header a,
.navbar a {
    cursor: pointer;
}

nav a {
    position: relative;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #7dd3fc;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #7dd3fc;
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =========================================================
   PUBLICAÇÕES — PREMIUM
   ========================================================= */

.publicacoes-page {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(57, 198, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1628 42%, #0d1b31 100%);
  color: #eef4ff;
}

/* =========================
   HERO
   ========================= */

.publicacoes-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.publicacoes-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.publicacoes-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  filter: brightness(0.90) saturate(1.12) contrast(1.02);
  transform: scale(1.02);
}

.publicacoes-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.06) 0%, rgba(7, 14, 24, 0.12) 28%, rgba(8, 16, 28, 0.28) 72%, rgba(9, 18, 32, 0.46) 100%),
    radial-gradient(circle at 50% 24%, rgba(57, 198, 255, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(224, 177, 91, 0.08), transparent 20%);
}

.publicacoes-hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 40px));
  text-align: center;
  padding: 40px 20px;
}

.publicacoes-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #f8fbff;
  text-shadow:
    0 0 18px rgba(57, 198, 255, 0.10),
    0 6px 24px rgba(0, 0, 0, 0.35);
}

.publicacoes-hero-content p {
  margin: 0 auto;
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(232, 240, 255, 0.88);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

/* =========================
   BASE DE SEÇÕES
   ========================= */

.publicacoes-intro,
.publicacoes-section,
.publicacoes-final-cta {
  position: relative;
  z-index: 2;
}

.publicacoes-intro {
  padding: 88px 0 30px;
}

.publicacoes-section {
  padding: 34px 0 34px;
}

.publicacoes-section + .publicacoes-section {
  padding-top: 18px;
}

.publicacoes-intro .section-heading,
.publicacoes-section .section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.publicacoes-intro .section-heading h2,
.publicacoes-section .section-heading h2,
.publicacoes-final-text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.2px;
  color: #f5f9ff;
}

.publicacoes-intro .section-heading p,
.publicacoes-section .section-heading p,
.publicacoes-final-text p {
  margin: 0 auto;
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(213, 223, 244, 0.86);
}

/* detalhe visual suave */
.publicacoes-section .section-heading::after,
.publicacoes-intro .section-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(57, 198, 255, 0.2), rgba(57, 198, 255, 0.95), rgba(224, 177, 91, 0.4));
  box-shadow: 0 0 18px rgba(57, 198, 255, 0.18);
}

/* =========================
   GRID
   ========================= */

.publicacoes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.publicacoes-grid-notas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========================
   CARDS
   ========================= */

.pub-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(19, 33, 56, 0.88) 0%, rgba(12, 24, 43, 0.94) 100%);
  border: 1px solid rgba(107, 160, 255, 0.14);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(57, 198, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(224, 177, 91, 0.06), transparent 22%);
  pointer-events: none;
}

.pub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 198, 255, 0.32);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.30),
    0 0 24px rgba(57, 198, 255, 0.08);
}

.pub-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pub-card-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.24);
  color: #7fdbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pub-card h3 {
  margin: 0 0 14px;
  font-size: 1.34rem;
  line-height: 1.34;
  font-weight: 760;
  color: #f7fbff;
}

.pub-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(214, 223, 241, 0.88);
  flex-grow: 1;
}

.pub-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pub-card-meta span {
  font-size: 0.86rem;
  color: rgba(156, 178, 214, 0.90);
}

.pub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #8fe6ff;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.pub-card-link::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.22s ease;
}

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

.pub-card-link:hover::after {
  transform: translateX(3px);
}

/* =========================
   DESTAQUES
   ========================= */

.pub-card-highlight {
  border: 1px solid rgba(57, 198, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(20, 39, 66, 0.96) 0%, rgba(11, 24, 44, 0.98) 100%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(57, 198, 255, 0.04),
    0 0 32px rgba(57, 198, 255, 0.08);
}

.pub-card-highlight .pub-card-type {
  background: rgba(224, 177, 91, 0.12);
  border-color: rgba(224, 177, 91, 0.28);
  color: #f2c778;
}

.pub-card-highlight:hover {
  border-color: rgba(224, 177, 91, 0.34);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(224, 177, 91, 0.10),
    0 0 24px rgba(57, 198, 255, 0.08);
}

/* =========================
   NOTAS TÉCNICAS
   ========================= */

.nota-card {
  border-radius: 20px;
}

.nota-card .pub-card-body {
  padding: 24px 24px 22px;
}

.nota-card h3 {
  font-size: 1.18rem;
}

/* =========================
   CTA ENTRE BLOCOS
   ========================= */

.publicacoes-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.publicacoes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(57, 198, 255, 0.30);
  background:
    linear-gradient(180deg, rgba(27, 56, 94, 0.95), rgba(16, 34, 59, 0.98));
  color: #f4fbff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(57, 198, 255, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.publicacoes-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 198, 255, 0.48);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(57, 198, 255, 0.14);
}

/* =========================
   CTA FINAL
   ========================= */

.publicacoes-final-cta {
  padding: 74px 0 90px;
}

.publicacoes-final-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 12px;
}

.publicacoes-final-text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.2px;
  color: #f5f9ff;
}

.publicacoes-final-text p {
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(213, 223, 244, 0.86);
}

/* =========================
   FOOTER
   ========================= */

.publicacoes-page .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 10, 18, 0.72);
  backdrop-filter: blur(10px);
}

.publicacoes-page .footer-content {
  padding-top: 26px;
  padding-bottom: 26px;
}

.publicacoes-page .footer-copy {
  color: rgba(202, 214, 236, 0.72);
  text-align: center;
  font-size: 0.92rem;
  margin: 0;
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 991px) {
  .publicacoes-hero {
    min-height: 560px;
  }

  .publicacoes-grid,
  .publicacoes-grid-notas {
    grid-template-columns: 1fr;
  }

  .pub-card-body {
    padding: 24px 22px 22px;
  }

}

@media (max-width: 768px) {
  .publicacoes-hero {
    min-height: 500px;
  }

  .publicacoes-hero-content {
    width: min(100%, calc(100% - 24px));
    padding: 26px 8px;
  }

  .publicacoes-hero-content p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .publicacoes-intro {
    padding: 70px 0 24px;
  }

  .publicacoes-section {
    padding: 26px 0 26px;
  }

  .publicacoes-intro .section-heading h2,
  .publicacoes-section .section-heading h2,
  .publicacoes-final-text h2 {
    font-size: 1.6rem;
  }

  .publicacoes-intro .section-heading p,
  .publicacoes-section .section-heading p,
  .publicacoes-final-text p {
    font-size: 0.96rem;
    line-height: 1.74;
  }

  .pub-card h3 {
    font-size: 1.16rem;
  }

  .pub-card p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .pub-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .publicacoes-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 520px) {
  .publicacoes-hero {
    min-height: 460px;
  }

  .publicacoes-hero-bg img {
    object-position: center 68%;
  }

  .pub-card,
  .publicacoes-final-box {
    border-radius: 20px;
  }

  .pub-card-body {
    padding: 22px 18px 20px;
  }

  .nota-card .pub-card-body {
    padding: 20px 18px 18px;
  }
}

/* ===== DETALHE DE PUBLICAÇÃO / TCC ===== */

.publicacao-detalhe-page {
  padding-bottom: 80px;
}

.publicacao-detalhe-hero {
  position: relative;
  padding: 120px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(90, 160, 255, 0.14), transparent 38%),
    radial-gradient(circle at top right, rgba(120, 190, 255, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(8, 20, 42, 0.98), rgba(12, 28, 54, 0.94));
  border-bottom: 1px solid rgba(120, 190, 255, 0.16);
}

.publicacao-detalhe-hero-content {
  max-width: 920px;
}

.publicacao-detalhe-tipo {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fd3ff;
  background: rgba(28, 68, 122, 0.28);
  border: 1px solid rgba(120, 190, 255, 0.20);
  box-shadow: 0 0 18px rgba(80, 160, 255, 0.10);
}

.publicacao-detalhe-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  color: #dff4ff;
}

.publicacao-detalhe-subtitulo {
  max-width: 760px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #bddfff;
}

.publicacao-detalhe-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.publicacao-detalhe-meta div {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 34, 63, 0.96), rgba(11, 25, 47, 0.94));
  border: 1px solid rgba(120, 190, 255, 0.15);
  color: #d7eeff;
  box-shadow: 0 0 18px rgba(45, 112, 255, 0.08);
}

.publicacao-detalhe-intro,
.publicacao-detalhe-bloco,
.publicacao-detalhe-callout,
.publicacao-detalhe-download {
  margin-top: 42px;
}

.publicacao-detalhe-page .section-heading h2 {
  color: #dff4ff;
}

.publicacao-detalhe-page .section-heading p {
  color: #bddcff;
}

.publicacao-detalhe-page .pub-card {
  background: linear-gradient(180deg, rgba(17, 34, 63, 0.96), rgba(11, 25, 47, 0.94));
  border: 1px solid rgba(120, 190, 255, 0.15);
  box-shadow: 0 0 22px rgba(45, 112, 255, 0.08);
}

.publicacao-detalhe-page .pub-card h3 {
  color: #e5f6ff;
}

.publicacao-detalhe-page .pub-card p,
.publicacao-detalhe-page .pub-card-meta span {
  color: #bddcff;
}

.publicacao-detalhe-page .pub-card-type {
  color: #89d1ff;
}

.publicacao-detalhe-page .publicacoes-cta {
  text-align: center;
}

.publicacao-detalhe-page .publicacoes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #081523;
  background: linear-gradient(135deg, #8fd3ff, #5ab2ff);
  box-shadow: 0 0 22px rgba(90, 178, 255, 0.20);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.publicacao-detalhe-page .publicacoes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(110, 190, 255, 0.30);
}

.article-meta-highlight {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8fd3ff;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  justify-content: center;   /* 👈 CENTRALIZA */
  align-items: center;
  text-align: center;        /* 👈 GARANTE TEXTO CENTRAL */

  .article-meta-highlight {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* base */
.meta-badge {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #cfeaff;

  background: linear-gradient(180deg, rgba(20, 50, 95, 0.9), rgba(10, 25, 55, 0.95));
  border: 1px solid rgba(120, 190, 255, 0.25);

  box-shadow:
    0 0 12px rgba(80, 160, 255, 0.15),
    inset 0 0 6px rgba(120, 190, 255, 0.1);

  transition: all 0.25s ease;
}

/* hover elegante */
.meta-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(100, 180, 255, 0.25),
    inset 0 0 8px rgba(120, 190, 255, 0.15);
}

/* destaque da nota */
.meta-badge.destaque {
  background: linear-gradient(135deg, #8fd3ff, #5ab2ff);
  color: #081523;
  font-weight: 700;

  box-shadow:
    0 0 20px rgba(90, 178, 255, 0.35),
    0 0 40px rgba(90, 178, 255, 0.15);
}
}

.article-meta-highlight span {
  background: rgba(30, 70, 130, 0.25);
  border: 1px solid rgba(120, 190, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(80, 160, 255, 0.15);
}

.article-final-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.article-btn-primary {
  color: #081523;
  background: linear-gradient(135deg, #8fd3ff, #5ab2ff);
  box-shadow: 0 0 20px rgba(90, 178, 255, 0.22);
}

.article-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(110, 190, 255, 0.30);
}

.article-btn-secondary {
  color: #dff4ff;
  background: rgba(15, 34, 66, 0.92);
  border: 1px solid rgba(120, 190, 255, 0.24);
  box-shadow: 0 0 16px rgba(70, 145, 255, 0.10);
}

.article-btn-secondary:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(140, 205, 255, 0.38);
  box-shadow: 0 0 22px rgba(90, 178, 255, 0.18);
}


/* ===== AÇÕES FINAIS DO ARTIGO / TCC ===== */

.article-final-actions {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(120, 190, 255, 0.14);
}

.article-final-text {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  color: #bcdcff;
  line-height: 1.8;
}

.article-final-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

/* botão principal */
.article-btn-primary {
  color: #081523;
  background: linear-gradient(135deg, #9ad9ff, #5ab2ff);
  border: 1px solid rgba(150, 220, 255, 0.28);
  box-shadow:
    0 0 22px rgba(90, 178, 255, 0.24),
    0 0 40px rgba(90, 178, 255, 0.08);
}

.article-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(110, 190, 255, 0.34),
    0 0 54px rgba(110, 190, 255, 0.12);
}

/* botão secundário */
.article-btn-secondary {
  color: #dff4ff;
  background: linear-gradient(180deg, rgba(17, 34, 63, 0.96), rgba(11, 25, 47, 0.94));
  border: 1px solid rgba(120, 190, 255, 0.22);
  box-shadow:
    0 0 16px rgba(60, 130, 255, 0.10),
    inset 0 0 10px rgba(120, 190, 255, 0.04);
}

.article-btn-secondary:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(145, 210, 255, 0.36);
  box-shadow:
    0 0 24px rgba(90, 178, 255, 0.18),
    inset 0 0 12px rgba(120, 190, 255, 0.08);
}

/* ajuste mobile */
@media (max-width: 640px) {
  .article-final-buttons {
    flex-direction: column;
  }

  .article-btn {
    width: min(100%, 340px);
  }
}

.destaque-final{
  grid-column: span 2;
  justify-self: center;
}

/* =========================
   PÁGINA — BLOG
========================= */

.blog-page{
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.10), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #0b1930 45%, #10213a 100%);
    color: #f5f7fa;
    min-height: 100vh;
}

.blog-hero{
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    box-shadow:
        0 22px 60px rgba(0,0,0,0.34),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    isolation: isolate;
}

.blog-hero-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 34% center;
    display: block;
    border-radius: 0;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.04);
}

.blog-hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(270deg, rgba(4,10,18,0.78) 0%, rgba(4,10,18,0.48) 34%, rgba(4,10,18,0.16) 66%, rgba(4,10,18,0.06) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.26) 100%),
      radial-gradient(circle at 82% 50%, rgba(59,130,246,0.10), transparent 34%);
}

.blog-hero-content{
    position: relative;
    z-index: 3;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    padding: 118px 7% 92px;
    text-align: left;
}

.blog-kicker{
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    font-size: 0.90rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d9e7f2;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.blog-hero-content h1{
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.02;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 10px 34px rgba(0,0,0,0.44);
}

.blog-hero-content p{
    max-width: 650px;
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(245,247,250,0.93);
    text-shadow: 0 4px 18px rgba(0,0,0,0.24);
}

.blog-section{
    padding: 82px 8%;
    text-align: center;
}

.container{
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.blog-section .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading{
    max-width: 860px;
    margin: 0 auto 36px auto;
    text-align: center;
}

.section-tag{
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #7dd3fc;
    font-weight: 700;
}

.section-heading h2{
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-heading p{
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(230, 236, 242, 0.82);
}

/* GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-grid-featured{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 34px;
}

/* CARD */

.blog-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 420px;
    height: auto;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(20,32,46,0.96) 0%, rgba(10,18,28,0.98) 100%);
    border: 1px solid rgba(125, 211, 252, 0.09);
    box-shadow:
        0 16px 36px rgba(0,0,0,0.24),
        0 0 0 1px rgba(255,255,255,0.02) inset;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.blog-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(125,211,252,0.04) 0%, transparent 32%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.blog-card:hover{
    transform: translateY(-7px);
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.30),
        0 0 0 1px rgba(255,255,255,0.03) inset;
}

.blog-card:hover::before{
    opacity: 1;
}

.blog-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.blog-card-body{
    position: relative;
    z-index: 1;
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: auto;
}

.blog-card-type{
    display: inline-block;
    align-self: center;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.10);
    color: #7dd3fc;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(125,211,252,0.10);
}

.blog-card h3{
    font-size: 1.22rem;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #ffffff;
    min-height: 3.3em;
}

.blog-card p{
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(232, 238, 244, 0.82);
    margin-bottom: 22px;
    flex-grow: 1;
}

.blog-card-meta{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-bottom: 22px;
    font-size: 0.86rem;
    color: rgba(196, 209, 220, 0.72);
}

.blog-card-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    margin: 0 auto;
    margin-top: auto;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(125,211,252,0.18);
    background: rgba(125,211,252,0.05);
    color: #7dd3fc;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
}

.blog-card-link:hover{
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(125,211,252,0.10);
    border-color: rgba(125,211,252,0.30);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.blog-card-featured{
    min-height: 100%;
}

/* CTA */
.blog-cta-section{
    padding-top: 42px;
    padding-bottom: 104px;
}

.blog-cta{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.blog-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.blog-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
    filter: brightness(1.04);
}

/* RESPONSIVO */
@media (max-width: 1100px){
    .blog-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-grid-featured{
        grid-template-columns: 1fr;
    }

    .blog-hero{
        min-height: 66vh;
    }
}

@media (max-width: 768px){
    .blog-hero{
    min-height: 520px;
    margin: 0;
    border-radius: 0;
    justify-content: center;
}

.blog-hero-bg img{
    border-radius: 0;
    object-position: 42% center;
    transform: scaleX(-1);
}

.blog-hero-content{
    padding: 110px 7% 70px;
    margin-left: 0;
    text-align: center;
}

    .blog-section{
        padding: 60px 7%;
    }

    .blog-grid{
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

      /* CARD */

.blog-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 420px;
    height: 100%;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(20,32,46,0.96) 0%, rgba(10,18,28,0.98) 100%);
    border: 1px solid rgba(125, 211, 252, 0.09);
    box-shadow:
        0 16px 36px rgba(0,0,0,0.24),
        0 0 0 1px rgba(255,255,255,0.02) inset;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.blog-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(125,211,252,0.04) 0%, transparent 32%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.blog-card:hover{
    transform: translateY(-7px);
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow:
        0 22px 48px rgba(0,0,0,0.30),
        0 0 0 1px rgba(255,255,255,0.03) inset;
}

.blog-card:hover::before{
    opacity: 1;
}

.blog-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.blog-card-body{
    position: relative;
    z-index: 1;
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.blog-card-type{
    display: inline-block;
    align-self: center;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.10);
    color: #7dd3fc;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(125,211,252,0.10);
}

.blog-card h3{
    font-size: 1.22rem;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #ffffff;
    min-height: 3.3em;
}

.blog-card p{
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(232, 238, 244, 0.82);
    margin-bottom: 22px;
    flex-grow: 1;
}

.blog-card-meta{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-bottom: 22px;
    font-size: 0.86rem;
    color: rgba(196, 209, 220, 0.72);
}

.blog-card-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    margin: 0 auto;
    margin-top: auto;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(125,211,252,0.18);
    background: rgba(125,211,252,0.05);
    color: #7dd3fc;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
}

.blog-card-link:hover{
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(125,211,252,0.10);
    border-color: rgba(125,211,252,0.30);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

    .blog-card{
        min-height: auto;
    }

    .blog-card-body{
        padding: 24px 22px 22px;
    }

    .blog-card h3{
        min-height: auto;
    }
}

/* =========================
   BLOG — NOVAS SEÇÕES
========================= */

.blog-topics-section{
    padding-top: 30px;
}

.blog-topic-card{
    min-height: 390px;
    background:
        linear-gradient(180deg, rgba(18, 30, 46, 0.96) 0%, rgba(9, 17, 28, 0.98) 100%);
    border: 1px solid rgba(125, 211, 252, 0.11);
    box-shadow:
        0 18px 38px rgba(0,0,0,0.24),
        0 0 0 1px rgba(255,255,255,0.02) inset;
}

.blog-topic-card:hover{
    transform: translateY(-8px);
    border-color: rgba(125, 211, 252, 0.22);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.32),
        0 0 0 1px rgba(255,255,255,0.03) inset;
}

.blog-topic-card .blog-card-type{
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border-color: rgba(147, 197, 253, 0.18);
}

.blog-topic-card h3{
    min-height: 3.5em;
}

.blog-topic-card p{
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

/* BLOCO ACERVO COMPLETO */
.blog-archive-section{
    padding-top: 18px;
    padding-bottom: 48px;
}

.blog-archive-box{
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0 0;
    border-radius: 0;
    text-align: center;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
}

.blog-archive-box > *{
    position: relative;
    z-index: 1;
}

.blog-archive-box h2{
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.12;
    margin-bottom: 16px;
    color: #ffffff;
}

.blog-archive-box p{
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.82;
    color: rgba(228, 236, 243, 0.82);
}

.blog-archive-actions{
    display: none;
}

/* AJUSTE FINO CTA FINAL */
.blog-cta-section{
    padding-top: 24px;
}

/* RESPONSIVO */
@media (max-width: 1100px){
    .blog-topic-card{
        min-height: 360px;
    }

    .blog-archive-box{
        padding: 40px 28px;
    }
}

@media (max-width: 768px){
    .blog-topics-section{
        padding-top: 10px;
    }

    .blog-topic-card{
        min-height: auto;
    }

    .blog-topic-card h3{
        min-height: auto;
    }

    .blog-archive-section{
        padding-top: 8px;
        padding-bottom: 28px;
    }

    .blog-archive-box{
        padding: 32px 22px;
        border-radius: 22px;
    }

    .blog-archive-box p{
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .blog-archive-actions{
        margin-top: 22px;
    }
}

.blog-archive-box .blog-btn {
    margin-top: 20px;
}

/* =========================
   PUBLICAÇÕES PREMIUM
========================= */

.publicacoes-section-premium {
  position: relative;
}

.publicacoes-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.pub-card-premium {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(120, 170, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 19, 38, 0.96), rgba(7, 14, 30, 0.99)),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 42%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pub-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 120, 0.28);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 215, 120, 0.06) inset,
    0 0 28px rgba(59, 130, 246, 0.08);
}

.pub-card-media-link {
  display: block;
  text-decoration: none;
}

.pub-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5, 10, 24, 0.7);
}

.pub-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.pub-card-premium:hover .pub-card-image {
  transform: scale(1.045);
}

.pub-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 22, 0.06) 0%, rgba(4, 10, 22, 0.22) 45%, rgba(4, 10, 22, 0.72) 100%),
    linear-gradient(135deg, rgba(7, 31, 68, 0.24), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.pub-card-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff7d6;
  background: rgba(12, 24, 48, 0.72);
  border: 1px solid rgba(255, 215, 120, 0.22);
  backdrop-filter: blur(8px);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}

.pub-card-premium .pub-card-body {
  padding: 22px 22px 24px;
}

.pub-card-premium .pub-card-type {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.pub-card-premium h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.3;
  color: #f8fbff;
}

.pub-card-premium p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(232, 240, 252, 0.90);
}

.pub-card-premium .pub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: #f7d77c;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.pub-card-premium .pub-card-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.pub-card-premium .pub-card-link:hover {
  color: #ffe7a8;
  transform: translateX(1px);
}

.pub-card-premium .pub-card-link:hover::after {
  transform: translateX(2px);
}

@media (max-width: 980px) {
  .publicacoes-grid-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pub-card-media {
    height: 228px;
  }
}

@media (max-width: 640px) {
  .pub-card-media {
    height: 210px;
  }

  .pub-card-premium .pub-card-body {
    padding: 18px 18px 20px;
  }

  .pub-card-premium h3 {
    font-size: 1.12rem;
  }

  .pub-card-premium p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .pub-card-badge {
    left: 14px;
    bottom: 14px;
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}

/* =========================================================
   MATERIAIS / E-BOOKS
   ========================================================= */

/* =========================
   HERO MATERIAIS
   ========================= */

.hero-materiais {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 56px;
  overflow: hidden;
  background-image: url("../imagens/hero-materiais.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.34),
    0 0 35px rgba(0, 180, 255, 0.10);
}

.hero-biblioteca-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      rgba(4, 14, 32, 0.88) 0%,
      rgba(4, 14, 32, 0.70) 24%,
      rgba(4, 14, 32, 0.30) 48%,
      rgba(4, 14, 32, 0.08) 72%,
      rgba(4, 14, 32, 0.00) 100%
    ),
    radial-gradient(circle at 24% 48%, rgba(255,255,255,0.05), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(0, 180, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.hero-biblioteca-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
  margin-left: auto;
  text-align: left;
  transform: translateY(18px);
}

.hero-biblioteca-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fdcff;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.22);
  box-shadow: 0 0 18px rgba(57, 198, 255, 0.06);
}

.hero-biblioteca-content h1 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.03;
  color: #ffffff;
}

.hero-biblioteca-content p {
  margin: 0;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   ESTRUTURA GERAL
   ========================= */

.materiais-container {
  max-width: 1240px;
  margin: 0 auto;
}

.materiais-intro-section {
  padding: 84px 20px 30px;
  background: transparent;
}

.materiais-grid-section {
  padding: 42px 20px 90px;
  background: transparent;
}

.materiais-premium-section {
  padding-top: 0;
}

.materiais-section-header {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.materiais-section-header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.materiais-section-header p {
  margin: 0;
  color: rgba(232, 238, 245, 0.80);
  font-size: 1.02rem;
  line-height: 1.82;
}

/* =========================
   MATERIAL DESTAQUE
   ========================= */

.materiais-destaque-section {
  padding: 24px 20px 42px;
  background: transparent;
}

.material-destaque-card {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(95, 170, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(12, 22, 38, 0.96), rgba(8, 15, 27, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(57, 198, 255, 0.08);
}

.material-destaque-image {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, #0b1220 0%, #14243b 100%);
  overflow: hidden;
}

.material-destaque-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 100%),
    radial-gradient(circle at 78% 18%, rgba(95,185,255,0.14), transparent 30%);
  pointer-events: none;
}

.material-destaque-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.material-destaque-content {
  padding: 36px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.material-destaque-content h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
}

.material-destaque-content > p {
  margin: 0 0 16px;
  color: rgba(232, 238, 245, 0.84);
  font-size: 1rem;
  line-height: 1.82;
}

.material-destaque-list {
  display: grid;
  gap: 14px;
  margin: 12px 0 24px;
}

.material-destaque-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(95, 170, 255, 0.10);
}

.material-destaque-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.material-destaque-item span {
  display: block;
  color: rgba(232, 238, 245, 0.80);
  font-size: 0.95rem;
  line-height: 1.68;
}

/* =========================
   GRID DE MATERIAIS
   ========================= */

.materiais-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* =========================
   CARDS DE MATERIAL
   ========================= */

.material-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 30, 48, 0.82), rgba(10, 18, 30, 0.92));
  border: 1px solid rgba(95, 170, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.34),
    0 0 14px rgba(57,198,255,0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.material-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 210, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 22px rgba(57,198,255,0.16),
    0 0 42px rgba(57,198,255,0.10);
}

.material-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1220 0%, #132238 100%);
}

.material-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.24) 100%),
    radial-gradient(circle at 82% 18%, rgba(95,185,255,0.12), transparent 32%);
  pointer-events: none;
}

.material-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.material-card:hover .material-card-image img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.material-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.material-card-body h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.material-card-body p {
  margin: 0 0 18px;
  color: rgba(232,238,245,0.82);
  line-height: 1.72;
  font-size: 0.98rem;
}

/* =========================
   BADGES
   ========================= */

.material-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.material-badge-gratuito {
  color: #8fdcff;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.22);
  box-shadow: 0 0 18px rgba(57, 198, 255, 0.06);
}

.material-badge-premium {
  color: #f0cf86;
  background: rgba(224, 177, 91, 0.10);
  border: 1px solid rgba(224, 177, 91, 0.22);
  box-shadow: 0 0 18px rgba(224, 177, 91, 0.06);
}

/* =========================
   META DOS PRODUTOS
   ========================= */

.material-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 18px;
}

.material-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(95,170,255,0.10);
  color: rgba(232,238,245,0.78);
  font-size: 0.86rem;
  line-height: 1;
}

/* =========================
   LINKS / BOTÕES
   ========================= */

.material-link,
.btn-material-azul,
.btn-material-dourado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  border-radius: 999px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.material-link {
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.material-link-azul,
.btn-material-azul {
  color: #071223;
  background: linear-gradient(135deg, #39c6ff, #7fe3ff);
  box-shadow:
    0 10px 24px rgba(57, 198, 255, 0.28),
    0 0 14px rgba(57, 198, 255, 0.20);
}

.material-link-azul:hover,
.btn-material-azul:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 28px rgba(57, 198, 255, 0.34),
    0 0 18px rgba(57, 198, 255, 0.26);
  filter: brightness(1.03);
}

.material-link-dourado,
.btn-material-dourado {
  color: #11161d;
  background: linear-gradient(180deg, #f1d27a 0%, #d4af37 100%);
  box-shadow: 0 10px 26px rgba(212,175,55,0.22);
}

.material-link-dourado:hover,
.btn-material-dourado:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(212,175,55,0.28);
}

.btn-material-azul,
.btn-material-dourado {
  padding: 14px 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* =========================
   IDENTIDADE DOS CARDS
   ========================= */

.material-card-gratuito:hover {
  border-color: rgba(80, 180, 255, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(80,180,255,0.18),
    0 0 42px rgba(80,180,255,0.10);
}

.material-card-gratuito:hover .material-card-body h3 {
  color: #8fdcff;
}

.material-card-premium:hover {
  border-color: rgba(224, 177, 91, 0.34);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.40),
    0 0 24px rgba(224,177,91,0.16),
    0 0 42px rgba(224,177,91,0.10);
}

.material-card-premium:hover .material-card-body h3 {
  color: #f0cf86;
}

/* =========================
   CTA FINAL
   ========================= */

.materiais-cta-section {
  padding: 8px 20px 100px;
  background: transparent;
}

.materiais-cta-box {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  padding: 42px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(14, 40, 68, 0.96)),
    radial-gradient(circle at top, rgba(57, 198, 255, 0.10), transparent 60%);
  border: 1px solid rgba(57, 198, 255, 0.18);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(57, 198, 255, 0.10);
}

.materiais-cta-box h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.materiais-cta-box p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: rgba(232,238,245,0.84);
  line-height: 1.8;
  font-size: 1rem;
}

.materiais-cta-actions {
  display: flex;
  justify-content: center;   /* CENTRALIZA */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.materiais-cta-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.materiais-cta-box-clean {
  text-align: center; /* CENTRALIZA TEXTO E ELEMENTOS */
}

.materiais-cta-actions {
  display: flex;
  justify-content: center; /* CENTRALIZA OS BOTÕES */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =========================
   RESPONSIVIDADE
   ========================= */

@media (max-width: 1180px) {
  .material-destaque-card {
    grid-template-columns: 1fr;
  }

  .material-destaque-image {
    min-height: 320px;
  }
}

@media (max-width: 1100px) {
  .materiais-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .material-card-image {
    height: 235px;
  }
}

@media (max-width: 768px) {
  .hero-materiais {
    min-height: 560px;
    justify-content: center;
    padding: 90px 20px 70px;
    background-position: center center;
  }

  .hero-biblioteca-content {
    margin-left: 0;
    text-align: center;
    transform: translateY(18px);
  }

  .materiais-intro-section {
    padding: 70px 20px 24px;
  }

  .materiais-destaque-section {
    padding: 18px 20px 34px;
  }

  .material-destaque-content {
    padding: 28px 20px 26px;
  }

  .material-destaque-image {
    min-height: 250px;
  }

  .materiais-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .material-card-image {
    height: 220px;
  }

  .material-card-body {
    padding: 22px 18px 24px;
  }

  .materiais-cta-box {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .materiais-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .material-link,
  .btn-material-azul,
  .btn-material-dourado {
    width: 100%;
  }

  .materiais-cta-section {
    padding: 8px 20px 80px;
  }
}

/* =========================================================
   AJUSTES PREMIUM 2026 — PÁGINA MATERIAIS
   COLAR NO FINAL DA CSS ATUAL
   ========================================================= */

/* =========================
   BLOCO GRATUITO COMPACTO
   ========================= */

.materiais-free-section {
  padding: 18px 20px 34px;
  background: transparent;
}

.material-free-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(95, 170, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(12, 22, 38, 0.96), rgba(8, 15, 27, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(57, 198, 255, 0.08);
}

.material-free-image {
  position: relative;
  min-height: 100%;
  background: linear-gradient(180deg, #0b1220 0%, #14243b 100%);
  overflow: hidden;
}

.material-free-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 100%),
    radial-gradient(circle at 78% 18%, rgba(95,185,255,0.14), transparent 30%);
  pointer-events: none;
}

.material-free-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.material-free-content {
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.material-free-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.material-free-content p {
  margin: 0 0 18px;
  color: rgba(232, 238, 245, 0.84);
  font-size: 0.98rem;
  line-height: 1.8;
}

.material-free-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.material-free-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(95,170,255,0.10);
  color: rgba(232,238,245,0.82);
  font-size: 0.86rem;
  line-height: 1;
}

.material-free-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.material-free-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.material-free-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(95, 170, 255, 0.16);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 0.96rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.material-free-form input::placeholder {
  color: rgba(232,238,245,0.56);
}

.material-free-form input:focus {
  border-color: rgba(120, 210, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(57,198,255,0.10);
  background: rgba(255,255,255,0.07);
}

.material-free-note {
  margin: -2px 0 0;
  color: rgba(232,238,245,0.70);
  font-size: 0.9rem;
  line-height: 1.6;
}

.material-free-status {
  min-height: 20px;
  color: #8fdcff;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* =========================
   PREMIUM / EM BREVE
   ========================= */

.material-card-soon {
  opacity: 0.94;
}

.material-badge-soon {
  color: #f0cf86;
  background: rgba(224, 177, 91, 0.10);
  border: 1px solid rgba(224, 177, 91, 0.22);
  box-shadow: 0 0 18px rgba(224, 177, 91, 0.06);
}

.material-link-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(232,238,245,0.72);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.material-card-soon:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 177, 91, 0.20);
  box-shadow:
    0 18px 38px rgba(0,0,0,0.34),
    0 0 14px rgba(224,177,91,0.08);
}

.material-card-soon:hover .material-card-body h3 {
  color: #f0cf86;
}

/* =========================
   CTA FINAL MAIS LIMPO
   ========================= */

.materiais-cta-section-clean {
  padding-top: 6px;
}

.materiais-cta-box-clean {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 8px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.materiais-cta-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fdcff;
  background: rgba(57, 198, 255, 0.10);
  border: 1px solid rgba(57, 198, 255, 0.18);
}

/* =========================
   AJUSTES FINOS DE HARMONIA
   ========================= */

.materiais-premium-section .materiais-section-header {
  margin-bottom: 40px;
}

.materiais-premium-section .materiais-grid {
  gap: 28px;
}

.material-card-premium-destaque {
  border-color: rgba(224, 177, 91, 0.24);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.34),
    0 0 16px rgba(224,177,91,0.08);
}

/* =========================
   RESPONSIVIDADE DOS NOVOS BLOCOS
   ========================= */

@media (max-width: 1180px) {
  .material-free-card {
    grid-template-columns: 1fr;
  }

  .material-free-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .materiais-free-section {
    padding: 14px 20px 28px;
  }

  .material-free-image {
    min-height: 240px;
  }

  .material-free-content {
    padding: 26px 20px 24px;
  }

  .material-free-form-grid {
    grid-template-columns: 1fr;
  }

  .materiais-cta-box-clean {
    padding: 30px 20px;
    border-radius: 18px;
  }
}

/* =========================
   AJUSTE — ÚLTIMO CARD CENTRALIZADO
   ========================= */

.materiais-premium-section .materiais-grid > .material-card-soon:last-child {
  grid-column: 1 / -1;
  max-width: 620px;
  width: 100%;
  justify-self: center;
}

/* ==================================
   MICROCIRURGIA VENDAS
================================== */

.material-top-seller {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f1d27a,#d4af37);
  color: #11161d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(212,175,55,.22);
}

.material-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}

.material-price-label {
  color: rgba(232,238,245,.72);
  font-size: .86rem;
  font-weight: 600;
}

.material-price {
  color: #f1d27a;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.material-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.material-actions-grid .material-link {
  width: 100%;
  padding: 12px 14px;
  font-size: .92rem;
}

@media (max-width: 768px) {
  .material-actions-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   POPUP PIX
=============================== */

.pix-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.pix-modal.active {
  display: flex;
}

.pix-box {
  width: 100%;
  max-width: 520px;
  background:
    linear-gradient(145deg,#08172e,#0c2648);
  border: 1px solid rgba(95,170,255,.18);
  border-radius: 24px;
  padding: 34px 26px 26px;
  position: relative;
  box-shadow:
    0 20px 50px rgba(0,0,0,.42),
    0 0 24px rgba(57,198,255,.12);
  text-align: center;
}

.pix-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.pix-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: #8fdcff;
  background: rgba(57,198,255,.10);
}

.pix-box h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.5rem;
}

.pix-price {
  font-size: 2rem;
  font-weight: 800;
  color: #f1d27a;
  margin-bottom: 18px;
}

.pix-info {
  color: rgba(232,238,245,.84);
  margin-bottom: 10px;
  font-size: .96rem;
}

.pix-chave-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 20px 0;
}

.pix-chave-box input {
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.pix-chave-box button {
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg,#39c6ff,#7fe3ff);
  color: #071223;
}

.pix-msg {
  min-height: 22px;
  color: #8fdcff;
  font-size: .92rem;
  margin-bottom: 16px;
}

.pix-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pix-btn {
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.pix-btn-blue {
  background: linear-gradient(135deg,#39c6ff,#7fe3ff);
  color: #071223;
}

.pix-btn-gold {
  background: linear-gradient(180deg,#f1d27a,#d4af37);
  color: #11161d;
}

@media (max-width: 640px){
  .pix-actions {
    grid-template-columns: 1fr;
  }

  .pix-chave-box {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD EBOOK PAGO PREMIUM ===== */

.material-card-paid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  background: linear-gradient(135deg, #071a33 0%, #0b2a52 100%);
  border: 1px solid rgba(120, 190, 255, 0.18);
  border-radius: 22px;
  padding: 22px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(43, 122, 255, 0.12);
}

.material-card-paid__image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.material-card-paid__image img {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.35),
    0 0 16px rgba(43, 122, 255, 0.14);
}

.material-card-paid__content {
  color: #eef6ff;
}

.paid-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7b24c, #f2dd8a);
  color: #0b1d35;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.material-card-paid__content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}

.paid-subtitle {
  margin: 0 0 14px;
  color: #d9e9ff;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
}

.paid-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #eaf3ff;
}

.paid-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.paid-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}

.paid-price-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(101, 184, 255, 0.12);
  border: 1px solid rgba(101, 184, 255, 0.16);
  color: #9fd0ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.paid-price {
  color: #ffd76b;
  font-size: 1.9rem;
  font-weight: 900;
}

.paid-actions {
  margin-bottom: 16px;
}

.btn-paid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1ab667, #10894d);
  color: #fff;
  box-shadow: 0 10px 22px rgba(26, 182, 103, 0.22);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.pix-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(141, 196, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
}

.pix-label {
  display: block;
  margin-bottom: 8px;
  color: #8ec8ff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pix-key {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.pix-note {
  margin: 10px 0 0;
  color: #cfe3ff;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .material-card-paid {
    grid-template-columns: 1fr;
  }

  .material-card-paid__image img {
    max-width: 220px;
  }

  .material-card-paid__content h3 {
    font-size: 1.6rem;
  }
}

/* ===== CARD SPLIT PREMIUM ===== */
.material-card-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.material-card-split-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(7, 21, 42, 0.92), rgba(11, 39, 78, 0.88));
  border: 1px solid rgba(129, 194, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(34, 123, 255, 0.10);
  overflow: hidden;
}

.material-card-split-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.material-card-split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.material-card-split-body h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1.08;
}

.material-card-split-body p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.material-card-split .material-meta {
  margin-bottom: 16px;
}

.material-card-split .material-price-row {
  margin: 4px 0 18px;
}

.material-card-split .material-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
}

@media (max-width: 980px) {
  .material-card-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .material-card-split-image {
    min-height: 220px;
  }

  .material-card-split-image img {
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .material-card-split {
    padding: 18px;
  }

  .material-card-split .material-actions-grid {
    grid-template-columns: 1fr;
  }

  .material-card-split-image {
    padding: 10px;
    border-radius: 18px;
  }
}
/* FUNDO ESCURO DA JANELA */
.pix-modal-overlay,
.modal-overlay,
#pixModal {
  background: rgba(2, 10, 24, 0.82) !important;
  backdrop-filter: blur(6px);
}

/* CAIXA CENTRAL */
.pix-modal-box,
.modal-box,
.pix-popup,
#pixModal .modal-content {
  background: linear-gradient(145deg, rgba(8, 24, 48, 0.98), rgba(10, 37, 74, 0.98)) !important;
  border: 1px solid rgba(126, 190, 255, 0.18);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(48, 133, 255, 0.16);
  color: #eef6ff !important;
}

/* TÍTULO */
.pix-modal-box h3,
.modal-box h3,
.pix-popup h3,
#pixModal .modal-content h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* TEXTO */
.pix-modal-box p,
.modal-box p,
.pix-popup p,
#pixModal .modal-content p {
  color: #dcecff;
  line-height: 1.6;
}

/* CHAVE PIX */
.pix-key,
.chave-pix,
#pixModal .pix-key {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(141, 196, 255, 0.16);
  color: #ffd76b;
  font-weight: 800;
  font-size: 1rem;
  word-break: break-word;
}

/* BOTÃO FECHAR */
.pix-modal-box .fechar,
.modal-box .fechar,
.pix-popup .fechar,
#pixModal .fechar {
  background: linear-gradient(135deg, #123a70, #0f2f5a);
  color: #fff;
  border: 1px solid rgba(141, 196, 255, 0.18);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.pix-modal-box .fechar:hover,
.modal-box .fechar:hover,
.pix-popup .fechar:hover,
#pixModal .fechar:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #174884, #123968);
}

.materiais-combo-box {
  background: linear-gradient(135deg, #06152c, #0b2e5a);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 140, 255, 0.15);
}

.materiais-combo-highlights span,
.materiais-combo-list span {
  display: inline-block;
  margin: 6px 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 14px;
}

.materiais-combo-price {
  margin: 20px 0;
}

.combo-old-price {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 10px;
}

.combo-new-price {
  font-size: 26px;
  font-weight: bold;
  color: #00bfff;
}

.materiais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD 3 CENTRALIZADO */
.materiais-premium-section .materiais-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.materiais-premium-section .materiais-grid .material-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

/* COMBO - MODO CONVERSÃO MÁXIMA */
.materiais-combo-section {
  padding: 50px 0;
}

.materiais-combo-box {
  max-width: 1050px;
  margin: 0 auto;
  padding: 48px 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;

  background:
    radial-gradient(circle at top left, rgba(255, 42, 42, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 170, 40, 0.10), transparent 35%),
    linear-gradient(135deg, #070707, #160000 45%, #020202);

  border: 1px solid rgba(255, 70, 70, 0.32);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.42),
    0 0 35px rgba(160, 0, 0, 0.20);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* nuvem/glow embaixo */
.materiais-combo-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 72%;
  height: 80px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 0, 0, 0.28), transparent 70%);
  filter: blur(18px);
  opacity: 0.75;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* brilho superior */
.materiais-combo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.materiais-combo-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 90, 0.60);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 55px rgba(190, 0, 0, 0.36);
}

.materiais-combo-box:hover::before {
  transform: translateX(120%);
}

.materiais-combo-box:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1.12);
}

.materiais-combo-box h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  margin: 18px 0 14px;
}

.materiais-combo-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.65;
}

.materiais-combo-highlights,
.materiais-combo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 20px auto;
}

.materiais-combo-highlights span,
.materiais-combo-list span {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.materiais-combo-price {
  margin: 28px 0 24px;
}

.combo-old-price {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
  font-size: 17px;
  margin-bottom: 4px;
}

.combo-new-price {
  display: block;
  color: #ff3535;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 0 22px rgba(255, 0, 0, 0.35);
}

.materiais-combo-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* botão principal vermelho premium */
.materiais-combo-box .material-link-dourado {
  background: linear-gradient(135deg, #ff3b3b, #8b0000);
  color: #fff;
  border: 1px solid rgba(255, 120, 120, 0.45);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.25);
}

.materiais-combo-box .material-link-dourado:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(255, 0, 0, 0.45);
}

.materiais-combo-note {
  margin-top: 22px !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62) !important;
}

/* RESPONSIVO */
@media (max-width: 850px) {
  .materiais-premium-section .materiais-grid {
    grid-template-columns: 1fr;
  }

  .materiais-premium-section .materiais-grid .material-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .materiais-combo-box {
    padding: 38px 24px;
  }
}

/* =========================
   PÁGINA —   CLIENTES E GALERIA EM CONSTRUÇÃO
========================= */

  .section-placeholder{
    max-width: 900px;
    margin: 0 auto;
}

.placeholder-text{
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cfe6ff;
    opacity: 0.85;
}

/* =========================
   PÁGINA — CONTATOS E LOCALIZAÇÃO
========================= */

.contato-hero{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contato-hero img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    to right,
    rgba(10,15,28,0.65) 10%,
    rgba(10,15,28,0.35) 45%,
    rgba(10,15,28,0.55) 100%
);
    z-index: 1;
}

.contato-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    padding: 40px 7%;
}

.contato-acoes{
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-contato{
    max-width: 900px;
    margin: 0 auto;
}

.contato-texto{
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d8ecff;
}

.contato-acoes{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.contato-form-section {
  padding: 80px 20px;
}

.contato-container {
  max-width: 800px;
  margin: 0 auto;
}

.contato-form-box {
  background:
    linear-gradient(135deg, rgba(7,18,35,0.96), rgba(14,40,68,0.96)),
    radial-gradient(circle at top, rgba(57,198,255,0.10), transparent 60%);
  border: 1px solid rgba(57, 198, 255, 0.18);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.28),
    0 0 22px rgba(57,198,255,0.10);
}

.contato-form-box h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.contato-form-box p {
  color: rgba(230,238,248,0.85);
  margin-bottom: 25px;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #0f172a;
  color: #ffffff;
}

.contato-form textarea {
  min-height: 100px;
  resize: none;
}

.contato-form button {
  padding: 14px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(135deg, #39c6ff, #7fe3ff);
  color: #071223;
  box-shadow:
    0 10px 24px rgba(57,198,255,0.28),
    0 0 14px rgba(57,198,255,0.20);
  transition: 0.3s;
}

.contato-form button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(57,198,255,0.34),
    0 0 18px rgba(57,198,255,0.26);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  color: #d9e7f5;
  font-size: 0.95rem;
  font-weight: 600;
  padding-left: 2px;
}

/* =========================================================
   ARTIGOS INTERNOS — BLOCO LIMPO E CONSOLIDADO
   ========================================================= */

/* documento do artigo */
html.article-html,
body.article-body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.article-body {
  background:
    radial-gradient(circle at top, rgba(57, 198, 255, 0.08), transparent 26%),
    radial-gradient(circle at left center, rgba(10, 24, 44, 0.92), transparent 38%),
    radial-gradient(circle at right center, rgba(10, 24, 44, 0.92), transparent 38%),
    linear-gradient(180deg, #0a1220 0%, #10213a 42%, #0b1628 100%);
  color: #16304d;
}

body.article-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7, 18, 34, 0.82) 0%,
      rgba(7, 18, 34, 0.38) 10%,
      rgba(7, 18, 34, 0.00) 22%,
      rgba(7, 18, 34, 0.00) 78%,
      rgba(7, 18, 34, 0.38) 90%,
      rgba(7, 18, 34, 0.82) 100%
    );
  z-index: 0;
}

/* página do artigo */

body.article-body .article-page {
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* HERO / TÍTULO */
body.article-body .article-hero {
  position: relative;
  padding: 110px 0 54px;
  background: transparent;
  overflow: visible;
}

body.article-body .article-hero::before {
  display: none;
}

body.article-body .article-hero-overlay {
  display: none;
}

body.article-body .article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* card do topo */
body.article-body .article-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(13, 34, 60, 0.96), rgba(24, 57, 96, 0.92));
  box-shadow:
    0 24px 54px rgba(14, 31, 56, 0.18),
    0 0 0 1px rgba(120, 175, 255, 0.08) inset;
  z-index: -1;
}

body.article-body .article-hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(122, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 215, 120, 0.08), transparent 22%);
  pointer-events: none;
  z-index: -1;
}

body.article-body .article-category {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(123, 182, 255, 0.14);
  border: 1px solid rgba(140, 190, 255, 0.25);
  color: #d7eaff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.article-body .article-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  padding: 42px 34px 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  color: #ffffff;
}

body.article-body .article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 22px;
  color: #b7cde7;
  font-size: 0.95rem;
  padding: 0 34px;
}

body.article-body .article-lead {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 34px 40px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #dce9f8;
}

body.article-body .article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 22px;
  color: #c8ddf8;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

body.article-body .article-back-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

/* CONTEÚDO */
body.article-body .article-content-section {
  padding: 24px 0 52px;
  position: relative;
  z-index: 2;
}

body.article-body .article-layout {
  display: block;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

body.article-body .article-content {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 79, 138, 0.10);
  border-radius: 28px;
  padding: 42px 38px;
  box-shadow:
    0 18px 40px rgba(16, 42, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

body.article-body .article-content p {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #20364f;
}

body.article-body .article-content h2 {
  margin: 42px 0 16px;
  font-size: 1.7rem;
  line-height: 1.25;
  color: #102945;
}

body.article-body .article-content h3 {
  margin: 28px 0 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #1d4167;
}

body.article-body .article-content em,
body.article-body .article-content strong {
  color: #14385f;
}

body.article-body .article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 22px auto;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(16, 42, 76, 0.10);
}

body.article-body .article-figure {
  margin: 28px 0 32px;
}

body.article-body .article-figure img {
  margin: 0 auto;
}

body.article-body .article-figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a6f88;
  font-style: italic;
}

body.article-body .article-list {
  margin: 0 0 24px 0;
  padding-left: 22px;
  color: #20364f;
}

body.article-body .article-list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

body.article-body .article-content table,
body.article-body .article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  background: rgba(255,255,255,0.72);
  overflow: hidden;
  border-radius: 16px;
}

body.article-body .article-content th,
body.article-body .article-content td,
body.article-body .article-table th,
body.article-body .article-table td {
  padding: 12px 14px;
  border: 1px solid rgba(31, 79, 138, 0.14);
  text-align: left;
  color: #20364f;
}

body.article-body .article-content thead,
body.article-body .article-table thead {
  background: rgba(47,109,179,0.10);
}

body.article-body .article-table-wrapper {
  overflow-x: auto;
  margin: 18px 0 24px;
}

body.article-body .article-note {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #45607d;
}

body.article-body .article-highlight-box {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid #2f6db3;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,109,179,0.08), rgba(255,255,255,0.75));
  color: #18324f;
  box-shadow: 0 12px 26px rgba(30, 69, 118, 0.08);
}

body.article-body .article-quote {
  margin: 30px 0;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(22, 48, 77, 0.05);
  border: 1px solid rgba(22, 48, 77, 0.08);
  color: #1d3957;
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.8;
}

/* sem sidebar */
body.article-body .article-sidebar {
  display: none !important;
}

/* remove CTA escuro separado, se existir */
body.article-body .article-cta-section,
body.article-body .article-cta-box {
  display: none !important;
}

/* ação final do artigo */
body.article-body .article-final-actions {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 79, 138, 0.12);
  text-align: center;
}

body.article-body .article-final-text {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #1b4067;
}

body.article-body .article-final-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
  transform: none;
}

body.article-body .article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.28s ease;
}

body.article-body .article-btn-primary {
  background: linear-gradient(135deg, #7cc0ff, #4a8fdd);
  color: #0c1f36;
  box-shadow: 0 14px 28px rgba(76, 143, 221, 0.24);
}

body.article-body .article-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(76, 143, 221, 0.32);
}

body.article-body .article-btn-secondary {
  display: none !important;
}

/* responsivo */
@media (max-width: 980px) {
  body.article-body .article-layout {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body.article-body .article-hero {
    padding: 98px 0 42px;
  }

  body.article-body .article-hero-content::before,
  body.article-body .article-hero-content::after {
    border-radius: 22px;
  }

  body.article-body .article-hero h1 {
    padding: 34px 22px 0;
    font-size: 2rem;
  }

  body.article-body .article-meta {
    padding: 0 22px;
  }

  body.article-body .article-lead {
    padding: 0 22px 32px;
  }

  body.article-body .article-content {
    padding: 30px 22px;
    border-radius: 22px;
  }

  body.article-body .article-content p {
    font-size: 1rem;
    line-height: 1.85;
  }

  body.article-body .article-final-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  body.article-body .article-btn {
    width: 100%;
  }
}

.blog-article-section {
  padding: 60px 20px;
}

.blog-article-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(20, 30, 55, 0.85);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.08);
}

.blog-article-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #e6ecff;
}

.blog-article-header p {
  color: #9fb3ff;
}

.blog-article-content {
  margin-top: 30px;
  color: #cfd8ff;
}

.blog-article-content h2 {
  margin-top: 30px;
  color: #7aa2ff;
}

.blog-article-content ul {
  margin: 15px 0 20px 20px;
}

.blog-article-footer {
  margin-top: 40px;
  text-align: center;
}

/* =========================
   FOOTER GLOBAL SPA
   ========================= */

.site-footer {
  width: 100%;
  padding: 18px 0 22px;
  text-align: center;
  background: linear-gradient(180deg, #0b1220 0%, #0a0f1c 100%);
  border-top: 1px solid rgba(57, 198, 255, 0.14);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 20;
}

.site-footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(230, 240, 255, 0.72);
  letter-spacing: 0.3px;
}

.pdf-premium-section {
  display: flex;
  justify-content: center;
  padding: 72px 20px;
}

.pdf-premium-box {
  width: 100%;
  max-width: 780px;
  padding: 42px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(14, 40, 68, 0.96)),
    radial-gradient(circle at top, rgba(57, 198, 255, 0.12), transparent 60%);
  border: 1px solid rgba(57, 198, 255, 0.18);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.30),
    0 0 24px rgba(57, 198, 255, 0.10);
  text-align: center;
}

.pdf-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(57, 198, 255, 0.12);
  border: 1px solid rgba(57, 198, 255, 0.20);
  color: #8fe7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdf-premium-box h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.pdf-premium-box p {
  color: rgba(230, 238, 248, 0.86);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 1rem;
}

.pdf-premium-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.pdf-premium-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdf-premium-form label {
  color: #d9e7f5;
  font-weight: 600;
  font-size: 0.95rem;
}

.pdf-premium-form input,
.pdf-premium-form select {
  padding: 14px 14px;
  border: 1px solid rgba(57, 198, 255, 0.10);
  border-radius: 12px;
  background: #0b1628;
  color: #ffffff;
  outline: none;
  font-size: 0.98rem;
}

.pdf-premium-form input:focus,
.pdf-premium-form select:focus {
  border-color: rgba(57, 198, 255, 0.40);
  box-shadow: 0 0 0 3px rgba(57, 198, 255, 0.10);
}

.pdf-premium-form button {
  margin-top: 8px;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #39c6ff, #7fe3ff);
  color: #071223;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(57, 198, 255, 0.26),
    0 0 16px rgba(57, 198, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.pdf-premium-form button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(57, 198, 255, 0.32),
    0 0 20px rgba(57, 198, 255, 0.24);
  filter: brightness(1.03);
}

@media (max-width: 768px) {
  .pdf-premium-section {
    padding: 54px 16px;
  }

  .pdf-premium-box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .pdf-premium-box h2 {
    font-size: 1.55rem;
  }

  .pdf-premium-box p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .pdf-premium-form input,
  .pdf-premium-form select {
    padding: 13px 12px;
  }

  .pdf-premium-form button {
    width: 100%;
  }
}

.hero-biblioteca .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-biblioteca .hero-content p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* =========================================================
   PAGAMENTO PREMIUM — HTML COMPLETO
   ========================================================= */

.pagamento-page {
  min-height: 100vh;
}

.pagamento-hero-full {
  position: relative;
  padding: 120px 0 62px;
  background:
    radial-gradient(circle at top left, rgba(224, 177, 91, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(57, 198, 255, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(8, 20, 42, 0.98), rgba(12, 28, 54, 0.94));
  border-bottom: 1px solid rgba(224, 177, 91, 0.14);
}

.pagamento-hero-full-overlay {
  display: none;
}

.pagamento-hero-full-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.pagamento-page-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0cf86;
  background: rgba(224, 177, 91, 0.10);
  border: 1px solid rgba(224, 177, 91, 0.22);
  box-shadow: 0 0 18px rgba(224, 177, 91, 0.08);
}

.pagamento-hero-full h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  color: #fdfdfd;
}

.pagamento-content {
  background: rgba(255, 255, 255, 0.84);
}

.pagamento-product-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  margin: 28px 0 36px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(18, 43, 74, 0.06), rgba(224, 177, 91, 0.05));
  border: 1px solid rgba(31, 79, 138, 0.10);
}

.pagamento-product-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16, 42, 76, 0.10);
}

.pagamento-product-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 177, 91, 0.14);
  border: 1px solid rgba(224, 177, 91, 0.22);
  color: #8a6212;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pagamento-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.pagamento-info-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(31, 79, 138, 0.10);
}

.pagamento-info-item strong {
  display: block;
  margin-bottom: 6px;
  color: #14385f;
  font-size: 0.95rem;
}

.pagamento-info-item span {
  display: block;
  color: #36526f;
  line-height: 1.65;
  font-size: 0.95rem;
}

.pagamento-preco-card {
  margin: 24px 0 30px;
  padding: 24px 22px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 43, 74, 0.08), rgba(224, 177, 91, 0.08));
  border: 1px solid rgba(224, 177, 91, 0.18);
  text-align: center;
  box-shadow: 0 12px 24px rgba(16, 42, 76, 0.06);
}

.pagamento-preco-label {
  display: block;
  margin-bottom: 10px;
  color: #6f87a1;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pagamento-preco-valor {
  color: #9b6d12;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.pagamento-preco-texto {
  margin: 0;
  color: #35506e;
}

.pagamento-canais-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 40px;
}

.pagamento-canal-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(31, 79, 138, 0.10);
  box-shadow: 0 10px 24px rgba(16, 42, 76, 0.06);
}

.pagamento-canal-card-pix {
  border: 1px solid rgba(224, 177, 91, 0.22);
  box-shadow:
    0 12px 26px rgba(16, 42, 76, 0.08),
    0 0 0 1px rgba(224, 177, 91, 0.04) inset;
}

.pagamento-canal-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(224, 177, 91, 0.14);
  border: 1px solid rgba(224, 177, 91, 0.22);
  color: #8a6212;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagamento-canal-badge-soft {
  background: rgba(47, 109, 179, 0.10);
  border: 1px solid rgba(47, 109, 179, 0.16);
  color: #255487;
}

.pagamento-chave-box {
  margin: 14px 0 16px;
}

.pagamento-chave-label {
  display: block;
  margin-bottom: 8px;
  color: #5d7895;
  font-size: 0.80rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagamento-chave {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f3f8fd;
  border: 1px solid rgba(31, 79, 138, 0.10);
  color: #17395a;
  font-size: 0.94rem;
  word-break: break-word;
}

.pagamento-observacao {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5d7790;
}

.pagamento-btn-disabled {
  opacity: 0.88;
  pointer-events: none;
}

.pagamento-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 10px;
}

.pagamento-beneficio-item {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(31, 79, 138, 0.10);
}

.pagamento-beneficio-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #183c61;
  font-size: 1.08rem;
}

.pagamento-beneficio-item p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .pagamento-product-box {
    grid-template-columns: 1fr;
  }

  .pagamento-canais-grid,
  .pagamento-beneficios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pagamento-hero-full {
    padding: 102px 0 46px;
  }

  .pagamento-product-box,
  .pagamento-preco-card,
  .pagamento-canal-card,
  .pagamento-beneficio-item {
    padding: 20px 18px;
  }
}
