/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
:root {
  --bg-main: #11100d;
  --bg-dark: #0b0a08;
  --paper: #d4c4a8;
  --paper-dark: #b8a88e;
  --paper-light: #e3d7c0;
  --ink: #1f1a14;
  --gold-muted: #8f7a52;
  --gold-soft: #a28c63;
  --line: rgba(212, 196, 168, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.65);
  --shadow-soft: rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Trava o scroll horizontal no documento inteiro */
}

body {
  background: var(--bg-main);
  color: var(--paper-light);
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden; /* Trava o scroll horizontal na raiz da página */
  width: 100%;
}



.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  /* APAGUE QUALQUER OVERFLOW QUE ESTIVER AQUI */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.site-scale {
  zoom: 0.8;
}

/* ==========================================================================
   2. CLASSES UTILITÁRIAS E BOTÕES
   ========================================================================== */
.btn-paper,
.btn-outline,
.case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  padding: 0 22px;
  background: linear-gradient(to bottom, #2b221a, #1b1611);
  color: #d9c8a9;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 1px solid rgba(212, 196, 168, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 4px 10px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.btn-paper:hover,
.btn-outline:hover,
.case-btn:hover {
  transform: translateY(-2px);
  background: #3b342c;
}

.section-divider {
  position: relative;
  height: 24px;
  margin: 0 0 28px;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(212, 196, 168, 0.22);
  transform: translateY(-50%);
}

.section-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-main);
  color: rgba(212, 196, 168, 0.55);
  padding: 0 14px;
  font-size: 1rem;
}

.section-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--gold-soft);
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Animação de Entrada */
.reveal-up {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}










/* ==========================================================================
   3. HEADER / TOPBAR E MENU MOBILE (REMASTERIZADO)
   ========================================================================== */
.topbar {
  background: rgba(11, 10, 8, 0.85); /* Levemente mais transparente */
  backdrop-filter: blur(12px); /* Efeito vidro mais forte */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(162, 140, 99, 0.15); /* Linha dourada suave */
  position: sticky;
  top: 0;
  z-index: 999;
  
}

/* Força o container do cabeçalho a ir de ponta a ponta */
.topbar .container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px; /* Dá um pequeno respiro para não grudar exatamente no último pixel do monitor */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  /* Alterado para flex-start para agrupar logo e menu no início */
  justify-content: flex-start; 
  min-height: 75px;
}

/* --- Logo --- */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo {
  width: 48px; /* Logo mais delicada */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.logo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--paper-light);
  letter-spacing: 2px;
  line-height: 1;
}

/* --- Menu Desktop com Animação --- */
.main-nav {
  display: flex;
  gap: 32px;
  /* Margem à esquerda para desgrudar da logo */
  margin-left: 60px; 
  /* A "mágica": empurra todo o bloco seguinte (nav-actions) para a direita */
  margin-right: auto; 
}

.main-nav a {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(227, 215, 192, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold-soft);
}

/* Efeito de linha dourada deslizando em baixo do link */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* --- Área de Login (Direita) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(162, 140, 99, 0.3);
  border-radius: 4px;
  color: var(--paper-light);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(162, 140, 99, 0.1);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.login-icon {
  width: 16px;
  height: 16px;
}

/* --- Botão Menu Mobile & Menu Oculto --- */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  min-height: 2px; /* Força o navegador a respeitar o limite mínimo */
  background: var(--paper-light);
  transition: 0.3s ease;
  flex-shrink: 0; /* IMPEDE que o Flexbox esmague as linhas */
  border-radius: 2px; /* Arredonda levemente as pontas para melhorar o anti-aliasing na tela do celular */
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(to bottom, #16120f, #0e0c0a);
  border-left: 1px solid rgba(212, 196, 168, 0.14);
  box-shadow: -20px 0 40px rgba(0,0,0,0.6);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 30px 25px;
}

.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1990;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(162, 140, 99, 0.2);
  padding-bottom: 15px;
}

.mobile-menu-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--paper-light);
}

.close-menu {
  background: transparent;
  border: none;
  color: var(--gold-soft);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: rgba(227, 215, 192, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold-soft);
  padding-left: 10px;
}




/* ==========================================================================
   4. SEÇÃO HERO (FULL BLEED COM GRADIENTE LATERAL)
   ========================================================================== */
