@charset "UTF-8";
:root {
  --white-clean: #ebebebe1;
  --glass-bg: rgba(0, 0, 0, 0.192);
  --glass-border: rgba(255, 255, 255, 0.055);
  --glass-blur: blur(15px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Substitua pelo nome exato da sua fonte Adobe Typekit */
  --fonte-principal: 'roc-grotesk', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte-principal);
}

html {
  background: #000000;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  background: transparent;
  padding-top: 0.1px;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}

/* --- TÍTULOS GERAIS --- */
h1,
h2 {
  font-weight: 900 !important;
  font-style: italic !important;
}

/* --- BARRA DE ROLAGEM --- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.267);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
  border: 3px solid rgba(0, 0, 0, 0.137);
}

/* --- FUNDOS ESPECÍFICOS POR PÁGINA --- */
.bg-links,
.bg-blog,
.bg-post,
.bg-portfolio,
.bg-ebooks {
  position: relative;
  background: transparent;
}
.bg-links::after,
.bg-blog::after,
.bg-post::after,
.bg-portfolio::after,
.bg-ebooks::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, transparent, #000000);
  z-index: 0;
  pointer-events: none;
}

.bg-blog::before,
.bg-post::before,
.bg-ebooks::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

.bg-blog::before {
  background-image: url("/img/blog/bk/bk-blog-vitrine.jpg");
  background-color: #000;
}

.bg-post::before {
  background-image: url("/img/blog/bk/6ac3bc0f-1285-44a9-89cf-72ee52d4d148.jpg");
  background-color: #000;
}

.bg-ebooks::before {
  background-image: url("img/e-books/368077.jpg");
  background-color: #000;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
  pointer-events: none;
}

/* --- LINHA DO TEMPO LATERAL (SCROLL SPY) --- */
.side-timeline {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.side-timeline ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.side-timeline a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 15px;
}
.side-timeline a::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.side-timeline a:hover, .side-timeline a.active {
  color: #fff;
}
.side-timeline a:hover::before, .side-timeline a.active::before {
  width: 40px;
  background: #fff;
}

/* --- LIGHTBOX --- */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  justify-content: center;
  align-items: center;
}
.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

#lightbox-img,
#lightbox-video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

#lightbox-video {
  display: none;
}

