body, html {
    background-color: #edebe6;
}
#hero, #header, .navbar-mobile ul {
    background: #a60321;
}
#hero {
    padding-top: 0!important;
    /* background: url("../img/slide1.jpg") no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    background-position-y: -256px;*/
    position: relative;
    overflow: hidden;
    height: 80vh;
}
#hero:before {
  content: "";
  background: rgba(130, 129, 129, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight:100;
  color: #ffffff;
  text-shadow: 1px 1px 7px black;
  position: relative;
}

#hero .navbar {
      padding: 10vh;
    background-color: #00000045;
}
.swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
      z-index: 0;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100%; /* Garante que os slides cubram a tela */
}
.swiper-slide img {
  width: 100%; /* Preenche a largura do slide */
  height: 100vh; /* Preenche a altura da viewport */
  object-fit: cover; /* Ajusta a imagem para cobrir o container, mesmo que precise cortar */
  position: absolute; /* Garante que a imagem fique fixada no slide */
  top: 0;
  left: 0; /* Alinha à esquerda */
}


.subtitle, h1, h2, h3, .navbar a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.breadcrumbs h2 {
  text-align: left;}

.subtitle {
    color: #B8FFE1;
    font-size: 20px;
}
#hero .container {
    z-index: 3;
}

.imageshome img {
    position: absolute;
    z-index: 2;
}


.navbar-mobile {
  height: 459px;
}

#mic {
    right: 0;
    bottom: 33%;
}

.homepage h1 {
    font-size: 50px;
    color: #113A2D;
    text-align: center;
}
h1::after, h2.line::after {
  content: "";             /* Necessário para o ::after funcionar */
  display: block;          /* Transforma em bloco */
  width: 80px;            /* Largura da linha */
  height: 2px;             /* Espessura da linha */
  background-color: #a60321; /* Cor da linha */
  margin: 10px auto 0 auto;    /* Centraliza a linha e define o espaçamento */
  /* Espaçamento entre o h1 e a linha */
}

section#about {
    background-color: white;
} 
#about h2 {
    text-align: center;
}
#about h2, #about .card-text {
    min-height: 120px;
}
/* responsive */
@media (max-width: 992px) {
    .imageshome img {
      max-width: 44%;
    }
    .logosa img {
      width: 100px!important;
    }

    #hero h1 {
      margin-top: 393px;
      font-size: 27px;
    }

    #hero .navbar {
      padding: 40px;
    }
   
  }

  .mobile-nav-toggle {
    color: white;
    font-size: 45px;
  }
  

  .navbar a {
    font-size: 17pt;
    color: white!important;
    font-weight: 600;
  }
@media (max-width: 1145px) {
 .navbar a {
    font-size: 13pt;
  }
  }

  .navbar .dropdown ul a {
    color: black!important;
  }

  #hero .btn-get-started {
    background: #7D56FC;
    border-color: #8768ec;
  }

  .breadcrumbs {
    margin-top: 170px;
  }

  #footer .footer-top .footer-links ul a {
    font-family: "Quicksand", sans-serif;
    font-size: 25px;
  }
  .pagenavigation a:first-child {
    margin-right: 15px;
  }

  
  .logosa img {
    width: 200px;
  }

  .blackbg {
    background-color: #0e0e0e;
  }
  .blackbg p,.blackbg h1,.blackbg h2 {
    color: #ebeff3;
  }

#categories .category {
    overflow: hidden;
}

#categories .category img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

#categories .category:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
}

#categories h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#categories .category:hover h4 {
    opacity: 1;
}

#categories h4 a {
    color: inherit;
    text-decoration: none;
}

#categories h4 a:hover {
    text-decoration: underline;
}

.gallery .col-md-6 {
  width: 525px;    /* Largura desejada */
  height: 250px;   /* Altura desejada */
  overflow: hidden; /* Esconde o excesso */
  position: relative;
  margin:15px;
}

.gallery .col-md-6 a img {
  position: absolute;
  top: 0px;      /* Ajuste vertical */
  left: 0px;    /* Ajuste horizontal */
  min-width:525px;
}

.gallery .col-md-6 a p {
  position: relative;
  margin-top: 220px; /* Espaço abaixo da imagem cortada */
  background-color: #212529;
}

