
/* ==========================
   Variáveis e Reset
   ========================== */
:root {
  /* Cores principais da marca */
  --color-primary: #cc94ae;
  --color-primary-dark: #b17692;
  --color-primary-soft: #f1dde5;
  --color-secondary: #7d5468;

  /* Cores de texto e fundo */
  --color-text: #545454;
  --color-heading: #333333;
  --color-bg: #ffffff;
  --color-bg-alt: #fcf7fa;
  --color-border: #ecd9e1;

  /* Sombras */
  --shadow-sm: 0 8px 20px rgba(73, 43, 59, 0.08);
  --shadow-md: 0 18px 40px rgba(73, 43, 59, 0.12);
  --shadow-lg: 0 34px 80px rgba(73, 43, 59, 0.24);

  /* Raios */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Espaçamentos */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5.5rem;

  /* Container */
  --container: min(1120px, 92vw);

  /* Hero-specific (mantive variáveis usadas no style.css) */
  --h-rose: #cc94ae;
  --h-rose-lt: #e8c0d4;
  --h-rose-dkk: #a86f8a;
  --transition: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset / base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

/* Imagens */
img { max-width: 100%; display: block; height: auto; }

/* Links */
a { color: inherit; }

/* Aumento dos títulos H2 */
h2 {
  font-size: 1.8rem !important; /* Tamanho fixo maior */
  font-weight: 800; /* Deixa a fonte mais "grossa" */
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

/* Ajuste específico para mobile (opcional, para não estourar a tela) */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem !important;
  }
}

/* Tipografia de títulos */
h1,h2,h3 { margin:0; font-family: "Montserrat", sans-serif; line-height:1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.45rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.05rem, 2.4vw, 1.32rem); }

/* Parágrafos padrão */
p { margin: 0; }

/* Listas */
ul { margin: 0; padding-left: 1.2rem; }

/* Container */
.container { width: var(--container); margin: 0 auto; }

/* Seções */
.section { padding: var(--space-8) 0; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--color-primary-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.menu a.active {
  color: var(--color-primary-dark);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-heading);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

/* ==========================
   Header e Navegação
   ========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  min-height: 4.7rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-3);
}

.brand {
  display:inline-flex;
  align-items:center;
  gap: var(--space-2);
  text-decoration:none;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  color:var(--color-heading);
}
.brand span { font-size:0.92rem; }

/* Botão hamburguer (mobile) */
.menu-toggle {
  border: 1px solid var(--color-border);
  background: #fff;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.24rem;
  cursor: pointer;
}
.menu-toggle span {
  width: 1.2rem;
  height: 0.12rem;
  border-radius: 999px;
  background: var(--color-heading);
}

/* Menu - mobile default (mobile-first) */
.menu {
  position: absolute;
  inset: 4.7rem 0 auto;
  background: #fff;
  padding: var(--space-3) var(--space-4);
  margin:0;
  list-style:none;
  border-bottom:1px solid var(--color-border);
  display: none; /* hidden by default on small screens, shown when .menu-open */
  flex-direction: column;
  gap: var(--space-3);
}
.menu li { list-style: none; }
.menu a {
  text-decoration: none;
  font-weight: 700;
  color: #4b3f45;
}

/* Classe que seu JS pode aplicar para abrir o menu em mobile */
.menu-open .menu { display: flex; }

/* ==========================
   Conteúdo (sobre, serviços, clientes)
   ========================== */
/* Mantive o gradiente solicitado para as seções relevantes */
#camara,
#lista-arquivos {
  background: linear-gradient(180deg, var(--color-primary-soft), #fff 150%);
}

/* Ajustes de parágrafo específicos */
p {
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05rem;
}

section#arquivos {
    background-color: #cc94ae4d !important;
  padding: 40px 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #545454;
}
#camara h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--color-primary-dark);
  text-align: center;
}

/* Ajustes só para mobile */
@media (max-width: 767px) {
  #camara h2 {
    font-size: 1.3rem;       /* fonte menor */
    line-height: 1.35;       /* altura de linha mais compacta */
    font-weight: 500;        /* peso reduzido */
    color: var(--color-primary-dark);            /* tom rosado suave */
    margin-bottom: 1rem;
    padding: 0 12px;
    max-width: 90%;
    text-align:center; 
  }
}



