  @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxygen:wght@300;400;700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

  :root{
    --fonte1: 'Open Sans', sans-serif; /* titulo da capa*/
    --fonte2: 'Quicksand', sans-serif; /* titulo cidade */
    --fonte3: 'Nunito', sans-serif; /* texto card */
    --fonte4: 'Grotesk', sans-serif; /* texto valor card */
  }

  body{
    padding: 0px;
    margin: 0;
  }

/* Estilo para o menu fixo no topo */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(#23238E);
    color: white;
    padding: 10px 20px;
    z-index: 1000; /* Para garantir que o menu fique sobre outros conteúdos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: top 0.3s ease; /* Transição suave */
  }

  #logo-insta, #logo-tiktok, #logo-calendar, #logo-home{
    max-width: 30px;
    max-height: 30px;
  }

  #contato-contato{
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    border-radius: 20px 20px;
    font-family: var(--fonte2);
  }

  .titulo-capa{
    font-family: var(--fonte1);
    font-size: 3em;
  }

  /* Estilos para a lista de cidades */
  #city-container{
    background-color: #247ba0;
  }

  .title-city, .title-city a{
    font-size: 21px;
    font-weight: 400;
    font-family: var(--fonte2);
    text-decoration: none;
    color: black;
  }

  .city-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin: 0px;
    padding: 10px 10px;
  }

  .city-filter li {
      list-style: none;
      margin: 0px 10px;
      cursor: pointer;
  }

  #menu-list li {
    margin: 0px 20px;
  }
  #menu-list li:last-child {
    margin: 0px 40px 10px 0px;
  }
  
  .menu.hidden {
    top: -60px; /* Move o menu para fora da tela */
  }
  
  .menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .menu li {
    margin: 0px 50px 0px 15px;
  }
  
  .menu a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
  }

  .menu a:hover {
    color: black;
    background-color: white;
    border-radius: 20px 20px; /* REVISAR ESTA PARTE */
  }

#btn-entre-contato{
  background-color: white;
  color: black;
  padding: 15px;
  border-radius: 25px;
  font-size: 1.2rem;
  text-decoration: none;
  font-family: var(--fonte2);
  font-size: 1.6em;
  font-weight: 700;
}

#btn-entre-contato:hover{
  background-color: black;
  color: white;
}

/* Estilos para o modal */
.modal {
  display: none; /* Esconde o modal por padrão */
  position: fixed; /* Fixa o modal na tela */
  z-index: 1; /* Garante que o modal fique acima de outros elementos */
  left: 0;
  top: 0;
  width: 100%; /* Largura total da tela */
  height: 100%; /* Altura total da tela */
  overflow: auto; /* Habilita o scroll se necessário */
  background-color: rgb(0,0,0); /* Cor de fundo */
  background-color: rgba(0,0,0,0.4); /* Cor de fundo com opacidade */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* Centraliza o modal */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Largura do modal */
  max-width: 450px; /* Largura máxima do modal */
  border-radius: 10px;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin-top: 10px;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content textarea{
  resize: vertical;
  border-radius: 10px;
  padding: 10px;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #555;
}

#name, #email, #message, form button {
  width: 90%;
}
form button {
  width: 95%;
}
  
/* Ícone de hambúrguer para dispositivos móveis */
.menu-hamburguer {
  display: none;
  font-size: 30px;
  color: black;
  cursor: pointer;
}
/**********************************************************/