.hero-full-bleed {
  position: relative;
  /* Altura da tela inteira (100vh) menos a altura do menu (92px) */
  min-height: calc(100vh - 95px); 
  background: #11100d; 
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10; 
  /* Força a margem esquerda e deixa o resto do espaço sobrar na direita */
  margin-left: 200px; 
}

.hero-text-area {
  max-width: 600px;
}

.hero-text-area h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--paper-light);
  margin-bottom: 25px;
  text-shadow: 4px 6px 12px rgba(0, 0, 0, 0.85);
}

.hero-text-area h1 span {
  color: var(--gold-soft);
}

.hero-text-area p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(227, 215, 192, 0.85);
  margin-bottom: 45px;
  text-shadow: 4px 6px 12px rgba(0, 0, 0, 0.85);
}

/* Lado da Imagem */
.hero-image-full {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%; /* Ocupa um pouco mais da metade para a fusão ficar bonita */
  height: 100%;
  z-index: 1;
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) brightness(0.7) contrast(1.1);
}

/* O GRADIENTE DE SOMBRA (Esquerda para Direita) */
.hero-side-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Do escuro absoluto (mesma cor do fundo) para o transparente */
  background: linear-gradient(to right, #11100d 0%, rgba(17, 16, 13, 0.9) 15%, transparent 80%);
  z-index: 2;
}

/* Reutilizando seus botões já criados */
.hero-cta-group {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   ANIMAÇÃO DE ENTRADA DA HERO (SLIDE DA ESQUERDA)
   ========================================================================== */

/* 1. Criamos a animação */
@keyframes slideFadeRight {
  0% {
    opacity: 0;
    transform: translateX(-60px); /* Começa 60px para a esquerda */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Termina na posição original */
  }
}

/* 2. Preparamos os elementos para estarem invisíveis antes da animação começar */
.hero-text-area .section-label,
.hero-text-area h1,
.hero-text-area p,
.hero-cta-group {
  opacity: 0; 
  animation: slideFadeRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 3. Definimos o tempo de atraso (cascata) para cada elemento */
.hero-text-area .section-label {
  animation-delay: 0.2s;
}

.hero-text-area h1 {
  animation-delay: 0.4s;
}

.hero-text-area p {
  animation-delay: 0.6s;
}

.hero-cta-group {
  animation-delay: 0.8s;
}


/* ==========================================================================
   5. CATÁLOGO DE CASOS (MODERNO COM GRADIENTE)
   ========================================================================== */
.featured-cases {
  padding: 38px 0 30px;
}

.title-group {
  display: flex;
  flex-direction: column;
}

.title-group h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--paper-light);
  letter-spacing: 2px;
  text-shadow: 6px 6px 2px rgba(0, 0, 0, 0.9);
  margin-top: -5px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}

.view-all-link {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: var(--gold-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(162, 140, 99, 0.3);
  padding: 10px 20px;
  background: rgba(162, 140, 99, 0.05);
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: rgba(162, 140, 99, 0.15);
  color: #e3d7c0;
  border-color: var(--gold-soft);
}

.view-all-link .arrow {
  transition: transform 0.3s ease;
}

.view-all-link:hover .arrow {
  transform: translateX(4px);
}

.cases-grid-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ==========================================
   CARD: VER TODOS OS CASOS (HOME)
   ========================================== */
.view-all-card {
  background: linear-gradient(135deg, rgba(29, 26, 22, 0.6) 0%, rgba(17, 16, 13, 0.9) 100%);
  border: 1px dashed rgba(162, 140, 99, 0.4); /* Borda tracejada como arquivo confidencial */
  display: flex;
  transition: all 0.3s ease;
  min-height: 100%;
}

.view-all-card:hover {
  background: rgba(162, 140, 99, 0.1);
  border-style: solid;
  border-color: var(--gold-soft);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.view-all-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 30px 20px;
  text-align: center;
}

.view-all-content .plus-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.view-all-card:hover .plus-icon {
  transform: scale(1.2);
}

.view-all-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--paper-light);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.view-all-content p {
  font-size: 0.95rem;
  color: rgba(227, 215, 192, 0.6);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-card-modern {
  background: #11100d;
  border: 1px solid rgba(212, 196, 168, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.case-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 140, 99, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.case-image-wrapper {
  position: relative;
  height: 300px;
  width: 100%;
}

.case-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) sepia(0.2) brightness(0.85);
}

.image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to top, #11100d 0%, rgba(17, 16, 13, 0.8) 40%, transparent 100%);
  z-index: 2;
}

