/* SEÇÃO CABEÇALHO */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(100deg, #080821, #3432ca);
  z-index: 1000;
}

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

.logo img {
  max-height: 8rem;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu ul a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: var(--cor-texto);
  text-decoration: none;
  transition: color 0.3s;
  padding: 1rem 0;
}

.nav-menu ul li a:hover {
  color: var(--cor-destaque);
}

.has-submenu {
  position: relative;
}

.has-submenu > a {
  cursor: pointer;
}

.submenu {
  background-color: hsla(240, 100%, 4%, 0.884);
  position: absolute;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.has-submenu > a::after {
  content: "\2bc6";
  display: inline-block;
  font-size: 1.5rem;
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.has-submenu::after:hover {
  color: var(--cor-destaque);
}

.submenu li {
  margin: 0;
}

.submenu li a {
  display: block;
  padding: 1rem 2rem;
  color: var(--cor-texto);
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 400;
}

.submenu li a:hover {
  color: #000;
  background-color: rgba(255, 255, 255, 0.1);
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  z-index: 10;
}

.has-submenu:hover .submenu {
  display: block;
}

.menu-toggle,
.menu-close {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* PÁGINA ÍNICIO - SEÇÃO HERO */

.banner-slide-1 {
  background-image: url("/img/banners/centro-de-chamadas-squoosh-1980.webp");
}

.banner-slide-2 {
  background-image: url("/img/banners/portaria_remota.webp");
}

.banner-slide-3 {
  background-image: url("/img/banners/biometria-1980w.webp");
}

.hero {
  height: 75vh;
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

.slide {
  display: flex;
  background-size: cover;
  background-position: center;
  width: 33.333%;
  height: 100%;
  position: relative;
  align-items: center;
  padding: 0 5%;
}

.slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.slide .slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 80rem;
  padding: 2rem;
}

.slide-content h1 {
  font-size: 4rem;
  text-shadow: 0.2rem 0.1rem #050505;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 2rem;
  text-shadow: 0.2rem 0.1rem #050505;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background-color: var(--cor-btn);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--cor-texto-2);
  border: none;
  border-radius: 0.5rem;
  padding: 1.2rem 2.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--cor-fundo-escuro);
  color: var(--cor-texto);
}

.slider-nav {
  background-color: #000;
  padding: 0.8rem 0;
  text-align: center;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--cor-fundo-escuro);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

/* PÁGINA ÍNICIO - SEÇÃO PARCEIROS - CARROSSEL INFINITO */

.parceiros {
  background-color: rgba(21, 21, 85, 0.808);
  padding: 2rem 1rem;
  text-align: center;
}

.parceiros h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto);
  text-shadow: 0.2rem 0.2rem #050505;
  padding-bottom: 1rem;
}

/* O container que esconde as imagens que estão fora da área visível */

.carousel-parceiros {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: inline-flex;
  animation: scroll 60s linear infinite;
  will-change: transform;
  gap: 2.4rem;
}

#carousel-track {
  align-items: center;
}

.carousel-track img {
  height: 6rem;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.carousel-track .alvo {
  height: 4rem;
  margin-top: 0.8rem;
}

.carousel-track .nice {
  height: 6rem;
}

.carousel-track .campgem {
  height: 11rem;
}

.carousel-track .alameda {
  height: 15rem;
}

.carousel-track .vista {
  height: 6rem;
  margin-top: 1.8rem;
}

.carousel-track .abigail {
  height: 15rem;
  margin-bottom: 2rem;
}

.carousel-track .aromatta {
  height: 15rem;
}

.carousel-track .verona {
  height: 15rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-78%);
  }
}

.carousel-parceiros:hover .carousel-track {
  animation-play-state: paused;
}

/* PÁGINA ÍNICIO - SEÇÃO SERVIÇOS */

.servicos {
  padding-bottom: 2rem;
  margin: 0 6rem;
}

.servicos h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-align: center;
  padding-top: 1.2rem;
  font-weight: bold;
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  list-style: none;
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
  gap: 3rem;
}

.servico {
  display: flex;
  flex-flow: column;
  background-color: #c1c0eb;
  color: var(--cor-texto);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.548);
}

.servico img {
  width: 4.8rem;
  align-self: center;
  margin-bottom: 2rem;
}

.servico h3 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  color: var(--cor-texto-2);
}

.servico p {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--cor-texto-2);
}