/* Seção de Galeria */
  .galeria {
    padding: 50px 20px;
    background-image: linear-gradient(180deg, lightblue, white);
    text-align: center;
  }
  
  .galeria .section-title {
    font-size: 2.5rem;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #333;
    font-family: var(--fonte2);
  }
  
  .container {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  /* Estilo dos Cards */
  .card {
    width: 29%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    overflow: hidden;
    position: relative; /* Adiciona esta linha para tornar o card um contêiner de posicionamento relativo */
    max-width: 600px;
  }

  .card p{
    font-family: var(--fonte3);
  }

  .card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  h4{
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    margin-right: 20px;
    font-family: var(--fonte4);
    font-size: 12px;
    margin-left: 40px;
  }

  h5{
    font-weight: 700;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    font-family: var(--fonte4);
    font-size: 16px;
    margin-right: 40px;
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: opacity 0.3s ease-in-out; /* Adiciona transição suave */
  }
  
  .card h3 {
    font-size: 1.6rem;
    margin: 20px 0 10px;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
  }

  .card .btn {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .card .btn:hover {
    background-color: #555;
  }

  .card.expanded .opcoes-menu {
    display: block;
  }
  
  /* Botão de Contato */
  .contato-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
  }
  
  .contato-btn:hover {
    background-color: #555;
  }
  
  /* Menu de opções (oculto por padrão) */
  .opcoes-menu {
    display: none;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px;
  }
  
  .opcoes-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .opcoes-menu li {
    margin: 10px 0;
  }
  
  .opcoes-menu button {
    background-color: lightblue;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .opcoes-menu button:hover {
    background-color: rgb(100, 216, 230);
  }

  /* Opções do menu após click */

  .opcoes-menu {
      display: none;
      position: absolute;
      background-color: white;
      border: 1px solid #ccc;
      padding: 10px;
      z-index: 1000;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 10px;
  }
  
/* Tornar a section responsiva */
  .imagem-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Define a altura da seção para preencher a tela inteira */
    overflow: hidden;
  }

  .imagem-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz com que o vídeo cubra toda a área da seção */
    transform: translate(-50%, -50%);
  }
  
  /* Estilizando o container do texto */
  .texto-container {
    position: absolute;
    top: 40%; /* Coloca o texto no centro vertical */
    right: 75%; /* Coloca o texto no centro horizontal */
    transform: translate(40%, -80%); /* Ajusta o texto para que ele fique realmente centralizado */
    color: black; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
    max-width: 400px;
    padding: 0px 10px 30px 10px;
    background: rgba( 255, 255, 255, 0.35 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
  }  

/* Trabalhando a responsividade */

/* Smartphones pequenos */
@media (min-width: 320px) and (max-width: 374px) {
  .galeria {
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu ul {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px; /* Para não sobrepor o cabeçalho */
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
  }
  .menu li {
    text-align: center;
    margin: 10px 0;
  }
  .menu-hamburguer {
    display: block;
    font-size: 30px;
    color: black;
    cursor: pointer;
    margin-right: 40px;
  }
  .menu.active ul {
    display: flex;
  }
  .imagem-section {
    height: 50vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: center;
    right: 0%;
    top: 90%;
    max-width: 150px;
    max-height: 150px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 8px;
  }
  #btn-entre-contato {
    margin-left: 5px;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 12px;
    text-align: center;
  }
  .card{
    width: 250px;
  }
}

@media (min-width: 375px) and (max-width: 424px) {
  .galeria {
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu ul {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px; /* Para não sobrepor o cabeçalho */
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
  }
  .menu li {
    text-align: center;
    margin: 10px 0;
  }
  .menu-hamburguer {
    display: block;
    font-size: 30px;
    color: black;
    cursor: pointer;
    margin-right: 40px;
  }
  .menu.active ul {
    display: flex;
  }
  .imagem-section {
    height: 50vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: center;
    right: 0%;
    top: 90%;
    max-width: 150px;
    max-height: 150px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 8px;
  }
  #btn-entre-contato {
    margin-left: 5px;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
    text-align: center;
  }
  .card{
    width: 250px;
  }
}

@media (min-width:425px) and (max-width: 479px) {
  .galeria {
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu ul {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px; /* Para não sobrepor o cabeçalho */
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
  }
  .menu li {
    text-align: center;
    margin: 10px 0;
  }
  .menu-hamburguer {
    display: block;
    font-size: 30px;
    color: black;
    cursor: pointer;
    margin-right: 40px;
  }
  .menu.active ul {
    display: flex;
  }
  .imagem-section {
    height: 50vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: center;
    right: 0%;
    top: 90%;
    max-width: 200px;
    max-height: 200px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 10px;
  }
  #btn-entre-contato {
    margin-left: 5px;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
    text-align: center;
  }
  .card{
    width: 350px;
  }
}

@media (min-width: 480px) and (max-width: 480px) {
  /* Estilos para telas pequenas */
  .galeria {
    display: grid;
    grid-template-columns: 1fr;
  }
  .menu ul {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px; /* Para não sobrepor o cabeçalho */
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
  }
  .menu li {
    text-align: center;
    margin: 10px 0;
  }
  .menu-hamburguer {
    display: block;
    font-size: 30px;
    color: black;
    cursor: pointer;
    margin-right: 40px;
  }
  .menu.active ul {
    display: flex;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    top: 90%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 360px;
  }
}

/* Smartphones médios e tablets menores */
@media (min-width: 768px) and (max-width: 768px) {
  /* Estilos para dispositivos móveis e tablets em modo retrato */
  .galeria {
    display: grid;
    grid-template-columns: 2fr;
  }
  .menu ul {
    display: none;
    width: 200px;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px; /* Para não sobrepor o cabeçalho */
    right: 5%;
    border-radius: 5px;
    padding: 10px 0;
    border-radius: 10px 0px 0px 10px;
  }
  .menu li {
    text-align: center;
    margin: 10px 10px;
  }
  #menu-list li:last-child {
    margin: 0px;
  }
  .menu-hamburguer {
    display: block;
    font-size: 30px;
    color: black;
    cursor: pointer;
    margin-right: 40px;
  }
  .menu.active ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    right: 10%;
    top: 25%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 320px;
  }

}