.case-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(162, 140, 99, 0.15);
  border: 1px solid rgba(162, 140, 99, 0.4);
  color: #e3d7c0;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.case-content {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 3;
  margin-top: -45px;
}

.case-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #e3d7c0;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.case-category {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: #a28c63;
  border: 1px solid rgba(162, 140, 99, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
  background: rgba(17, 16, 13, 0.5);
}

.case-content p {
  font-size: 1.05rem;
  color: rgba(227, 215, 192, 0.75);
  line-height: 1.4;
  margin-bottom: 20px;
  flex-grow: 1;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
  padding-bottom: 15px;
}

.meta-left, .meta-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-right {
  align-items: flex-end;
}

.time {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(227, 215, 192, 0.6);
}

.stars {
  color: #a28c63;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.diff-text {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: rgba(227, 215, 192, 0.5);
  text-transform: uppercase;
}

.diff-bars {
  display: flex;
  gap: 4px;
}

.diff-bars .bar {
  width: 14px;
  height: 4px;
  background: rgba(212, 196, 168, 0.15);
  border-radius: 2px;
}

.diff-bars .bar.active {
  background: #a28c63;
}

.case-card-modern .full-width {
  width: 100%;
  min-width: unset;
  border-radius: 8px;
}

/* ==========================================================================
   6. A EXPERIÊNCIA (LIFESTYLE)
   ========================================================================== */
.experience-section {
  padding: 60px 0 80px;
  background: #0b0b09;
  position: relative;
  
  
}

.experience-title {
  text-align: center;
  margin-bottom: 60px;
}

.experience-title h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--paper-light);
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experience-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: rgba(227, 215, 192, 0.82);
  line-height: 1.4;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.experience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  
}

.experience-card.reverse .experience-image {
  order: 2;
  
}

.experience-card.reverse .experience-text {
  order: 1;
}

.experience-image {
  position: relative;
  border: 1px solid rgba(212, 196, 168, 0.15);
  padding: 10px;
  background: #1a1816;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.experience-card:nth-child(even) .experience-image {
  transform: rotate(1.5deg);
}

/* Regra de hover fortalecida para funcionar em todos os cards, incluindo os pares */
.experience-image:hover,
.experience-card:nth-child(even) .experience-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.experience-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.1) brightness(0.9);
  display: block;
  border-radius: 12px;
}

.experience-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #a28c63;
  border-bottom: 1px solid rgba(162, 140, 99, 0.3);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.experience-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #e3d7c0;
  margin-bottom: 16px;
}

.experience-text p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(227, 215, 192, 0.85);
}

/* ==========================================================================
   7. SEÇÃO DE PREÇOS (PACKS)
   ========================================================================== */
.pricing-section {
  padding: 60px 0 80px;
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--paper-light);
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 1.3rem;
  color: rgba(227, 215, 192, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: #13110e;
  border: 1px solid rgba(212, 196, 168, 0.15);
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 196, 168, 0.3);
}

.pricing-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #e3d7c0;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.pricing-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.5);
  display: block;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
  padding-bottom: 14px;
}

