/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  font-family: 'Days One', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

h2 {
  font-size: 2rem;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

address {
  font-style: normal;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

li {
  list-style: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #cfcfcf;
  font-size: 15px;
}

/* CONTAINER */
.container {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.6rem;
}

/* SEÇÕES */
.sections {
  padding: 5rem 0;
}

/* BOTÕES */
.btn {
  padding: 0.8rem 1.4rem;
  color: #950609;
  transition: 0.1s;
  border: 1px solid black;
  background: #1c1f1f;
  border-radius: 0.2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4), 0 0 0 1px #950609;
}

/* SOMBRA DECORATIVA */
.sombra {
  width: 200px;
  height: 200px;
  background: #cfcfcf;
  border-radius: 50%;
  position: absolute;
  filter: blur(200px);
}

/* SUBTÍTULOS */
.subtitle,
#eventos h3 {
  text-transform: uppercase;
  color: #950609;
  position: relative;
  z-index: 1;
  margin-bottom: 0.2rem;
}

/* BOLA DE ENFEITE */
.enf {
  width: 2.7rem;
  height: 2.7rem;
  background: url("../img/ball2.svg") no-repeat;
  background-size: 2.7rem;
  position: absolute;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: #950609;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffff;
}

/* RESPONSIVO PARA TELAS ATÉ 640PX */
@media (max-width: 640px) {
  .enf {
    width: 1.6rem;
    height: 1.6rem;
    background-size: 1.6rem;
  }
}

/* HEADER */
#header {
  height: 6rem;
  position: relative;
  z-index: 10;
}

#header .logo {
  color: #950609;
  font-size: 2rem;
  margin-right: 1rem;
}

#header nav,
#header .menu {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #080808;
}

#header .menu a + a {
  margin-left: 1rem;
}

#header .menu .espaco-cliente {
  margin-left: auto;
}

#header .menu-mobile {
  width: 3rem;
  height: 2.5rem;
  border-radius: 0.2rem;
  display: none;
}

#header .menu-mobile.active {
  border: 1px solid #950609;
}

/* RESPONSIVO PARA TELAS ATÉ 750PX */
@media (max-width: 750px) {
  #header .menu-mobile {
    display: block;
  }

  #header .container {
    justify-content: space-between;
  }

  #header .menu {
    position: absolute;
    background: #111313;
    border-radius: 0.2rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid black;
    top: 6rem;
    right: 10px;
    flex-direction: column;
    height: auto;
    width: calc(100% - 20px);
    padding: 2rem;
    display: none;
  }

  #header .menu a + a {
    margin-top: 1rem;
    margin-left: 0;
  }

  #header .menu.active {
    display: flex;
  }

  #header .menu .espaco-cliente {
    margin-left: 0;
  }
}

/* Logo img */

.logo img {
  height: 70px;        /* tamanho padrão */
  width: auto;
  display: block;
}

/* Responsivo até 991px */
@media (max-width: 991px) {
  .logo img {
    height: 50px;      /* reduz logo */
  }
}

/* Responsivo até 661px */
@media (max-width: 661px) {
  .logo img {
    height: 40px;      /* reduz ainda mais */
  }
}


/* ENTRADA */
#entrada {
 background: url("../img/bg-1-black.png") center / cover no-repeat; 
/* background-size: contain; inutilizando por hora */
/* border-radius: 1rem; */
  min-height: 100vh;
  margin-top: -6rem;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}

#entrada .container {
  display: grid;
  min-height: calc(100vh - 6rem);
  position: relative;
}

#entrada .textos {
  margin: auto;
  text-align: center;
  padding: 5rem 0;
  position: relative;
}