/* Setas e Botão Fechar */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 20px;
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.lightbox-close {
  top: 20px;
  right: 30px;
  font-size: 36px;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

/* --- CURSOR CUSTOMIZADO --- */
@media (min-width: 1025px) {
  body {
    cursor: none !important;
  }
  a,
  button,
  input,
  textarea,
  select,
  .projeto-card,
  .link-button,
  .blog-card,
  .mini-card,
  .post-card,
  .cria-pe-3d {
    cursor: none !important;
  }
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-cursor.hover-active {
    width: 65px;
    height: 65px;
    background: transparent;
    border: 1px solid #fff;
  }
  .custom-cursor.hover-active .cursor-text {
    opacity: 1;
  }
}
/* --- ANIMAÇÕES --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --- BOTÃO RSS --- */
.rss-floating-btn {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background: rgba(255, 102, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
  z-index: 2005;
  transition: 0.3s ease;
}
.rss-floating-btn:hover {
  background: rgb(255, 102, 0);
  transform: translateY(-5px) scale(1.05);
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.wa-floating-btn {
  position: fixed;
  bottom: 30px;
  right: max(30px, 50vw - 660px + 30px);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.wa-floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .wa-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}
.main-header {
  position: fixed;
  top: 24px;
  /* Descola do topo */
  left: 50%;
  /* Empurra para o meio... */
  transform: translateX(-50%);
  /* ...e centraliza perfeitamente */
  width: calc(100% - 48px);
  /* Descola das laterais (24px de cada lado) */
  max-width: 1320px;
  /* Mantém o tamanho máximo no PC */
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Borda em todo o contorno */
  border-radius: 100px;
  /* O segredo para o formato arredondado de pílula */
}

.container-header {
  width: 100%;
  margin: 0 auto;
  padding: 14px 32px;
  /* Ajustei um pouco o preenchimento para a pílula não ficar muito "gorda" */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* O resto do seu código (.logo, etc.) continua exatamente igual para baixo... */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 2002;
}
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 38px;
}

.menu-toggle,
.menu-close {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.menu-toggle i,
.menu-close i {
  font-size: 24px;
  line-height: 1;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2002;
}

.menu-close {
  display: none !important;
}

/* NAVEGAÇÃO CORRIGIDA (HORIZONTAL E COM PÍLULA) */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* Espaço entre os links */
  margin: 0;
  padding: 0;
}
.main-nav li {
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  /* Preenchimento para criar a pílula */
  border-radius: 50px;
  /* Bordas 100% arredondadas */
  transition: all 0.3s ease;
}
.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.main-nav a {
  /* EFEITO DE PÁGINA ATIVA (CÍRCULO/PÍLULA) */
}
.main-nav a.btn-blog-active {
  color: #000;
  background: #fff;
  font-weight: 700;
}

.mobile-socials {
  display: none !important;
}

.social-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.social-header a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}
.social-header a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.social-header a i {
  font-size: 18px;
}

/* --- 5. BIO & PODCAST --- */
.bio-section {
  width: 100%;
  min-height: 150vh;
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  right: 0;
  /* Voltou para o lado direito! */
  width: 45vw;
  /* Voltou a ter apenas metade da tela! */
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero-video-container video {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* Voltou a ter a máscara que apaga suavemente para a esquerda */
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.bio-content {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  position: sticky;
  top: 30vh;
  z-index: 2;
}
.bio-content h1 {
  max-width: 650px;
  font-size: 38px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
  text-align: left !important;
  text-shadow: none !important;
}
.bio-content p {
  max-width: 550px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 500;
  text-align: left !important;
}

.podcast-section {
  width: 100%;
  max-width: 1200px;
  margin: -35vh auto 80px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.podcast-container {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
}
.podcast-container .info-card p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.spotify-embed iframe {
  display: block;
  filter: grayscale(0.1) contrast(1.1);
}

/* --- 6. SKILLS MARQUEE --- */
.marquee-wrapper.top-marquee {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.skills-marquee-container {
  width: 100%;
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  z-index: 10;
}

.skill-item,
.dot {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
}

.skills-marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.bg-blog .marquee-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  margin-top: 0 !important;
}

.bg-blog .skills-marquee-container {
  width: 100%;
  margin-bottom: 0 !important;
  border-bottom: none;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --- 7. PORTFÓLIO --- */
.portfolio-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

.projeto-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, filter 0.4s;
  position: relative;
  z-index: 1;
}
.projeto-card:hover {
  z-index: 50;
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}
.projeto-card:hover .capa-container img {
  transform: scale(1.05);
}
.projeto-card:hover .hover-overlay {
  opacity: 1;
}
.projeto-card:hover .hover-overlay span {
  transform: translateY(0);
}

.capa-container {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.capa-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease, opacity 0.8s ease;
}

.lazy-blur {
  filter: blur(15px);
  opacity: 0;
  transform: scale(1.1);
}

.lazy-blur.loaded {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.hover-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@supports selector(:has(*)) {
  .portfolio-grid:has(.projeto-card:hover) .projeto-card:not(:hover) {
    transform: scale(0.96);
    opacity: 0.6;
  }
}
.info-card {
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: none;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.info-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.category-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: auto;
  width: max-content;
}

/* ==========================================
   PÁGINA DE LINKS (LINKTREE)
========================================== */
.home-container {
  width: 100%;
  max-width: 600px;
  margin: 80px auto 40px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}
.home-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: none !important;
  color: #fff;
  width: 100%;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 25px;
  border: none;
  outline: 4px solid rgba(255, 255, 255, 0.2);
  outline-offset: 6px;
}

.links-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-button,
.post-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
}
.link-button:hover,
.post-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.link-button i,
.post-card i {
  margin-right: 10px;
  font-size: 20px;
}

.recent-posts-area {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.post-card {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  height: auto;
}
.post-card .post-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
  border-bottom: 1px solid var(--glass-border);
  background: transparent;
}
.post-card .post-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* --- 8. SECÇÃO OURO NO CRIA PE --- */
.cria-pe-section {
  width: 100%;
  max-width: 1050px;
  margin: 60px auto 100px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.cria-pe-container {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 400px;
}

.cria-pe-3d {
  width: 40%;
  height: 350px;
  min-height: 350px;
  flex-shrink: 0;
  position: relative;
  cursor: grab;
  animation: float3D 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cria-pe-3d model-viewer {
  width: 100%;
  height: 100%;
  background-color: transparent;
  outline: none;
}
.cria-pe-3d:active {
  cursor: grabbing;
}

@keyframes float3D {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.cria-pe-content {
  width: 60%;
}
.cria-pe-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: left !important;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2) !important;
}

.typewriter-container p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: left !important;
  min-height: 150px;
  word-wrap: break-word;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 18px;
  background-color: #fff;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.cria-pe-bastidores {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  overflow: hidden;
}

.cria-pe-swiper {
  width: 100%;
  padding: 20px 0;
}
.cria-pe-swiper .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  cursor: grab;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cria-pe-swiper .swiper-slide:active {
  cursor: grabbing;
}
.cria-pe-swiper .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.cria-pe-swiper img {
  width: 100%;
  height: 250px;
  object-fit: cover !important;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.cria-pe-videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
}

.vertical-video {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9/16;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  flex-shrink: 0;
}
.vertical-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  pointer-events: none;
}

.video-custom-cover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 5;
  cursor: pointer;
  transition: var(--transition);
}
.video-custom-cover i {
  color: transparent;
  -webkit-text-stroke: 2px #ffd700;
  font-size: 26px;
  width: 75px;
  height: 75px;
  border: 2px solid #ffd700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
  animation: pulsePlayBtn 2s infinite ease-in-out;
}
.video-custom-cover:hover i {
  background: rgba(255, 215, 0, 0.15);
}

.video-status-text {
  color: #ffd700;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes pulsePlayBtn {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
/* --- 9. VIDEOCASES --- */
.videocase-section {
  width: 100%;
  max-width: 1050px;
  margin: 80px auto 120px;
  padding: 0 40px;
  transition: max-width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: max-width;
  position: relative;
  z-index: 10;
}
.videocase-section + .videocase-section {
  margin-top: -60px;
}
.videocase-section.theater-mode {
  max-width: 1400px;
}
.videocase-section.theater-mode .videocase-container {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.videocase-container {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.award-tag {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.videocase-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-align: left !important;
}
.videocase-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 850px;
  text-align: left !important;
}

.vimeo-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  width: 100%;
}
.vimeo-wrapper.cinematic {
  padding-bottom: 41.66%;
}

/* ==========================================
   10. E-BOOKS
========================================== */
.page-padding {
  padding-top: 140px;
}

.page-header {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 800px;
  padding: 0 20px;
}
.page-header h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ebook-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.ebook-card:hover .ebook-cover img {
  transform: scale(1.05);
}
.ebook-card .ebook-cover {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #111;
}
.ebook-card .ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ebook-card .ebook-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ebook-card .ebook-info .tag {
  align-self: flex-start;
  background: rgba(255, 102, 0, 0.15);
  color: #ff6600;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.ebook-card .ebook-info h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.ebook-card .ebook-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}
.ebook-card .ebook-actions {
  display: flex;
  gap: 15px;
}
.ebook-card .ebook-actions a {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.ebook-card .ebook-actions .btn-primary {
  background: #ff6600;
  color: #fff;
}
.ebook-card .ebook-actions .btn-primary:hover {
  background: #e65c00;
  transform: scale(1.02);
}
.ebook-card .ebook-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ebook-card .ebook-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ==========================================
   11. BLOG E PÁGINA DE POST
========================================== */
.blog-container {
  width: 100%;
  max-width: 900px;
  margin: 140px auto 60px;
  padding: 0 20px 80px;
  position: relative;
  z-index: 10;
}
.blog-container h1,
.blog-container > p {
  position: relative;
  z-index: 10;
  margin-top: 10px;
  text-shadow: none !important;
}
.blog-container h1 {
  font-size: 40px;
  margin-bottom: 5px;
  color: #ffffff;
  text-align: center !important;
}
.blog-container > p {
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  text-align: center !important;
}

.blog-swiper {
  width: 100%;
  height: 70vh;
  padding: 6px 0;
  margin-top: 5px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}
.blog-swiper .swiper-slide {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  transform: scale(0.92);
  height: auto;
}
.blog-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.blog-card {
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  text-decoration: none;
  margin: 0 auto;
}
.blog-card-img {
  width: 200px;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}
.blog-card-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}
.blog-card-text p {
  opacity: 1;
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}
.blog-card-text .read-more-text {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  white-space: nowrap;
}

/* --- ESTILO DE LEITURA DO POST --- */
.post-leitura {
  background: var(--white-clean) !important;
  color: #111 !important;
  padding: 80px 100px;
  border-radius: 24px;
  width: 100%;
  max-width: 850px;
  margin: 140px auto 60px;
  position: relative;
  z-index: 10;
}
.post-leitura,
.post-leitura h1,
.post-leitura p,
.post-leitura span,
.post-leitura div,
.post-leitura strong,
.post-leitura em {
  text-shadow: none !important;
  box-shadow: none !important;
}
.post-leitura .post-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #111 !important;
  margin-bottom: 8px;
  text-align: left;
}
.post-leitura .post-date {
  color: #666 !important;
  font-size: 15px;
  margin-bottom: 45px;
  display: block;
}
.post-leitura .post-capa img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 45px;
}
.post-leitura .post-conteudo {
  font-size: 19px;
  line-height: 1.8;
  color: #222 !important;
  font-weight: 500;
}

/* --- CARDS RECENTES (Fim do Post) --- */
.recent-mini-cards {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.recent-posts-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.mini-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.mini-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 230px;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition);
}
.mini-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.85) !important;
}
.mini-card img {
  width: 100%;
  height: 250px !important;
  /* ALTURA DA IMAGEM PRIORIZADA */
  object-fit: cover;
}
.mini-card div {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mini-card h4 {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
  text-align: left;
  font-size: 16px !important;
  line-height: 1.4;
  margin-bottom: 0;
}
.mini-card p {
  display: none !important;
}
.mini-card {
  /* APENAS O TÍTULO APARECE AGORA */
}

/* ==========================================
   ESTILO DE LEITURA DO POST (Página Interna)
========================================== */
.post-leitura {
  background: var(--white-clean) !important;
  color: #111 !important;
  padding: 80px 100px;
  border-radius: 24px;
  width: 100%;
  max-width: 850px;
  margin: 140px auto 60px;
  position: relative;
  z-index: 10;
}
.post-leitura,
.post-leitura h1,
.post-leitura p,
.post-leitura span,
.post-leitura div,
.post-leitura strong,
.post-leitura em {
  text-shadow: none !important;
  box-shadow: none !important;
}
.post-leitura .post-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #111 !important;
  margin-bottom: 8px;
  text-align: left;
}
.post-leitura .post-date {
  color: #666 !important;
  font-size: 15px;
  margin-bottom: 45px;
  display: block;
}
.post-leitura .post-capa img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  margin-bottom: 45px;
}
.post-leitura .post-conteudo {
  font-size: 19px;
  line-height: 1.8;
  color: #222 !important;
  font-weight: 500;
}