/* Tablets grandes e laptops pequenos */
@media (min-width: 1024px) and (max-width: 1024px) {
  /* Estilos para tablets e telas médias */
  .galeria {
    display: grid;
    grid-template-columns: 3fr;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    left: 0%;
    top: 25%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 280px;
  }
}

/* Tablets grandes e laptops pequenos */
@media (min-width: 1280px) and (max-width: 1280px) {
  /* Estilos para tablets e telas médias */
  .galeria {
    display: grid;
    grid-template-columns: 3fr;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    left: 0%;
    top: 25%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 280px;
  }
}

/* Tablets grandes e laptops pequenos */
@media (min-width: 1366px) and (max-width: 1366px) {
  /* Estilos para tablets e telas médias */
  .galeria {
    display: grid;
    grid-template-columns: 3fr;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    left: 0%;
    top: 25%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 280px;
  }
}

/* Laptops grandes e desktops */
@media (min-width: 1440px) and (max-width: 1440px) {
  /* Estilos para laptops maiores */
  .galeria {
    display: grid;
    grid-template-columns: 3fr;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: flex;
    justify-content: flex-start;
    left: 0%;
    top: 25%;
    max-width: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 12px;
  }
  #btn-entre-contato {
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 5px 5px 5px;
  }
  .city-filter li, .title-city a {
    font-size: 14px;
  }
  .card{
    width: 400px;
  }
  .opcoes-menu{
    margin-top: 50px;
  }
}

/* Monitores grandes e ultrawide */
@media (min-width: 1920px) and (max-width: 1920px) {
  /* Estilos para telas Full HD ou maiores */
  .galeria {
    display: grid;
    grid-template-columns: 4fr;
  }
  .imagem-section {
    height: 60vh; /* Reduz a altura da imagem em telas menores */
  }
  .texto-container {
    position: inherit;
    display: block;
    justify-content: flex-start;
    left: 0%;
    top: 50%;
    width: 300px;
    height: 340px;
    padding: 10px;
  }
  .titulo-capa {
    font-size: 40px;
  }
  #btn-entre-contato {
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
  }
  .city-filter li, .title-city a {
    font-size: 26px;
  }
  .divisao{
    font-size: 26px;
  }
  .card{
    width: 420px;
  }
  .opcoes-menu{
    margin-top: 60px;
  }
}