#entrada .textos h1 {
  font-size: 2.5rem;
  background: linear-gradient(#950609, #960306);
  /* background: linear-gradient(
    87.55deg,
    #2C2F31 0.32%,
    #fff 19.97%,
    #b6b5b5 38.83%,    
    #fff 61.29%,
    #b4b4b4 77.33%
  );
/*  text-shadow: 2px 2px 4px rgba(100, 98, 98, 0.7);  sombra escura suave */
/*  background: linear-gradient(
  87.55deg,
  #1e1f20 0.32%,
  #bcbcbc 19.97%,
  #6e6e6e 38.83%,
  #bcbcbc 61.29%,
  #6e6e6e 77.33%
);  */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}


/* Primeira parte */

/* ENTRADA */

#entrada .textos h1 span {
  background: #960306;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#entrada .textos .btn {
  margin-top: 3rem;
}

#entrada .textos::before {
  content: 'Integer';
  font-family: 'Days One', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  position: absolute;
  color: #cfcfcf;
  font-size: 130px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0.07;
}

#entrada .redes {
  position: absolute;
  display: grid;
  grid-template-columns: auto;
  right: 0.8rem;
  bottom: 3rem;
  grid-gap: 0.5rem;
}

#entrada .redes a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid black;
  background: #111313;
  border-radius: 0.2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

#entrada .redes a:hover {
  border-color: #59F4AA;
}

#entrada .sombra {
  width: 500px;
  height: 500px;
  top: -100px;
  left: calc(50% - 250px);
  filter: blur(450px);
}

#entrada .enf-1 {
  bottom: 40%;
  left: 20%;
}

#entrada .enf-2 {
  bottom: 20%;
  right: 20%;
}

#entrada .det {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}


/* ENTRADA – RESPONSIVO */
@media screen and (max-width: 600px) {
    #entrada {
        background-size: cover; 
        /* Empurra a imagem 50px para cima para mostrar mais da parte de baixo */
        background-position: center -50px; 
    
    }
}


@media (max-width: 530px) {
  #entrada .textos h1 {
    font-size: 1.75rem;
  }

  #entrada .textos h1 br {
    display: none;
  }

  #entrada .sombra {
    width: 250px;
    height: 250px;
    top: -50px;
    left: calc(50% - 150px);
    filter: blur(200px);
  }
}

@media (max-width: 800px) {
  #entrada .textos::before {
    font-size: 60px;
    top: 2.5rem;
  }

  #entrada .enf-1 {
    bottom: 20%;
    left: 8%;
  }

  #entrada .enf-2 {
    bottom: 30%;
    right: 8%;
  }
}


/* imagem mestre */

#fundador {
  transition: opacity 1.9s ease; /* 0.4 segundos de fade */
}


/* SOBRE */

#sobre {
  background-color: #111313;
  position: relative;
  overflow: hidden;
}

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

#sobre .content {
  text-align: right;
  max-width: 21rem;
}

#sobre .description {
  margin-top: 1rem;
}

#sobre .btn {
  margin-top: 3rem;
}

#sobre .img {
  max-width: 300px;
  position: relative;
}

#sobre .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: url("../img/bg-sobre.svg");
  -webkit-mask-image: url("../img/bg-sobre.svg");
  mask-size: 450px;
  -webkit-mask-size: 450px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

#sobre .img .enf {
  right: -4rem;
  bottom: 1rem;
}

#sobre .sombra {
  top: -100px;
  left: calc(50% - 100px);
  filter: blur(230px);
}

/* SOBRE – RESPONSIVO */
@media (max-width: 880px) {
  #sobre .container {
    flex-direction: column;
  }

  #sobre .container .content {
    text-align: center;
    margin-bottom: 3rem;
    order: -1;
  }

  #sobre .container .img .enf {
    position: relative;
  }
}

/* =======================
   SEÇÃO VALORES
======================= */
#valores {
  background: #080808;
  overflow: hidden;
  padding: 4rem 2rem;
}

#valores .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap; /* garante quebra no mobile */
}

/* BLOCO DE TEXTO (lado esquerdo) */
#valores .content {
  max-width: 21rem;
  flex: 1 1 40%;
}

#valores .description {
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.5;
}