.pricing-value {
  margin-bottom: 24px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.price-original {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-tag {
  background: rgba(162, 140, 99, 0.2);
  color: #c9b48f;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.75rem;
  text-decoration: none;
  border: 1px solid rgba(162, 140, 99, 0.4);
}

.price-current {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--paper-light);
  margin-bottom: 6px;
}

.price-savings {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: #a28c63;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 1.15rem;
  color: rgba(212, 196, 168, 0.8);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: #a28c63;
  font-weight: bold;
}

.pricing-card .btn-outline {
  width: 100%;
  min-width: unset;
}

.pricing-card.highlighted {
  border: 2px solid #a28c63;
  background: linear-gradient(to bottom, #1d1813, #11100d);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(162, 140, 99, 0.05);
}

.pricing-card.highlighted:hover {
  transform: scale(1.05) translateY(-6px);
}

.badge-best-value {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #a28c63;
  color: #11100d;
  padding: 6px 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pricing-card.highlighted .btn-outline {
  background: #3b342c;
  border-color: #a28c63;
}

.pricing-footer {
  text-align: center;
  margin-top: 50px;
}

.pricing-footer p {
  font-size: 1.1rem;
  color: #c9b48f;
  margin-bottom: 6px;
}

.pricing-footer span {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.5);
}

/* ==========================================================================
   8. DEPOIMENTOS (O QUE OS CASAIS DIZEM)
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  position: relative;
  background: #0b0b09;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--paper-light);
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}

.testimonials-header p {
  font-size: 1.3rem;
  color: rgba(227, 215, 192, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #13110e;
  border: 1px solid rgba(212, 196, 168, 0.12);
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 140, 99, 0.4);
}

.quote-mark {
  font-family: serif;
  font-size: 5rem;
  color: rgba(162, 140, 99, 0.15);
  line-height: 0;
  position: absolute;
  top: 45px;
  left: 20px;
  pointer-events: none;
}

.stars {
  color: #a28c63;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(227, 215, 192, 0.9);
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(212, 196, 168, 0.1);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: #2b2620;
  border: 1px solid rgba(162, 140, 99, 0.3);
  color: #e3d7c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: #e3d7c0;
  letter-spacing: 0.5px;
}

.author-info span {
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.5);
}

/* ==========================================================================
   9. CTA FINAL (CONVOCAÇÃO)
   ========================================================================== */
.final-cta-section {
  padding: 100px 0 120px;
  background: radial-gradient(circle at center, #1a1816 0%, #11100d 100%);
}

.cta-folder-wrapper {
  position: relative;
  background: linear-gradient(135deg, #1d1b18 0%, #141210 100%);
  border: 1px solid rgba(162, 140, 99, 0.2);
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}

.urgent-stamp {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #7a1f1f;
  border: 4px solid #7a1f1f;
  padding: 5px 15px;
  transform: rotate(15deg);
  opacity: 0.6;
  border-radius: 4px;
  letter-spacing: 2px;
}

.cta-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--paper-light);
  margin-bottom: 25px;
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cta-content p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(227, 215, 192, 0.85);
  margin-bottom: 45px;
}

.cta-main-btn {
  display: inline-block;
  padding: 22px 45px;
  background: #a28c63;
  color: #11100d;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(162, 140, 99, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-main-btn:hover {
  transform: scale(1.05) translateY(-5px);
  background: #e3d7c0;
  box-shadow: 0 15px 35px rgba(162, 140, 99, 0.4);
}

.cta-subtext {
  display: block;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(212, 196, 168, 0.4);
}

.cta-decoration {
  position: absolute;
  left: -50px;
  bottom: -30px;
  opacity: 0.1;
  transform: rotate(-15deg);
  pointer-events: none;
}

.floating-badge {
  width: 280px;
}

/* ==========================================================================
   10. FOOTER (COMPACTO E SIMPLIFICADO)
   ========================================================================== */
.site-footer {
  background: #0b0a08;
  padding: 20px 0 0;
  border-top: 1px solid rgba(212, 196, 168, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-simple-logo {
  width: 35px;
  height: auto;
}

.footer-simple-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #e3d7c0;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: rgba(212, 196, 168, 0.6);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #a28c63;
}

.footer-news-area h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: #e3d7c0;
  margin-bottom: 8px;
}

.simple-newsletter {
  display: flex;
  gap: 10px;
}

.simple-newsletter input {
  padding: 8px 12px;
  background: #1a1816;
  border: 1px solid rgba(212, 196, 168, 0.2);
  color: #e3d7c0;
  width: 200px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
}

.simple-newsletter button {
  padding: 0 15px;
  background: #a28c63;
  color: #11100d;
  border: none;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.simple-newsletter button:hover {
  background: #e3d7c0;
}

.footer-copyright-simple {
  border-top: 1px solid rgba(212, 196, 168, 0.05);
  padding: 12px 0;
  text-align: center;
}

.footer-copyright-simple p {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: rgba(212, 196, 168, 0.3);
}

/* ==========================================================================
   11. ELEMENTOS FLUTUANTES (BOTÃO DE AJUDA) E OUTROS BLOCOS
   ========================================================================== */
.floating-help-btn {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 60%), linear-gradient(to bottom, #2b221a, #1a1410);
  border: 1px solid rgba(212, 196, 168, 0.18);
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.30), 0 8px 18px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
  z-index: 3000;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-help-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: radial-gradient(circle at top, rgba(255,255,255,0.07), transparent 60%), linear-gradient(to bottom, #3a2d23, #211913);
  box-shadow: 0 18px 36px rgba(0,0,0,0.36), 0 10px 20px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}

.chat-bubble-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
  border: 2px solid #d4c4a8;
  border-radius: 8px;
  box-sizing: border-box;
}

.chat-bubble-icon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #d4c4a8;
  border-bottom: 2px solid #d4c4a8;
  transform: rotate(-35deg);
  background: transparent;
}

.chat-bubble-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #d4c4a8;
  border-radius: 999px;
  box-shadow: 0 5px 0 #d4c4a8;
}