#assistente-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.assistente-balao {
  position: relative;
  background: #fff;
  color: #333;
  border-radius: 1.5rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.2);
  max-width: 30rem;
  padding-top: 6rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 3rem;
}

.btn-wpp {
  display: inline-block;
  background-color: #25d366;
  color: var(--cor-texto);
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  border-radius: 2rem;
  padding: 0.8rem 1.5rem;
  margin-top: 1.8rem;
}

.btn-wpp:hover {
  background-color: #199149;
}

.fechar {
  position: absolute;
  background: transparent;
  font-size: 2.8rem;
  color: #888;
  top: 1rem;
  right: 2.5rem;
  border: none;
  cursor: pointer;
}

.fechar:hover {
  color: #000;
}

/* PÁGINA - QUEM SOMOS */

.sobre-empresa {
  padding-top: 4rem;
  padding-bottom: 2rem;
  padding-right: 6rem;
  padding-left: 6rem;
  position: relative;
}

.container-sobre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
  gap: 8rem;
}

.texto-sobre {
  flex: 1;
  min-width: 3rem;
  margin: 0 1rem;
}

.texto-sobre h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
  padding-bottom: 1rem;
}

.texto-sobre p {
  font-size: 1.5rem;
  color: var(--cor-texto-2);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 1rem;
}

/* SEÇÃO SERVIÇOS */

.servicos-sobre {
  padding: 0 8rem;
  margin: 0 2rem;
}

.grid-quem-somos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  list-style: none;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  gap: 4rem;
}

.quem-somos {
  background-color: #c1c0eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 3rem;
  border-radius: 1rem;
}

.quem-somos:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.548);
}

.quem-somos img {
  width: 7.5rem;
}

.quem-somos h3 {
  font-size: 2rem;
  padding: 1.5rem 0;
  color: var(--cor-texto-2);
}

.quem-somos p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--cor-texto-2);
}

.quem-somos li a {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--cor-texto-2);
}

.imagem-sobre {
  max-width: 60rem;
  overflow: hidden;
}

.imagem-sobre img {
  border-radius: 1.5rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  max-width: 50rem;
  height: 40rem;
}

/* BANNERS DAS PÁGINAS - PORTARIA REMOTA - ALARMES 24H - MONITORAMENTO CFTV - CONTROLE DE ACESSO - SEGURANÇA PERIMETRAL */

.hero-fixo {
  display: flex;
  height: 90vh;
  align-items: center;
  justify-content: center;
}

