body {
    font-family: Inter, sans-serif !important;
    margin: -52px 0px 0px 0px !important;
}

/* Estilo do menu fixo */
.navbar {
    background-color: #FDF9F6 !important;
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    height: 50px !important;
}

.nav-link {
    color: #111717 !important;
    /*font-size: larger;*/
    text-transform: uppercase;
    font-weight: bold !important;
    padding: 0.5rem 1rem !important;
}

.nav-link.active {
    color: #111717 !important; /* Cor para destacar a seo ativa */
    font-weight: bold !important;
}
    
.nav-link:hover {
    color: #df1000 !important; /* Cor para destacar a seo ativa */
    font-weight: bold !important;
}

/* Estilos para o menu mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
       background-color: #FDF9F6;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        margin-top: 0.5rem;
    }

    .navbar-nav {
        margin-top: 0.5rem;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .navbar-toggler {
        background-color: #212529 !important;
        border: 2px solid #970d05 !important;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17, 23, 23, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

a {
    text-decoration: none !important;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #2c3041;
}
    
.session-margin{
    margin-top: 8rem !important;
}

.social-icon {
    font-size: 30px;
    margin: 0 10px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #e8c4b6; /* Cor destacada ao passar o mouse */
}

p i {
    margin-right: 10px;
    color: #121627;
}
    
p b {
    margin-right: 10px;
    color: #e8c4b6;
}

/* Estilizao do carrossel */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /*background: #f9f9f9;*/
    padding: 20px 0;
}

.partner-carousel {
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: slide 20s linear infinite;
}

.carousel-track img {
    width: 150px; /* Ajuste conforme necess�rio */
    height: auto;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 756px) {
.carousel {
    position: relative;
    width: 50%; /* Metade da largura da tela */
    /*height: 60vh;*/ /* Metade da altura da tela */
    /*margin: 20vh auto;*/ /* Centraliza verticalmente sem sair da tela */

}
}
.carousel-inner {
    border-radius: 10px;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 1.175) !important;
    border: groove;
}

#home {
    background-size: cover; /* Faz com que a imagem cubra toda a se��o */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repeti��o */
    width: 100%; /* Garante que a se��o ocupe toda a largura */
    /*min-height: 100vh;*/ /* Ajusta a altura para cobrir toda a tela */
    display: flex; /* Mant�m o conte�do centralizado */
    align-items: center; /* Alinha os elementos ao centro verticalmente */
    justify-content: center; /* Centraliza o conte�do horizontalmente */
    max-width: 100%;
}




    /* Bot�es personalizados */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        z-index: 10;
    }

    .carousel-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    /* �cones dentro dos bot�es */
    .carousel-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Posi��o dos bot�es */
    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }
    

/* Anima��o do carrossel */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


    .image-container {
        overflow: hidden;
        border-radius: 8px;
    }

    .image-container img {
        transition: transform 0.3s ease-in-out;
        width: 100%;
    }

    .image-container:hover img {
        transform: scale(1.1);
    }

    .diferencial-box {
        position: relative;
        width: 100%;
        height: 250px; /* Altura fixa para uniformidade */
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    }

    .diferencial-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .diferencial-box img:hover {
        transform: scale(1.05);
    }

    /* Caixa de texto fixa no canto inferior esquerdo */
    .texto-sobre-imagem {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7); /* Fundo escuro transl�cido */
        color: white;
        padding: 10px 15px;
        text-align: left;
    }

    .texto-sobre-imagem h4 {
        margin: 0;
        font-size: 1.2rem;
    }

    .texto-sobre-imagem p {
        margin: 5px 0 0;
        font-size: 0.9rem;
    }

    .diferencial-box:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Estilizando as miniaturas da galeria */
    .gallery-img {
        width: 100%;
        height: 150px !important;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s ease;
        border-radius: 10px;
    }
    .gallery-img:hover {
        transform: scale(1.1);
    }

    .img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 20vh;
        height: 20vh;
        border-radius: 50%;
        margin: 0 auto;
        box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    }

    .destaque-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    .destaque-img:hover {
        transform: scale(1.1); /* Efeito de zoom suave */
    }
        
        .featured-post {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        .featured-post img {
            max-width: 400px;
            height: auto;
            flex-shrink: 0;
        }
        .featured-post .content {
            flex: 1;
        }
        .suggested-posts img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  height: 180px;
  border-radius: 5%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
  width: 100%;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding-left: 30px;
  /*width: 40%;*/
}

.team .member .member-bus {
  width: 180px;
  height: 180px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #2c3041;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #bfe0fd;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: gainsboro;
  color: #2c3041;
}

.team .member .social a i {
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #2c3041;
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

.product-category {
 
    /*background: #f0f0f0;*/
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px !important;
    margin-top: 10px;
    color: #666;
}

/* Estilos para a lista de categorias */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
    margin-bottom: 1rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,.125);
    padding: 1rem;
}

.list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item.active {
    background-color: #212529;
    border-color: #212529;
}

/* Estilos para os produtos */
.produto-item {
    transition: all 0.3s ease;
}

.produto-item:hover {
    transform: translateY(-5px);
}

.member {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.member .pic {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 1rem;
}

.member .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-category {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.why-us .accordion-list {
    padding: 0 10px 5px 10px;
  }
  
  .why-us .accordion-list ul {
    padding: 0;
    list-style: none;
  }
  
  .why-us .accordion-list li+li {
    margin-top: 15px;
  }
  
  .why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
  }
  
  .why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
  }
  
  .why-us .accordion-list span {
    color: #cf2030;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
  }
  
  .why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
  }
  
  .why-us .accordion-list .icon-show {
    display: none;
  }
  
  .why-us .accordion-list a.collapsed {
    color: #343a40;
  }
  
  .why-us .accordion-list a.collapsed:hover {
    color: #cf2030;
  }
  
  .why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
  }
  
  .why-us .accordion-list a.collapsed .icon-close {
    display: none;
  }

  @media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  @media (max-width: 992px) {
    .why-us .content {
      padding-top: 30px;
    }
  
    .why-us .accordion-list {
      padding-bottom: 30px;
    }
  }