#valores .btn {
  margin-top: 3rem;
}

/* LISTA DE VALORES (lado direito – grid) */
#valores .lista-valores {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 0.5rem;
  margin-left: auto;
  flex: 1 1 50%;
}

#valores .lista-valores li {
  padding: 1.5rem;
  border: 1px solid #000;
  background: #111313;
  border-radius: 0.4rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  color: #ddd;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#valores .lista-valores li:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.6);
}

#valores .lista-valores li img {
  width: 2rem;
  margin-bottom: 1rem;
}

#valores .lista-valores li p {
  max-width: 11rem;
}

/* LISTA DE CONTATOS (lado direito – nova) */
#valores .lista-contatos {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

#valores .lista-contatos li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

#valores .lista-contatos li a {
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

#valores .lista-contatos li:hover {
  transform: translateX(5px);
}

#valores .lista-contatos li i {
  color: #960306; /* vermelho da sua paleta */
  font-size: 1.3rem;
}

/* BARRA VERTICAL */
#valores .barra {
  width: 3px;
  height: 10rem;
  background: #960306;
  position: relative;
  right: -0.5rem;
  top: calc(50% - 5rem);
}

/* =======================
   RESPONSIVIDADE
======================= */
@media (max-width: 991px) {
  #valores .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  #valores .content {
    max-width: 100%;
  }

  #valores .lista-valores {
    grid-template-columns: 1fr; /* empilha os cards */
    margin: 2rem auto 0;
  }

  #valores .lista-contatos li {
    justify-content: center;
  }
}

@media (max-width: 661px) {
  #valores h2 {
    font-size: 1.6rem;
  }

  #valores .description {
    font-size: 0.95rem;
  }

  #valores .lista-valores li {
    padding: 1rem;
  }

  #valores .lista-contatos li {
    font-size: 1rem;
  }
}


/* EVENTOS */

#eventos {
  background: #111313;
  position: relative;
}

#eventos .container {
  position: relative;
}

#eventos .container .enf {
  right: 1rem;
  top: 1rem;
}



/* segunda parte aqui */



/* EVENTOS */
#eventos .titulos {
  text-align: center;
  margin-bottom: 6rem;
}

#eventos .sombra {
  left: calc(50% - 150px);
  top: -200px;
  width: 300px;
  height: 300px;
  filter: blur(250px);
}

#eventos .lista-eventos {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#eventos .lista-eventos li {
  width: 16rem;
  position: relative;
  border: 1px solid transparent;
}

#eventos .lista-eventos li a {
  padding: 1rem;
}

#eventos .lista-eventos li .img {
  width: 100%;
  height: 15rem;
}

#eventos .lista-eventos li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#eventos .lista-eventos li + li {
  margin-left: 2rem;
}

#eventos .lista-eventos li:hover {
  border: 1px solid black;
  background: #111313;
  border-radius: .2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

#eventos h3 {
  font-weight: 400;
  font-size: .9rem;
  margin-top: .6rem;
  margin-bottom: 1.2rem;
}

#eventos .data {
  border: 1px solid black;
  background: #111313;
  border-radius: .2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 1rem;
  top: -1.75rem;
  height: 3.5rem;
  width: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#eventos .data .dia {
  font-size: 1.2rem;
  font-weight: 900;
}

#eventos .data .mes {
  opacity: .6;
  font-size: .8rem;
}

#eventos .btn {
  display: table;
  margin: 4rem auto 0 auto;
  position: relative;
  z-index: 999;
}

/* EVENTOS – Responsivo */
@media (max-width: 880px) {
  #eventos .lista-eventos li {
    width: 12rem;
  }

  #eventos .lista-eventos li .img {
    height: 10rem;
  }
}