/* Hero Premium Aurora + Glassmorphism (sem branco) */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(270deg, #f3d6e0, #eaeaea, #d9c2cc, #cc94ae);
  background-size: 800% 800%;
  animation: auroraMove 18s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes auroraMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 20px;
  margin: 0 auto 20px auto; /* Centraliza horizontalmente e mantém o espaço abaixo */
  display: block; /* Garante que a margem auto funcione */
}
  


.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 25px;
}



/* 🔹 Ajustes só para mobile */
@media (max-width: 767px) {
  .hero {
    min-height: 70vh; /* altura menor no mobile */
  }

  .hero-content {
    padding: 25px; /* reduz padding interno */
    border-radius: 18px;
  }

  .hero-logo {
    max-width: 140px; /* logo menor */
    margin-bottom: 15px;
    margin: 0 auto 15px auto; /* Repita a margem auto aqui para garantir */
  }

  .hero-title {
    font-size: 2rem; /* título menor */
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1rem; /* subtítulo menor */
    margin-bottom: 20px;
  }

  
  }
/* ==========================
   Botões
   ========================== */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Montserrat',sans-serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  border-radius:50px;
  padding:16px 36px;
  text-decoration:none;
  transition: all .35s ease;
  cursor:pointer;
  border:none;
  position:relative;
  overflow:hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--h-rose) 0%, var(--h-rose-lt) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(204, 148, 174, .38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(204,148,174,.48); color:#fff; }

/* ==========================
   Footer
   ========================== */
/* Footer visual (mantive cores e estilo) */
footer {
  background-color: #545454;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem; /* tamanho fixo uniforme */
  line-height: 1.25;
  font-family: inherit;
}

/* garantir que parágrafos dentro do footer usem o mesmo tamanho */
footer p {
  margin: 0;
  display: inline-block;
  padding: 0 6px;
  white-space: nowrap;
  font-size: inherit;
}

/* divisor vertical */
footer p:not(:last-child)::after {
  content: " | ";
  color: rgba(255,255,255,0.6);
}

footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Copyright bar */
.footer-copy {
  background-color: #fff;
  color: #555;
  text-align:center;
  font-size: 0.75rem;
  font-style: italic;
  padding: 6px 10px;
}

/* ==========================
   Responsividade e correções do menu
   ========================== */
/* Mobile-first: .menu hidden, .menu-toggle shown already above.
   Agora regras para tablet/desktop: mostra menu e esconde botão. */
@media (min-width: 760px) {
  /* Esconder botão hamburguer em desktop/tablet */
  .menu-toggle { display: none !important; }

  /* Mostrar o menu em linha */
  nav .menu {
    position: static !important;
    display: flex !important;
    flex-direction: row;
    gap: 1.25rem;
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    inset: auto !important;
    align-items: center;
  }

  /* Ajustes para itens do menu */
  nav .menu li { display: block; }
  nav .menu a {
    font-weight: 700;
    color: #4b3f45;
    padding: 0.4rem 0.2rem;
  }

  /* Se houver uma variação de container nav-wrapper, manter alinhamento */
  .nav-wrapper { align-items: center; }
}

/* Pequenos ajustes adicionais para telas intermediárias */
@media (max-width: 900px) {
  .hero-grid-home { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
}

/* ==========================
   Pequenas utilidades
   ========================== */
.no-underline { text-decoration:none; }
.no-underline:hover { color: #cc94ae; }

/* Acessibilidade: foco visível */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(204,148,174,0.45);
  outline-offset: 2px;
}


/* Espaço padrão abaixo de H2 (vale para qualquer conteúdo que venha em seguida) */
h2 {
  margin-top: 0;
  margin-bottom: 1.6rem; /* ajuste principal: aumenta o respiro abaixo do título */
  line-height: 1.15;
}

/* Força espaço entre H2 e o elemento imediatamente seguinte, qualquer que seja ele */
h2 + * {
  margin-top: 1.6rem; /* garante espaçamento mesmo se o próximo não for um p */
}

/* Casos comuns: se o próximo elemento for uma .row (Bootstrap) ou um container de cards/listas,
   às vezes o .row tem margin/padding próprios; usamos seletores mais específicos para garantir consistência */
h2 + .row,
h2 + .container,
h2 + .accordion,
h2 + .logo-grid,
h2 + .clients-grid,
h2 + .choice-grid {
  margin-top: 1.6rem;
}

/* Redução no mobile para evitar quebras desnecessárias */
@media (max-width: 768px) {
  h2 {
    margin-bottom: 1.1rem;
  }
  h2 + * {
    margin-top: 1.1rem;
  }
}
.navbar-brand {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
}

.navbar-toggler {
  border: none;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: bold;
}

/* Mobile fix: brand + toggler lado a lado */
@media (max-width: 991px) {
  .navbar .container {
    display: flex;
    justify-content: space-between; /* mantém brand à esquerda e toggler à direita */
    align-items: center;
  }
  .navbar-brand {
    margin-right: auto; /* ocupa espaço à esquerda */
  }
  .navbar-toggler {
    margin-left: 0; /* remove empurrão que causava bug */
  }
}




/* Estrutura da seção */
/* Estrutura da seção */
#camara, #arquivos {
  background-color: #f8f8f8;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Justificar só no mobile */
@media (max-width: 767px) {
  #camara, #arquivos {
    text-align: justify;
    text-justify: inter-word;
  }
}



/* Imagem flutuante à esquerda */
.camara-content .camara-img {
  float: left; /* faz o texto contornar a imagem */
  max-width: 350px;
  margin: 0 20px 20px 0; /* espaçamento entre texto e imagem */
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}



/* Remove fundo branco e bordas dos itens */
.lista-arquivos .list-group-item {
  background-color: transparent; /* fundo herda o rosa da section */
  border: none; /* remove bordas */
  color: #545454; /* mantém o texto legível */
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover suave */
.lista-arquivos .list-group-item:hover {
  background-color: rgba(204, 148, 174, 0.2); /* rosa clarinho translúcido */
  transform: translateX(5px); /* leve movimento */
  border-radius: 6px; /* arredonda o fundo no hover */
}

/* Ícone alinhado e espaçado */
.lista-arquivos .icone {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Quando o arquivo for aberto */
.lista-arquivos .arquivo.aberto {
  background-color: rgba(84, 84, 84, 0.1); /* cinza suave */
}


/* Responsividade: em telas pequenas a imagem não flutua */
@media (max-width: 768px) {
  .camara-content .camara-img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
  }
}

.no-underline {
  text-decoration: none;
}

.no-underline:hover {
  text-decoration: none; /* mantém sem sublinhado no hover */
  color: #cc94ae; /* opcional: muda para rosa forte no hover */
}

footer {
  background-color: #545454;
  color: #fff;
  text-align: center;
  padding: 8px 12px; /* reduz altura */
  font-size: 0.85rem; /* tipografia menor */
}

footer p {
  margin: 0;
  display: inline-block; /* coloca em linha */
  padding: 0 6px;
  white-space: nowrap; /* evita quebra */
}

footer p:not(:last-child)::after {
  content: " | "; /* separador discreto */
  color: rgba(255,255,255,0.6);
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* Copyright estilizado */
.footer-copy {
  background-color: #fff;
  color: #555;
  text-align: center;
  font-size: 0.75rem;
  font-style: italic; /* delicado */
  padding: 6px 10px;
}



#btnTopo {
  opacity: 0; /* invisível por padrão */
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  border: none;
  background: transparent;
  color: #cc94ae;
  cursor: pointer;
  font-size: 48px;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}

#btnTopo.show {
  opacity: 1;
  visibility: visible;
}

#btnTopo:hover {
  color: #a86f8a;
  transform: scale(1.2);
}
.lista-arquivos .arquivo {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lista-arquivos .arquivo:hover {
  background-color: #f9d9e5; /* rosa claro no hover */
}

.lista-arquivos .arquivo.aberto {
  background-color: #e9e9e9; /* cinza claro quando já foi aberto */
}

.lista-arquivos .icone {
  margin-right: 8px;
}