.banner-quem-somos {
  background-image: url(/img/banners/controle-acesso.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-alarme24h {
  background-image: url(/img/banners/central-monitoramento-alarmes.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-controle-acesso {
  background-image: url(/img/banners/controle-de-acesso.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-monitoramento-cftv {
  background-image: url(/img/banners/Monitoramento.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-portaria-remota {
  background-image: url(/img/banners/portaria_remota_1024.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-seguranca-perimetral {
  background-image: url(/img/banners/seguranca-perimetral-entrada-squoosh-1980.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* PELÍCULA TRANSPARENTE (OVERLAY) */

.banner-com-pelicula {
  position: relative;
}

.banner-com-pelicula::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.conteudo-hero {
  position: relative;
  z-index: 2;
  text-align: center;
}

.conteudo-hero h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: var(--cor-texto);
}

.conteudo-hero p {
  font-size: 10.8rem;
  font-weight: 300;
  margin-bottom: 2.4rem;
}

.container-pagina {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 4rem;
  margin: 0 2rem;
  gap: 4rem;
}

.texto-servico {
  padding-right: 3rem;
}

.img-port-remot {
  width: 50rem;
  height: 30rem !important;
}

.texto-servico h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
  padding-bottom: 2rem;
}

.texto-servico p {
  padding-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--cor-texto-2);
}

.imagem-servico {
  flex: 1 1 50rem;
  text-align: center;
}

.imagem-servico img {
  max-width: 70rem;
  height: 40rem;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
}

/* Benefícios */

.beneficios-servico {
  justify-items: center;
  padding-bottom: 3rem;
  margin: 0 2rem;
}

.container-beneficios {
  text-align: center;
  max-width: 90rem;
  margin: 0 2rem;
}

.beneficios-servico-cftv {
  margin: 2rem;
}

.container-cftv {
  text-align: center;
  width: 100%;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  width: 100%;
}

.grid-beneficios-cftv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 2rem;
}

.servico-cftv {
  display: flex;
  background-color: #c1c0eb;
  flex-flow: column;
  text-align: center;
  line-height: 1.5;
  color: var(--cor-texto-2);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
}

.servico-cftv:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.548);
}

.servico-cftv li {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--cor-texto-2);
  margin-bottom: 2rem;
}

.container-beneficios h3 {
  font-size: 3.2rem;
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
  color: var(--cor-texto-2);
  margin-bottom: 2rem;
}

.container-cftv h3 {
  font-size: 3.2rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5);
  color: var(--cor-texto-2);
  margin-bottom: 1rem;
}

.container-cftv h4 {
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5);
  color: var(--cor-texto-2);
  margin: 1.5rem 0;
}

.container-beneficios ul {
  list-style: none;
  color: var(--cor-texto-2);
  padding: 0;
}

.beneficios-servico li[data-aos] {
  background: #9897df;
  padding: 1.2rem 2rem;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
}

/* Chamada para ação */

.chamada-contato {
  background: linear-gradient(to right, #2c2c66, #8a8aaa);
  text-align: center;
  color: var(--cor-texto-2);
  padding: 3rem 5rem;
}

.container-chamada h2 {
  font-size: var(--var-texto-h2);
  text-shadow: 0.3rem 0.3rem #000000;
  color: var(--cor-texto);
}

.container-chamada p {
  font-size: 2.3rem;
  padding: 1.5rem 0;
}

.btn-hero {
  background-color: var(--cor-btn);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  color: #000;
  border-radius: 2.5rem;
  padding: 1rem 2.4rem;
}

.btn-hero:hover {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
}

.beneficios-servico li[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
}

/* PÁGINA CONTATO */

.secao-contato {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 15rem;
  margin: 0 4rem;
}

.contato-info {
  padding: 0 6rem;
}

.contato-info h2 {
  font-size: 2.8rem;
  margin-bottom: 3.2rem;
  color: var(--cor-texto-2);
  text-shadow: 0.4rem 0.2rem 0.3rem rgba(0, 0, 0, 0.507);
}

.contato-info p {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--cor-texto-2);
  margin-bottom: 2.4rem;
}

.contato-info i {
  color: var(--bg-dark);
  margin-right: 1rem;
}

.redes-contato .fab {
  font-size: 3.2rem;
}

.redes-contato .fab:hover {
  color: #ffc107;
}

.container-contato {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  align-items: center;
  margin-right: 6rem;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.8rem;
}

.contato-form input,
.contato-form textarea {
  font-size: 1.6rem;
  border: 0.1rem solid #ccc;
  border-radius: 1rem;
  padding: 1.2rem;
}

.btn-enviar:hover {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
}

form select {
  background-color: #fff;
  font-size: 1.6rem;
  color: var(--cor-destaque);
  border: 0.1rem solid #ccc;
  border-radius: 1rem;
  padding: 1rem;
}

form button[type="submit"] {
  background-color: var(--cor-btn);
  align-self: center;
  border-radius: 1.2rem;
  border: none;
  padding: 1rem 5.5rem;
  max-width: 50rem;
}

#contato-pagina {
  scroll-margin-top: 8rem;
}

.container-hero-mapa {
  margin: 2rem 3rem;
}

.container-hero-mapa iframe {
  border-radius: 1.6rem;
}

/* Politica de Privacidade / Politica de Cookies */

.main-padding {
  padding-top: 10rem;
}

.policy-section {
  justify-items: center;
  margin-bottom: 2rem;
}

.policy-section .container {
  background-color: #ffffff;
  max-width: 120rem;
  border-radius: 0.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 5rem 14rem;
}

.policy-section h1 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-align: center;
  border-bottom: 0.2rem solid #eee;
  padding-bottom: 1.5rem;
}

.policy-content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--cor-texto-2);
  padding: 3rem 0;
}

.policy-content h2 {
  font-size: 2.2rem;
  color: var(--cor-texto-2);
  margin-top: 3rem;
  padding-bottom: 1.5rem;
}