/* Info Grid antigo (mantido caso ainda use em alguma página interna) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 26px 0 40px;
}

.info-card {
  position: relative;
  background: linear-gradient(to bottom, #d8cab0 0%, #cdbb9d 55%, #c2b08d 100%);
  border: 2px solid rgba(0,0,0,0.28);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(80, 55, 30, 0.10), inset 0 0 25px rgba(80, 55, 30, 0.08);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 200px;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(80,50,20,0.12), transparent 18%), radial-gradient(circle at top right, rgba(80,50,20,0.08), transparent 18%), radial-gradient(circle at bottom left, rgba(80,50,20,0.10), transparent 20%), radial-gradient(circle at bottom right, rgba(80,50,20,0.14), transparent 22%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.info-card img {
  width: 150px;
  object-fit: contain;
  filter: sepia(1) grayscale(1);
}

.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.info-card a {
  font-family: 'Cinzel', serif;
  color: var(--ink);
}

/* ==========================================================================
   12. MEDIA QUERIES (AJUSTES INTERNOS)
   Nota: As regras principais de responsividade estão no seu responsive.css
   ========================================================================== */
@media (max-width: 568px) {
  .hero-wrapper {
    width: 94%;
    height: 280px;
  }

  .hero-content {
    max-width: 80%;
    padding-right: 30px;
    padding-left: 20px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.35;
  }
}

/* ==========================================================================
   PÁGINA EXCLUSIVA DE CATÁLOGO (casos.html)
   ========================================================================== */