@media (max-width: 600px) {
  #eventos .lista-eventos {
    flex-direction: column;
    align-items: center;
  }

  #eventos .lista-eventos li {
    max-width: 18rem;
    width: 100%;
  }

  #eventos .lista-eventos li .img {
    height: 15rem;
  }

  #eventos .lista-eventos li + li {
    margin-left: 0;
    margin-top: 4rem;
  }
}

/* MODALIDADES */
#modalidades {
  background: #080808;
  text-align: center;
  position: relative;
}

#modalidades .container {
  position: relative;
}

#modalidades .container .enf {
  bottom: 1rem;
  left: 1rem;
}

#modalidades .titulos {
  text-align: center;
  margin-bottom: 6rem;
}

#modalidades .lista-planos {
  display: flex;
  justify-content: center;
}





#modalidades .lista-planos > li {
  padding: 3rem 2rem;
  border: 1px solid black;
  background: #111313;
  border-radius: .2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  max-width: 16rem;
  position: relative;
  transition: .2s;
}

#modalidades .lista-planos > li:hover {
  border: 1px solid #960306;
  background: #1c1f1f;
}

#modalidades .lista-planos > li:nth-of-type(2) {
  border: 1px solid #960306;
  margin-top: -1rem;
}

#modalidades .lista-planos > li .recomendado {
  position: absolute;
  top: -1.5rem;
  right: 0;
  left: 0;
  color: #960306;
}

#modalidades .lista-planos > li h3 {
  text-align: center;
  font-family: 'Days One', sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  text-transform: uppercase;
}

#modalidades .lista-planos > li + li {
  margin-left: 2rem;
}

#modalidades .lista-planos > li ul li + li {
  margin-top: 1rem;
}

#modalidades .lista-planos > li .preco {
  margin-top: 3rem;
  text-align: center;
  font-family: 'Days One', sans-serif;
  font-size: 1.3rem;
  color: #960306;
}

#modalidades .lista-planos > li .preco span {
  font-size: 2rem;
}

#modalidades .sombra {
  left: calc(50% - 150px);
  top: -100px;
  width: 300px;
  height: 300px;
  filter: blur(280px);
}

/* MODALIDADES – Responsivo */
@media (max-width: 830px) {
  #modalidades .lista-planos {
    flex-direction: column;
    align-items: center;
  }

  #modalidades .lista-planos > li + li {
    margin-left: 0;
    margin-top: 3rem;
  }

  #modalidades .lista-planos > li:nth-of-type(2) {
    margin-top: 3rem;
  }
}

/*  CSS BOTAO +MAIS */



.sanfona-botao {
  display: block;
  margin: 1rem auto; /* centraliza o botão */
  padding: 0.4rem 1.2rem;
  font-family: 'Days One', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #e0e0e0, #ffffff);
  color: #111;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

/* Hover e Click com efeito zoom-in */
.sanfona-botao:hover,
.sanfona-botao:active {
  transform: scale(1.07);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #b0b0b0, #ffffff);
}

/* Conteúdo sanfona oculto por padrão */
.sanfona-conteudo {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-family: 'Days One', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Conteúdo ativo */
.sanfona-conteudo.ativo {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

/* Animação de aparecimento suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media screen and (max-width: 991px) {
  .sanfona-botao {
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
  }
  .sanfona-conteudo {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 661px) {
  .sanfona-botao {
    font-size: 0.9rem;
    padding: 0.35rem 0.8rem;
  }
  .sanfona-conteudo {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}


/* FIM */



/* FEEDBACK */

/* FEEDBACK */
#feedback {
  background: #080808;
  color: #fff;
  padding: 4rem 2rem;
}

#feedback h2 {
  color: #fff;
  margin-bottom: 1rem;
}

#feedback .feedback-item {
  max-width: 600px;
  margin: 0 auto;
}

#feedback .feedback-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #960306;
}

#feedback .feedback-text {
  font-style: italic;
  margin: 1rem 0;
  color: #ccc;
}

#feedback .stars i {
  color: #960306;
  margin: 0 2px;
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 991px) {
  #feedback {
    padding: 3rem 1rem;
  }
}