.policy-content h3 {
  font-size: 1.8rem;
  color: var(--cor-texto-2);
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.policy-content p {
  color: var(--cor-texto-2);
  text-align: justify;
  padding-bottom: 1.5rem;
}

.links a:link,
.links a:visited {
  color: var(--cor-destaque);
  text-decoration: none;
}
.cookies {
  display: flex;
  flex-direction: column;
  text-align: justify;
  padding-left: 3rem;
  gap: 0.5rem;
}

/* SEÇÃO FOOTER */

footer {
  background-color: #0c0c30;
  font-size: 1.4rem;
  padding: 2rem 0 1rem 0;
}

.container-footer {
  display: flex;
  flex-direction: row-reverse;
  text-align: left;
  padding-bottom: 1.5rem;
  margin: 0 10rem;
}

.footer-col {
  flex: 25rem;
  margin: 0 1rem;
}

.footer-col h4 {
  font-size: 1.8rem;
  padding-bottom: 1rem;
  color: var(--cor-btn);
  text-shadow: 0.2rem 0.2rem var(--cor-texto-2);
  font-weight: 500;
}

.footer-col p,
.footer-col ul li a {
  color: #ccc;
  line-height: 1.8;
  text-decoration: none;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a:hover {
  color: #ffc107;
}

.redes-sociais a {
  color: #fff;
  font-size: 3rem;
  margin-right: 1.5rem;
  transition: transform ease-in 300ms;

  &:hover {
    transform: scale(1.1);
    color: #ffc107;
  }
}

.footer-bottom {
  border-top: 0.2rem solid #333;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 300;
  color: #aaa;
  padding-top: 1rem;
}

.developed-by {
  font-size: 1.2rem;
  font-weight: 200;
  text-align: center;
  color: #aaa;
  margin-top: 0.5rem;
}

.developed-by span a {
  font-weight: 400;
  text-decoration: none;
  color: #ff5500;
  padding-left: 0.5rem;
}

.politica-privacidade,
.politica-de-cookies {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1rem;
  cursor: context-menu;
  padding-top: 8rem;
}

.politica-privacidade a,
.politica-de-cookies a {
  color: var(--cor-texto);
  text-decoration: none;
  transition: transform ease-in 300ms;

  &:hover {
    color: #ffc107;
  }
}

.politica-privacidade a h3,
.politica-de-cookies a h3 {
  font-weight: 100;
}

/* PÁGINA AGRADECIMENTO */

.agradecimento-pagina {
  display: flex;
  flex-flow: column;
  background: #0a0a2a;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 0 8rem;

  & strong {
    color: var(--cor-destaque);
    text-shadow: 0.1rem 0.1rem 0.3rem var(--cor-texto);
  }

  & span {
    color: var(--cor-destaque);
    font-weight: 600;
    text-shadow: 0.1rem 0.1rem 0.3rem var(--cor-texto);
  }

  h1 {
    font-size: 5.2rem;
    color: #f5f5f5;
    margin-bottom: 3rem;
    font-weight: bolder;
  }

  p {
    font-size: 2.8rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
    font-weight: bold;
  }

  & .btn {
    padding: 1rem 2rem;
    background: var(--cor-btn);
    text-decoration: none;
    color: #101026;
    font-size: 1.8rem;
    transition: all 0.5s;
  }

  & .btn:hover {
    border-radius: 1.6rem;
  }
}

/* ESTILOS DO POPUP */

/* A película escura que cobre o site */

.popup-overlay {
  display: none; /* Começa escondido */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fundo preto com 70% de opacidade */
  z-index: 2000; /* Garante que fique acima de tudo */
}

/* O container branco do popup */

.popup-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--cor-btn);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 60rem;
  text-align: center;
  z-index: 2001;
}

.popup-container h1 {
  font-size: 4.8rem;
  color: var(--cor-texto-2);
  text-shadow: 0.3rem 0.2rem 0.2rem rgba(0, 0, 0, 0.39);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.popup-container p {
  font-size: 2.2rem;
  color: var(--cor-texto-2);
  margin-bottom: 2.5rem;
  font-weight: bold;
  line-height: 1.7;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--cor-destaque);
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #000;
}

/* ========================================================================NO FINAL DE TUDO COLOCAR ESSA SEÇÃO
======================================================================== */

/* /*  colocar um megafone "atenção" 

<div class="speaker">&nbsp;</div>

.speaker {
  width: 10rem;
  height: 11rem;
  background: url(https://www.easeus.com/images_2019/2025/buy/3-27/bobao.svg)
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -27px;
  top: -25px;
  animation: scale_box 1.5s infinite;
}

@keyframes scale_box {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
 */