/* Título de Entrada */
.page-header-noir {
  padding: 120px 0 60px;
  background: radial-gradient(circle at 50% 0%, #1a1816 0%, var(--bg-main) 70%);
  border-bottom: 1px solid rgba(212, 196, 168, 0.05);
}

.page-header-noir h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--paper-light);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.page-header-noir p {
  font-size: 1.2rem;
  color: rgba(227, 215, 192, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Grelha Completa de Arquivos */
.catalog-page-section {
  padding: 60px 0 100px;
}

.catalog-grid-full {
  display: grid;
  /* Cria colunas automaticamente baseadas no espaço, sem espremer demais */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Modificação no botão dentro da página de catálogo para não ser dourado sólido */
.catalog-grid-full .case-content button {
  background: transparent;
  border: 1px solid rgba(162, 140, 99, 0.4); /* Borda dourada suave */
  color: rgba(227, 215, 192, 0.9);
  padding: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.catalog-grid-full .case-content button:hover {
  background: rgba(162, 140, 99, 0.1); /* Fundo ligeiramente dourado ao passar o rato */
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}



/* ==========================================================================
   ANIMAÇÃO DE ENTRADA DO CATÁLOGO (Ignora o Scroll)
   ========================================================================== */
.catalog-page-section .reveal-up {
  /* Força a visibilidade inicial */
  opacity: 0; 
  transform: translateY(30px);
  /* Aplica uma animação automática ao abrir a página */
  animation: fadeUpCards 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Criamos o efeito dos cartões a subirem suavemente */
@keyframes fadeUpCards {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Opcional: Adiciona um pequeno atraso em cascata para os primeiros cartões */
.catalog-grid-full .case-card-modern:nth-child(1) { animation-delay: 0.1s; }
.catalog-grid-full .case-card-modern:nth-child(2) { animation-delay: 0.2s; }
.catalog-grid-full .case-card-modern:nth-child(3) { animation-delay: 0.3s; }
.catalog-grid-full .case-card-modern:nth-child(4) { animation-delay: 0.4s; }

/* ==========================================================================
   PÁGINA DE LOGIN (login.html)
   ========================================================================== */
.login-body {
  background: radial-gradient(circle at 50% 50%, #1a1816 0%, var(--bg-main) 100%);
  display: flex;
  flex-direction: column;
  height: 100vh; /* Força a altura a ser exatamente 100% da janela visível */
  overflow: hidden; /* Corta qualquer excesso e mata a barra de scroll */
}

.login-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px; /* Removi o padding vertical (40px) que estava a empurrar a tela para baixo */
}

.login-glass-card {
  background: rgba(17, 16, 13, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 196, 168, 0.1);
  border-radius: 12px;
  padding: 30px; /* Menos espaço interno */
  margin: 25px 0; /* Espaço para o título em cima e botão em baixo */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.login-header {
  text-align: center;
  margin-bottom:10px;
  margin-top: 30px;
}

.login-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--paper-light);
  letter-spacing: 3px;
  text-align: center;
}

.login-header p {
  color: rgba(227, 215, 192, 0.7);
  font-size: 1.1rem;
}

.login-form .input-group {
  margin-bottom: 20px;
}



.login-form label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 196, 168, 0.2);
  border-radius: 4px;
  color: var(--paper-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(162, 140, 99, 0.2);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem; /* Ligeiramente menor para caber melhor */
}

.login-actions-wrapper {
  padding: 0 10px;
}



.remember-me input[type="checkbox"] {
  accent-color: var(--gold-soft);
  width: 16px;
  height: 16px;
}

.forgot-password, .login-footer a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover, .login-footer a:hover {
  color: var(--paper-light);
}

.forgot-password {
  color: var(--gold-soft);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.login-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 1rem;
  color: rgba(227, 215, 192, 0.7);
}

.back-home {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.6;
}

.back-home:hover {
  opacity: 1;
}


/* Estilo para o link de esqueci a senha centralizado */
.forgot-password-central {
  display: block;
  color: var(--gold-soft);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 15px; /* Espaço antes do botão */
  transition: opacity 0.3s ease;
  text-align: center;
}

.forgot-password-central:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Centraliza o "Lembrar credenciais" dentro da caixa se preferir */
.login-glass-card .form-actions {
  display: flex;
  justify-content: center; /* Centraliza o checkbox dentro do vidro */
}

/* Garante que o container principal não tenha margens desalinhadas */
.login-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Faz com que o botão e a caixa tenham a mesma largura */
}

/* Container principal do label */
/* Container principal do label - Agora com mais espaço e alinhamento central */
/* Container principal do checkbox */
.remember-me {
  display: flex;
  align-items: center;
  gap: 300px; /* Espaço real entre o quadrado e o texto */
  cursor: pointer;
  user-select: none;
  padding: 10px 0;
  width: fit-content;
  margin: 0 auto; 
}

/* Esconde o checkbox padrão */
.remember-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* O quadrado dourado customizado */
.custom-checkbox {
  height: 22px;
  width: 22px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--gold-muted);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Hover e Check */
.remember-me:hover .custom-checkbox {
  border-color: var(--gold-soft);
  box-shadow: 0 0 12px rgba(162, 140, 99, 0.4);
}

.remember-me input:checked ~ .custom-checkbox {
  background-color: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: scale(1.1);
}

/* O símbolo de "v" (Checkmark) */
.custom-checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #11100d; 
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.remember-me input:checked ~ .custom-checkbox:after {
  display: block;
}

/* Texto ao lado */
.label-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(227, 215, 192, 0.9);
  letter-spacing: 1px;
  white-space: nowrap;
}



/* Garante que a imagem flutuante use o texto como ponto de referência */
.hero-text-area {
  position: relative;
  z-index: 10;
}

/* Estilo exclusivo para a foto dos arquivos */
/* 1. Criamos a animação (vem da esquerda, invisível, e ganha a inclinação no final) */
@keyframes slideDossie {
  0% {
    opacity: 0;
    /* Começa 100px mais para a esquerda (translateX) e sem inclinação (rotate 0) */
    transform: translateY(-50%) translateX(-150px) rotate(10deg); 
  }
  100% {
    opacity: 1;
    /* Termina na posição exata que definimos antes */
    transform: translateY(-50%) translateX(0) rotate(35deg); 
  }
}

/* 2. Atualizamos a classe para tocar a animação */
.dossie-flutuante {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 350px;
  z-index: -1;
  pointer-events: none;
  
  /* Estado inicial antes da animação tocar */
  opacity: 0; 
  transform: translateY(-50%) rotate(15deg);
  
  /* Chama a animação: nome, tempo (1.2s), curva suave, e 'forwards' para parar no final */
  animation: slideDossie 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  
  /* Opcional: um pequeno atraso para os papéis aparecerem logo depois do texto */
  animation-delay: 0.5s; 
}


/* Bolinha de contagem no ícone */
.cart-btn {
  background: transparent;
  border: none;
  color: var(--paper-light);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.cart-btn:hover { color: var(--gold-soft); }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #7a1f1f; /* Vermelho carimbo */
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 25px;
}

/* Visual de cada item no carrinho */
.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
}

.cart-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border: 1px solid rgba(212, 196, 168, 0.2);
}

.cart-item-info h4 {
  font-family: 'Cinzel', serif;
  color: var(--paper-light);
  font-size: 1rem;
  margin-bottom: 5px;
}

.cart-item-info p { color: var(--gold-soft); font-weight: bold; }

.remove-item {
  background: transparent;
  border: none;
  color: rgba(227, 215, 192, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 5px;
  text-decoration: underline;
}

.cart-footer {
  padding: 25px;
  border-top: 1px solid rgba(162, 140, 99, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--paper-light);
  margin-bottom: 15px;
}

.cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-dropdown {
  position: absolute;
  top: 130%; 
  right: 0;
  width: 340px;
  background: #181a20;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: none; /* Começa escondido de vez */
  flex-direction: column;
  z-index: 2000;
}

/* Quando estiver ativo, ele apenas muda para flex e aparece na hora */
.cart-dropdown.active {
  display: flex;
}

.cart-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
}

.close-dropdown {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.close-dropdown:hover { color: #fff; }

.cart-dropdown-items {
  max-height: 280px;
  overflow-y: auto;
  padding: 10px 20px;
}

/* Scrollbar invisível elegante */
.cart-dropdown-items::-webkit-scrollbar { width: 6px; }
.cart-dropdown-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.cart-item {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item:last-child { border-bottom: none; }

.cart-item img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 5px;
}

.cart-item-info p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 1px;
}

.cart-item-info .remove-item {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

.cart-dropdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 12px 12px;
}

.cart-dropdown-footer span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.btn-checkout-green {
  background: #2dd160; /* Verde estilo Nuuvem */
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-checkout-green:hover { background: #26b553; }


/* ==========================================================================
   PÁGINA DE CHECKOUT (MESA DE EVIDÊNCIAS)
   ========================================================================== */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.checkout-list-wrapper {
  background: rgba(17, 16, 13, 0.5);
  border: 1px solid rgba(212, 196, 168, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.checkout-table {
  width: 100%;
  border-collapse: collapse;
}

.checkout-table th {
  text-align: left;
  font-family: 'Cinzel', serif;
  color: var(--gold-soft);
  font-size: 0.8rem;
  padding: 15px;
  border-bottom: 2px solid rgba(212, 196, 168, 0.1);
}

.checkout-table td {
  padding: 20px 15px;
  border-bottom: 1px solid rgba(212, 196, 168, 0.05);
}

.checkout-item-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkout-item-brand img {
  width: 45px;
  height: 60px;
  object-fit: cover;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #7a1f1f;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  text-decoration: underline;
}

.checkout-summary-card {
  background: #181a20;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.checkout-summary-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
}

.summary-row.total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
}

.security-notice {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 20px 0;
  line-height: 1.4;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold-soft);
}

/* ==========================================================================
   AJUSTES: CHECKOUT SEM SCROLL (TELA TRAVADA)
   ========================================================================== */
.checkout-locked {
  height: 100vh;
  overflow: hidden; /* Mata a barra de rolagem principal da página */
  display: flex;
  flex-direction: column;
}

/* Reduz o enorme espaço vazio do título apenas nesta página */
.checkout-locked .page-header-noir {
  padding: 40px 0 20px; 
}

/* Faz o container principal preencher o espaço restante */
.checkout-main {
  margin-top: 20px;
  flex-grow: 1;
}

/* O SEGREDO: Se houver muitos dossiês, apenas a tabela cria rolagem */
.checkout-locked .checkout-list-wrapper {
  max-height: 55vh; /* Limita a altura da tabela */
  overflow-y: auto; /* Cria rolagem interna suave */
}

/* Scrollbar elegante para a tabela */
.checkout-locked .checkout-list-wrapper::-webkit-scrollbar { 
  width: 6px; 
}
.checkout-locked .checkout-list-wrapper::-webkit-scrollbar-thumb { 
  background: rgba(162, 140, 99, 0.3); 
  border-radius: 4px; 
}

/* ==========================================================================
   PAINEL MINHA CONTA (PREMIUM NOIR)
   ========================================================================== */

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(162, 140, 99, 0.2);
  padding-bottom: 15px;
}

.dashboard-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--paper-light);
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  margin: 0;
}