/* --- CARDS RECENTES (Fim do Post) --- */
.recent-mini-cards {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.recent-posts-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Aqui está a caixa que segura os 3 cards */
.mini-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.mini-card {
  flex: 1 1 calc(33.333% - 20px);
  /* Força a ocupar exatamente 1/3 do espaço */
  min-width: 230px;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  /* Imagem em cima, texto em baixo */
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition);
}
.mini-card:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.85) !important;
}
.mini-card img {
  width: 100%;
  height: 250px !important;
  object-fit: cover;
}
.mini-card div {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mini-card h4 {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
  text-align: left;
  font-size: 16px !important;
  line-height: 1.4;
  margin-bottom: 8px;
}
.mini-card p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 1. TELA DE LOGIN */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login-box {
  width: 100%;
  max-width: 450px;
  text-align: center;
  padding: 50px 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(10, 10, 10, 0.4) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  backdrop-filter: blur(25px) !important;
  border-radius: 24px;
}

.login-logo {
  height: 35px;
  margin-bottom: 20px;
}

.titulo-area {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.cliente-nome-login {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 800;
}

.login-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.4;
}

.input-glass {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
  color: #fff !important;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  outline: none;
  transition: var(--transition);
}
.input-glass:focus {
  border-color: #ffd700 !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.btn-primary-glass {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15) !important;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-glass:hover {
  background: #fff !important;
  color: #000 !important;
  transform: scale(1.02);
}

/* 2. CABEÇALHO PROPOSTA */
.proposta-header {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.proposta-header .logo-header {
  height: 25px;
}
.proposta-header .txt-exclusivo {
  display: none;
}
@media (min-width: 1025px) {
  .proposta-header {
    padding: 20px 40px;
  }
  .proposta-header .logo-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 32px;
  }
  .proposta-header .txt-exclusivo {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
  }
}

.header-redes,
.social-footer {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* 3. CONTEÚDO PRINCIPAL E CARDS DE PACOTES */
.proposta-texto {
  width: 100%;
  max-width: 900px;
  margin: 110px auto 60px;
  padding: 50px 40px;
  color: #fff;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.proposta-texto h1 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.1;
}
.proposta-texto h2 {
  font-size: 24px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #ffd700;
  border-left: 4px solid #ffd700;
  padding-left: 15px;
}
.proposta-texto h3 {
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.proposta-texto p,
.proposta-texto li {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.proposta-texto ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.grid-pacotes {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 40px 0;
}

.card-pacote {
  padding: 30px !important;
  border: 1px solid var(--glass-border) !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 20px !important;
}
.card-pacote h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  border: none;
  padding: 0;
}

.preco-destaque {
  color: #ffd700 !important;
  font-weight: 800;
  font-size: 20px !important;
  margin-top: 10px;
}

.btn-card-selecionar {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  color: #000;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-card-selecionar:hover {
  background: #ffd700;
  border-color: #ffd700;
}

/* 4. SIMULADOR E LISTA DINÂMICA */
.simulador-inline {
  margin-top: 60px;
  padding: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.simulador-controles {
  max-width: 800px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.controle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.ctrl-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.ctrl-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-top: 2px;
  display: block;
}

.stepper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  padding: 6px;
}
.stepper button {
  background: transparent;
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.stepper button:hover {
  background: rgba(255, 255, 255, 0.15);
}
.stepper input {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  width: 35px;
  text-align: center;
  pointer-events: none;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.select-pacote {
  width: 100%;
  padding: 14px 20px;
  padding-right: 40px !important;
  margin-bottom: 5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center !important;
  background-size: 18px !important;
}
.select-pacote option {
  color: #000 !important;
  background: #fff !important;
}

.box-inclusos {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}
.box-inclusos h4 {
  color: #ffd700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}
.box-inclusos ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.box-inclusos li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 0;
}
.box-inclusos i {
  color: rgba(255, 255, 255, 0.4);
  width: 20px;
  text-align: center;
  font-size: 14px;
}

.simulador-resumo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.resumo-texto span {
  font-size: 12px;
  color: #ffd700;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.resumo-texto h3 {
  color: #fff;
  font-size: 30px;
  margin-top: 3px;
}

.btn-aprovar {
  background: #fff;
  color: #000;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-aprovar:disabled {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

/* 5. CTA E RODAPÉ */
.proposta-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.proposta-cta h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  padding: 0;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}
.cta-links .btn-cta {
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  flex: 1 1 auto;
  min-width: 160px;
}
.cta-links .btn-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.redes-finais {
  padding-top: 30px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.redes-finais p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.redes-finais .social-footer {
  justify-content: center;
  gap: 20px;
}
.redes-finais .social-footer .social-btn {
  width: 45px;
  height: 45px;
  font-size: 20px;
}

.marquee-proposta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 25px 0;
  margin-top: 40px;
}

/* 6. BOTÃO FLUTUANTE E TOAST */
.btn-flutuante-scroll {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  z-index: 1500;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-flutuante-scroll:hover {
  background: #fff !important;
  color: #000 !important;
}

.toast-mensagem {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(0, 200, 80, 0.2);
  border: 1px solid rgba(0, 200, 80, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.toast-mensagem.mostrar {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.input-minusculo {
  text-transform: lowercase;
}

.msg-erro {
  color: #ff4444;
  display: none;
  margin-top: 15px;
  font-weight: 600;
}

.conteudo-oculto {
  display: none;
}

.grupo-select {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .proposta-texto {
    padding: 40px 25px;
    margin: 90px 15px 40px;
    width: auto;
    border-radius: 16px;
  }
  .simulador-resumo {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .cta-links .btn-cta {
    width: 100%;
  }
}
/* ====================================================
   7. MODAL DE CONFIRMAÇÃO DE PAGAMENTO
==================================================== */
.modal-pagamento-overlay {
  display: none;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-pagamento-box {
  padding: 40px 30px !important;
}

.modal-icone {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 20px;
}

.modal-titulo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.modal-texto {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-botoes {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.modal-btn-confirmar {
  width: 100%;
}

.modal-btn-voltar {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}
.modal-btn-voltar:hover {
  color: #fff;
}

/* DIVISOR DE SECÇÕES DE SERVIÇOS */
.divisor-proposta {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin: 50px 0;
}

/* ====================================================
   8. ESTILOS DE DESCONTO E ANCORAGEM DE PREÇO
==================================================== */
.preco-riscado {
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  text-decoration: line-through;
  margin-bottom: -5px !important;
  margin-top: 15px;
}

.preco-destaque {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag-desconto {
  font-size: 13px;
  color: #00c850;
  background: rgba(0, 200, 80, 0.15);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid rgba(0, 200, 80, 0.3);
  letter-spacing: 0.5px;
}

.economia-badge {
  color: #00c850 !important;
  font-weight: 600;
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 200, 80, 0.3);
}
.economia-badge i {
  color: #00c850 !important;
}

/* ====================================================
   9. PROTEÇÃO DO CURSOR (BRAVE / EDGE / CHROME)
   Força o mouse original a aparecer especificamente na Proposta
==================================================== */
@media (min-width: 1025px) {
  body:has(.proposta-header),
  body:has(.proposta-texto) {
    cursor: auto !important;
  }
  body:has(.proposta-header) *,
  body:has(.proposta-texto) * {
    cursor: auto !important;
  }
  body:has(.proposta-header) .custom-cursor,
  body:has(.proposta-texto) .custom-cursor {
    display: none !important;
  }
}
/* =========================================
   PÁGINA DE CONTRATAR - DESIGN PREMIUM & WIZARD
========================================= */
.contratar-section {
  padding: 140px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.contratar-box {
  max-width: 550px;
  width: 100%;
  padding: 50px 40px !important;
  background: rgba(10, 10, 10, 0.75) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
  text-align: center;
}

/* BARRA DE PROGRESSO */
.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 35px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* TÍTULOS COM TRANSIÇÃO */
.contratar-box .titulo-area {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.contratar-box .login-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 35px;
  transition: opacity 0.3s ease;
}

/* PASSOS DO FORMULÁRIO (WIZARD) */
.form-step {
  display: none;
  opacity: 0;
}

.form-step.active {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 1;
  animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.form-glass .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-glass .input-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
}

.form-glass .input-glass::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-glass .input-glass:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.form-glass .select-dark option {
  background: #1a1a1a;
  color: #fff;
}

/* BOTÕES DE NAVEGAÇÃO */
.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
}

.btn-prev {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}

.btn-prev:hover {
  color: #fff;
}

.form-glass .btn-primary-glass {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Faz o botão ficar 100% no passo 1 porque não tem botão voltar */
.form-step[data-step="0"] .btn-primary-glass {
  width: 100%;
  flex: none;
}

.form-glass .btn-primary-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  background: rgba(235, 235, 235, 0.8823529412);
}

/* Váriaveis de Cores (Paleta do Convite) */
/* Reset e Body */
body.bg-convite {
  background-color: #f4c894;
  color: #640001;
  font-family: "alga", serif;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
}

/* 1. Header de Vídeo */
.convite-header {
  position: relative;
  width: 100%;
  height: 50vh;
  /* Diminuído para dar mais espaço ao texto na tela inicial */
  overflow: hidden;
}
.convite-header .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.convite-header .degrade-transicao {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(244, 200, 148, 0) 0%, #f4c894 100%);
}

/* 2. Container Principal */
.convite-container {
  position: relative;
  z-index: 2;
  padding: 0 20px 40px;
  margin-top: -30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* O novo container que engloba o que surge depois */
.conteudo-extra {
  opacity: 0;
  transform: translateY(40px);
  /* Começa um pouco para baixo */
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  /* Impede cliques enquanto estiver invisível */
}
.conteudo-extra.mostrar {
  opacity: 1;
  transform: translateY(0);
  /* Desliza para o lugar original */
  pointer-events: auto;
}

/* 3. Título Digitando */
#texto-digitado {
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  /* Reduzido de 38px */
  line-height: 1.1;
  margin-bottom: 20px;
  min-height: 75px;
  color: #640001;
}
#texto-digitado .cursor-blink {
  animation: blink 0.8s infinite;
  opacity: 0.6;
}

/* 4. Card do Formulário */
.card-confirmacao {
  background-color: #d9a76b;
  border-radius: 20px;
  padding: 25px 20px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 30px;
  box-sizing: border-box;
}
.card-confirmacao .progresso-container {
  width: 100%;
  height: 6px;
  background-color: rgba(100, 0, 1, 0.2);
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}
.card-confirmacao .progresso-container .barra-progresso {
  height: 100%;
  width: 33%;
  background-color: #640001;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
}
.card-confirmacao .passo {
  display: none;
}
.card-confirmacao .passo.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}
.card-confirmacao .btn-outline,
.card-confirmacao .btn-preenchido {
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  font-family: "alga", serif;
  font-style: italic;
  font-size: 28px;
  /* Reduzido de 32px */
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.card-confirmacao .btn-outline:active,
.card-confirmacao .btn-preenchido:active {
  transform: scale(0.98);
}
.card-confirmacao .btn-outline {
  background: transparent;
  border: 2px solid #640001;
  color: #640001;
  font-weight: 700;
}
.card-confirmacao .btn-preenchido {
  background: #640001;
  border: none;
  color: #d9a76b;
  font-weight: 400;
}
.card-confirmacao label {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  /* Reduzido */
  margin-bottom: 10px;
  color: #640001;
}
.card-confirmacao input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #640001;
  border-radius: 12px;
  background: #fff;
  color: #640001;
  font-family: "alga", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  /* Reduzido */
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.card-confirmacao input::placeholder {
  color: rgba(100, 0, 1, 0.4);
  font-weight: 400;
}
.card-confirmacao h2 {
  font-weight: 700;
  font-style: italic;
  font-size: 34px;
  /* Reduzido de 42px */
  margin: 0 0 5px;
  line-height: 1;
}
.card-confirmacao p {
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  /* Reduzido de 28px */
  margin: 0;
}

/* 5. Textos de Data e Cronômetro */
.detalhes-evento p {
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  /* Reduzido de 34px */
  line-height: 1.1;
  margin: 0 0 15px;
  color: #640001;
}

.cronometro p {
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  /* Reduzido de 24px */
  margin: 0 0 35px;
  color: #640001;
}

/* 6. Spotify Box */
.spotify-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Animações Auxiliares */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====================================================
   AJUSTES PARA TABLETS E IPADS (Até 1024px)
==================================================== */
@media (max-width: 1024px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
  }
  /* O SEGREDO DO MENU: A própria pílula anima e vira a tela toda! */
  .main-header {
    top: 15px !important;
    width: calc(100% - 30px) !important;
    height: 60px !important;
    /* Altura fixa da pílula fechada */
    overflow: hidden !important;
    /* Faca invisível qualquer vazamento */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  .container-header {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 20px !important;
    width: 100%;
    height: 60px !important;
  }
  /* A Marca fica absolutamente travada no centro da tela */
  .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 2002;
  }
  .logo img {
    height: 30px !important;
    display: block;
  }
  /* Botão hambúrguer */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2005;
    font-size: 22px !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #fff;
  }
  .social-header {
    display: none !important;
  }
  /* CONTEÚDO DO MENU (Fica invisível, escondido dentro da pílula) */
  .main-nav {
    position: absolute;
    top: 60px;
    /* Começa logo abaixo da barra do logo */
    left: 0;
    right: auto !important;
    /* Sobrescreve o código antigo */
    width: 100%;
    height: calc(100vh - 60px);
    background: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: 100%;
    padding: 0;
    margin-top: -60px;
    /* Compensa o topo para ficar no centro exato da tela */
  }
  .main-nav a {
    font-size: 24px;
    padding: 10px;
    display: block;
  }
  /* --- ESTADOS DE QUANDO O MENU ABRE --- */
  body.menu-open .main-header {
    top: 0 !important;
    left: 0 !important;
    transform: translateX(0) !important;
    width: 100% !important;
    height: 100vh !important;
    /* Pílula expande para 100% da tela */
    max-width: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.95) !important;
  }
  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
    /* Os links aparecem suavemente depois da pílula crescer */
  }
  /* === O RESTANTE DO CÓDIGO ANTIGO FICA INTACTO === */
  .bio-section {
    min-height: 150vh;
    padding: 60vh 0 40px;
    display: block;
  }
  .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100%;
    z-index: -1;
  }
  .hero-video-container video {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60vh;
    object-position: center;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  }
  .bio-content {
    position: sticky;
    top: 40vh;
    padding: 0 25px;
    max-width: 100%;
    z-index: 1;
  }
  .bio-content h1,
  .bio-content p {
    width: 100%;
    max-width: 100%;
    text-align: left !important;
  }
  .bio-content h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .bio-content h1 br {
    display: none;
  }
  .bio-content p {
    font-size: 16px;
  }
  .podcast-section {
    width: 100%;
    padding: 0 20px;
    margin-top: -40vh;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
  }
  .podcast-container {
    margin-top: 0;
    margin-bottom: 0;
  }
  .podcast-container .info-card {
    padding: 20px;
  }
  .podcast-container .info-card h3 {
    font-size: 18px;
  }
  .spotify-embed iframe {
    width: 100%;
    height: 152px;
  }
  .center-marquee {
    margin: 25px 0 !important;
  }
  .portfolio-container {
    width: 100%;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 60px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-card {
    padding: 20px 25px;
  }
  .info-card h3 {
    font-size: 20px;
  }
  .capa-container {
    aspect-ratio: 4/3;
  }
  .hover-overlay {
    display: none !important;
  }
  .side-timeline {
    display: none !important;
  }
  .cria-pe-section {
    width: 100%;
    padding: 0 20px;
    margin: 40px auto 60px;
    overflow-x: hidden;
  }
  .cria-pe-container {
    width: 100%;
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    gap: 20px;
    box-sizing: border-box;
  }
  .cria-pe-3d {
    width: 100%;
    height: 350px !important;
    min-height: 350px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .cria-pe-3d model-viewer {
    width: 100%;
    height: 100%;
  }
  .cria-pe-content {
    width: 100%;
  }
  .cria-pe-content h2,
  .typewriter-container p {
    text-align: center !important;
  }
  .cria-pe-swiper img {
    height: 150px !important;
    object-fit: cover !important;
  }
  .cria-pe-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 40px auto 0;
  }
  .vertical-video {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .blog-container {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .blog-container h1 {
    font-size: 24px;
    margin-bottom: 2px;
    text-align: center !important;
  }
  .blog-container > p {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center !important;
  }
  .blog-swiper {
    height: 450px;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .blog-card {
    flex-direction: row;
    align-items: center;
    padding: 12px 15px;
    height: 100%;
    width: 100%;
  }
  .blog-card-img {
    width: 115px;
    height: 115px;
    border-radius: 12px;
    margin-right: 15px;
    flex-shrink: 0;
  }
  .blog-card-img img {
    border-radius: 8px;
  }
  .blog-card-text {
    padding: 0;
    justify-content: center;
  }
  .blog-card-text h2 {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.25;
  }
  .blog-card-text p {
    display: none;
  }
  .post-leitura {
    padding: 40px 25px;
    margin: 100px 20px 40px;
    width: auto;
    box-sizing: border-box;
  }
  .post-leitura .post-header h1 {
    font-size: 32px;
  }
  .videocase-section {
    padding: 0 20px;
    margin: 40px auto;
  }
  .videocase-section + .videocase-section {
    margin-top: 0;
  }
  .videocase-container {
    padding: 30px;
    gap: 25px;
  }
  .videocase-text h2 {
    font-size: 24px;
  }
  .videocase-text p {
    font-size: 16px;
  }
  .videocase-section.theater-mode {
    padding: 0;
    margin: 40px 0;
    max-width: 100%;
  }
  .videocase-section.theater-mode .videocase-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 30px 0;
  }
  .videocase-section.theater-mode .videocase-text {
    padding: 0 20px;
  }
  .videocase-section.theater-mode .vimeo-wrapper {
    border-radius: 0;
  }
  .custom-cursor {
    display: none !important;
  }
  .rss-floating-btn {
    bottom: 75px;
    right: 20px;
    padding: 14px;
    border-radius: 50%;
  }
  .rss-floating-btn span {
    display: none;
  }
  .rss-floating-btn i {
    font-size: 18px;
    margin: 0;
  }
  .rss-floating-btn::after {
    display: none;
  }
  .page-header h1 {
    font-size: 32px;
  }
  .ebook-actions {
    flex-direction: column;
  }
  .ebooks-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-prev {
    left: 5px;
    font-size: 28px;
    padding: 10px;
  }
  .lightbox-next {
    right: 5px;
    font-size: 28px;
    padding: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
  #lightbox-img,
  #lightbox-video {
    max-width: 95vw;
    max-height: 85vh;
    object-fit: contain;
  }
}
/* ====================================================
   LISTA ÚNICA PARA TELEMÓVEIS (Abaixo de 768px)
==================================================== */
@media (max-width: 768px) {
  .mini-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
  }
  .mini-card {
    flex-direction: row !important;
    min-height: auto !important;
    padding: 12px;
    align-items: center;
    width: 100% !important;
  }
  .mini-card img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 8px;
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .mini-card div {
    padding: 0 0 0 15px !important;
  }
  .mini-card h4 {
    font-size: 14px !important;
    margin-bottom: 0;
  }
  .mini-card p {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */