@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kalam:wght@300;400;700&family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --cor-primaria: #9d4edd66;
  --cor-primaria-escura: #9d4edd8f;
  --cor-secundaria: #e5989b;
  --cor-terciaria: #b5838d;
  --cor-neutra: #6d6875;
  --fonte-destaque: "Kaushan Script", sans-serif;
}


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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  color: rgb(108, 0, 108);
  font-size: 1.8em;
  font-family: var(--fonte-destaque);
  text-align: center;
}

.texto-destaque {
  background-color: rgba(155, 0, 155, 0.516);
}

/* CABEÇALHO */
header {
  flex-flow: column wrap;
  gap: 15px;
  border-bottom: 2px solid var(--cor-primaria-escura);
  padding: 20px;
  display: flex;
  text-align: center;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-family: var(--fonte-destaque);
  font-size: 1.5em;
  gap: 5px;
  display: flex;
  align-content: center;
  align-items: center;
  color: black;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu-burguer {
  font-size: 2em;
  cursor: pointer;
  color: black;
}

/* NAVEGAÇÃO */
#menu-navegacao {
  display: none;
}

#menu-navegacao ul {
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
  list-style: none;
}

#menu-navegacao ul > li > a {
  display: block;
  background-color: var(--cor-primaria);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: black;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Acessibilidade: estilos de foco para navegação por teclado */
:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--cor-primaria-escura);
  outline-offset: 3px;
  border-radius: 6px;
}

#menu-burguer:focus-visible {
  outline: 3px solid var(--cor-primaria-escura);
  outline-offset: 3px;
  border-radius: 6px;
}

#menu-navegacao ul > li > a:focus-visible,
#menu-navegacao > ul > li > a.botao-denuncie:focus-visible,
.botao-denuncie-cta:focus-visible,
.container-lei-maria-penha > .banner-lei > a:focus-visible {
  outline: 3px solid var(--cor-secundaria);
  outline-offset: 3px;
  border-radius: 6px;
}

#menu-navegacao ul > li:hover {
  background-color: var(--cor-primaria-escura);
  cursor: pointer;
  transition: all 0.3s ease;
}

#menu-navegacao ul > li:hover > a {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

#menu-navegacao > ul > li > a.botao-denuncie {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  background-color: #e63946;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

#menu-navegacao > ul > li > a.botao-denuncie:hover {
  background-color: #d62828;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

#menu-navegacao > ul > li > a.botao-denuncie:hover > a {
  color: white;
}

/* CONTEÚDO PRINCIPAL */
main {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* SEÇÃO INÍCIO */
.secao-inicio {
  display: flex;
  width: 100%;
  justify-content: center;
  align-content: center;
  padding-top: 150px;
  padding-bottom: 150px;
  color: white;
  text-align: center;
  background-image: url(imagem/imagens/imagem1.png);
  background-size: cover;
  background-position: center;
}

.secao-inicio div {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  gap: 10px;
}

.botao-denuncie-cta {
  width: 150px;
  margin-top: 20px;
  padding: 8px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  background-color: rgb(168, 0, 0);
  text-shadow: 1px 1px 1px black;
}

.botao-denuncie-cta:hover {
  scale: 105%;
  background-color: rgb(190, 0, 0);
}

/* SEÇÃO VIOLÊNCIA */
.secao-violencia {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  padding: 0 10px;
  text-align: center;
  line-height: 1.5em;
}

/* SEÇÃO TIPOS DE VIOLÊNCIA */
.secao-tipos-violencia {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.secao-tipos-violencia > .container {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.secao-tipos-violencia > .container > .card-tipo-violencia {
  box-sizing: border-box;
  width: 90%;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(135deg, #e8d5f2 0%, #d4a6fa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2);
  min-width: 300px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.secao-tipos-violencia > .container > .card-tipo-violencia:hover {
  box-shadow: 0 12px 30px rgba(157, 78, 221, 0.3);
  transform: translateY(-5px);
}

.secao-tipos-violencia > .container > .card-tipo-violencia > details {
  width: 100%;
}



.card-header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 12px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.2em;
  text-align: left;
}

.card-header img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.card-header h3 {
  white-space: nowrap;
  margin: 0;
  font-size: 1.05em;
  font-weight: 700;
  color: rgb(108, 0, 108);
}

details {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}

summary {
  font-weight: 600;
  cursor: pointer;
  color: rgb(108, 0, 108);
  transition: all 0.2s ease;
  padding: 8px 0;
  font-size: 0.95em;
}

summary:hover {
  color: var(--cor-primaria-escura);
  font-weight: 700;
}

details > p {
  margin: 5px 0 10px 0;
}

.lista-violencia {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  font-style: italic;
  color: #1a1a1a;
  margin-left: 22px;
  font-size: 0.75em;
}

/* SEÇÃO LEI MARIA DA PENHA */
.secao-lei {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100%;
}

.container-lei-maria-penha {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}

.container-lei-maria-penha > .banner-lei {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  justify-content: center;
  align-content: center;
  width: 100%;
  padding-bottom: 150px;
  padding-top: 150px;
  color: white;
  text-align: center;
  background: url(imagem/imagens/imagem2.png);
  background-position: center;
  background-size: cover;
}

.container-lei-maria-penha > .banner-lei > a {
  display: block;
  width: 240px;
  margin: auto;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  background-color: white;
  color: rgb(108, 0, 108);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.container-lei-maria-penha > .banner-lei > a:hover {
  background-color: rgb(171, 0, 171);
  color: white;
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(171, 0, 171, 0.4);
}

.container-lei-maria-penha > .conteudo-lei {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  padding: 40px 40px 0 40px;
  line-height: 1.8em;
  text-align: justify;
}

/* SEÇÃO COMO DENUNCIAR */
.secao-como-denunciar {
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

.secao-como-denunciar > .container-onde-denunciar {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 20px 0 20px;
}

.secao-como-denunciar > .container-onde-denunciar > .destaque-180 {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
}

.secao-como-denunciar > .container-onde-denunciar > .destaque-180 > .card-denuncia-180 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 10px;
}

.secao-como-denunciar > .container-onde-denunciar > .lista-canais-denuncia {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

.secao-como-denunciar > .container-onde-denunciar > .lista-canais-denuncia > .canal-denuncia {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: 5px;
  font-size: 0.9em;
  font-weight: 500;
}

.secao-como-denunciar > .container-onde-denunciar > .lista-canais-denuncia > .canal-alinhado-direita {
  align-items: flex-end;
}

.secao-como-denunciar > .container-onde-denunciar > .lista-canais-denuncia > .canal-denuncia > div > .descricao-canal {
  font-style: italic;
  font-weight: 500;
  font-size: 0.7em;
  padding-bottom: 40px;
}

.secao-como-denunciar > .container-onde-denunciar > .lista-canais-denuncia > .canal-denuncia > a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* RODAPÉ */
footer {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
  width: 100%;
  padding: 40px 20px;
  background-color: #5a1e6f;
  color: #f0f0f0;
  border-top: 3px solid var(--cor-primaria-escura);
}

footer > #footer-principal {
  display: none;
}

footer > #footer-principal h3 {
  color: #e5989b;
  font-size: 1.2em;
  margin-bottom: 5px;
  display: none;
}

footer > #footer-principal > div > p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95em;
  display: none;
}

footer > #footer-mobile {
  text-align: center;
  color: #ffffff;
  font-size: 0.85em;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  order: 3;
}

footer > #footer-mobile {
  text-align: center;
  color: #ffffff;
  font-size: 0.85em;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer > #footer-navegacao {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer > #footer-navegacao > .footer-coluna > ul {
  display: flex;
  flex-flow: column wrap;
  gap: 12px;
  list-style: none;
}

footer > #footer-navegacao > .footer-coluna > ul > .footer-titulo {
  font-size: 0.95em;
  font-weight: 700;
  color: #e5989b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

footer > #footer-navegacao > .footer-coluna > ul > li > a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer > #footer-navegacao > .footer-coluna > ul > li > a:hover {
  color: #e5989b;
  transform: translateX(5px);
}

.desenvolvido {
  text-decoration: none;
  color: white;
  font-size: 0.8em;
}

.desenvolvido:hover {
  color: #e5989b;
  transform: translateX(5px);
}