@media (max-width: 661px) {
  #feedback h2 {
    font-size: 1.5rem;
  }
  #feedback .feedback-text {
    font-size: 0.9rem;
  }
}







/* FIM */

/* GALERIA */
#galeria {
  background: #111313;
}

#galeria .textos {
  text-align: center;
}

#galeria ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  grid-gap: 1rem;
  margin-top: 4rem;
}

#galeria ul li {
  overflow: hidden;
  cursor: pointer;
}

#galeria ul li button {
  width: 100%;
  height: 100%;
}

#galeria ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .1s;
}

#galeria ul li img:hover {
  transform: scale(1.1);
}

@media (max-width: 530px) {
  #galeria ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FOOTER */
footer {
  background: #080808;
  padding: 1.5rem 0;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

footer .title-footer {
  font-family: 'Days One', sans-serif;
  margin-bottom: .5rem;
}

footer .menu nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: .5rem;
}

footer .address .endereco {
  margin-bottom: 1rem;
}

footer .address .redes a img {
  width: 1.2rem;
}

footer .address .redes a + a {
  margin-left: .3rem;
}

footer .by {
  padding-top: 2rem;
  text-align: center;
}

@media (max-width: 800px) {
  footer .container {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    text-align: center;
  }

  footer .container .menu nav {
    grid-template-columns: auto;
  }
}

/* MODAL */
#modal {
  position: relative;
  display: none;
}

#modal.show {
  display: block;
}

#modal .backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}




/* terceira parte */




/* MODAL */
#modal .modal {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 100%;
  padding: 0 1rem;
}

#modal .modal .content {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid black;
  background: #1c1f1f;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

#modal .modal .content img {
  width: 100%;
}

#modal .modal .content p {
  margin-top: 1rem;
}

#modal .modal .btn-fechar {
  border: 1px solid black;
  background: #111313;
  border-radius: .2rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -2.5rem;
  right: 1rem;
}

#modal .modal .btn-fechar img {
  width: 1.2rem;
}

#modal .modal .btn-fechar:hover {
  border-color: #59F4AA;
}

/* ANIMAÇÕES */
[data-anima] {
  transition: 0.7s;
  opacity: 0.6;
}

[data-anima="f-bottom"] {
  transform: translate3d(0, 2rem, 0);
}

[data-anima="f-top"] {
  transform: translate3d(0, -2rem, 0);
}

[data-anima="f-left"] {
  transform: translate3d(-2rem, 0, 0);
}

[data-anima="f-right"] {
  transform: translate3d(2rem, 0, 0);
}

[data-anima].animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* POP UP */

/* POPUP - base */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  position: relative;
  font-family: "Arial", sans-serif; /* use a mesma do seu site */
}

.popup-title {
  font-size: 1.8rem;
  color: #950609;
  margin-bottom: 10px;
  font-weight: 900;
}

.popup-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.popup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.popup-form select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #950609;
  margin-bottom: 20px;
  font-size: 1rem;
}

.popup-btn {
  background: #950609;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  background: #c20b0b;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 991px) {
  .popup-content {
    max-width: 400px;
    padding: 1.5rem;
  }
  .popup-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 661px) {
  .popup-content {
    max-width: 90%;
    padding: 1.2rem;
  }
  .popup-title {
    font-size: 1.4rem;
  }
  .popup-btn {
    width: 100%;
  }
}

/* RODAPE DESENVOLVEDOR */

/* BLOCO DE CRÉDITO TECNICO */
footer .by {
  width: 100%;
  padding-top: 1rem;
}

#footer-dev {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #fff;
}

#footer-dev img {
  height: 26px;
}

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

/* Responsivo */
@media (max-width: 991px) {
  #footer-dev img {
    height: 22px;
  }
}

@media (max-width: 661px) {
  #footer-dev img {
    height: 20px;
  }
  #footer-dev span {
    font-size: 13px;
  }
}