/* Estado Vazio (Mesa de Investigação) */
.empty-desk-state {
  background: linear-gradient(145deg, rgba(17, 16, 13, 0.8), rgba(11, 10, 8, 0.95));
  border: 1px solid rgba(162, 140, 99, 0.15);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.empty-desk-state::before {
  content: "TOP SECRET";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(162, 140, 99, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.empty-desk-state p {
  font-size: 1.3rem;
  color: rgba(227, 215, 192, 0.7);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Cartões de Dossiês Comprados */
.dossier-card {
  background: linear-gradient(to bottom, #1d1a16, #11100d);
  border: 1px solid rgba(162, 140, 99, 0.25);
  border-radius: 8px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.dossier-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7), inset 0 0 15px rgba(162, 140, 99, 0.05);
}

.dossier-status {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold-soft);
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(162, 140, 99, 0.2);
  padding-bottom: 8px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.dossier-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--paper-light);
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-dossier-access {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: rgba(162, 140, 99, 0.08);
  border: 1px solid var(--gold-soft);
  color: var(--paper-light);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-dossier-access:hover {
  background: var(--gold-soft);
  color: var(--bg-main);
  font-weight: bold;
  box-shadow: 0 0 15px rgba(162, 140, 99, 0.4);
}

/* Imagem no Cartão de Dossiê (Minha Conta) */
.dossier-image-wrapper {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(162, 140, 99, 0.2);
  position: relative;
}

.dossier-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(0.3) brightness(0.7);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.dossier-card:hover .dossier-image-wrapper img {
  transform: scale(1.1);
  filter: grayscale(0%) sepia(0.1) brightness(0.9);
}

/* Ajuste no preenchimento do cartão para acomodar a imagem */
.dossier-card {
  padding: 15px; /* Reduzido para dar destaque à imagem */
}

.dossier-card h3 {
  margin-top: 10px;
  font-size: 1.8rem; /* Ajuste leve no tamanho */
}

/* ==========================================================================
   LAYOUT DASHBOARD PREMIUM
   ========================================================================== */
.dashboard-wrapper {
  display: flex;
  min-height: 80vh;
  gap: 30px;
  margin-top: 40px;
}

/* Sidebar Estilizada */
.dashboard-sidebar {
  width: 280px;
  background: rgba(17, 16, 13, 0.6);
  border: 1px solid rgba(162, 140, 99, 0.15);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: fit-content;
  position: sticky;
  top: 110px;
}

.sidebar-btn {
  background: transparent;
  border: none;
  color: rgba(227, 215, 192, 0.6);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  padding: 15px 20px;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-btn:hover {
  background: rgba(162, 140, 99, 0.1);
  color: var(--paper-light);
}

.sidebar-btn.active {
  background: rgba(162, 140, 99, 0.25);
  color: var(--paper-light);
  border-left: 4px solid var(--gold-soft);
  font-weight: bold;
}

/* Área de Conteúdo */
.dashboard-content {
  flex: 1;
  background: rgba(17, 16, 13, 0.4);
  border-radius: 12px;
  min-height: 500px;
}

.tab-content {
  display: none; /* Esconde todas por padrão */
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block; /* Mostra apenas a ativa */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Info de Conta Premium */
.account-info-card {
  background: linear-gradient(145deg, #1d1a16, #11100d);
  padding: 30px;
  border: 1px solid rgba(162, 140, 99, 0.2);
  border-radius: 8px;
}

/* ==========================================================================
   COMUNICAÇÕES DA AGÊNCIA (NOTIFICAÇÕES TOAST)
   ========================================================================== */
#datetive-toast-container {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none; /* Garante que não bloqueia cliques na página */
}

.agencia-toast {
  background: rgba(17, 16, 13, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(162, 140, 99, 0.3);
  border-left: 4px solid var(--gold-soft);
  color: var(--paper-light);
  padding: 16px 20px;
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 320px;
  max-width: 90vw;
  
  /* Animação inicial: escondido fora da tela à direita */
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.agencia-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.agencia-toast.error {
  border-left-color: #7a1f1f; /* Vermelho escuro para erros */
}

.agencia-toast.success {
  border-left-color: #2b7a1f; /* Verde escuro para sucessos */
}

.toast-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.toast-message {
  line-height: 1.4;
}