
/* IMAGEM BANNER WEB */
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .swiper-slide img {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide:hover img {
    transform: scale(1.08) rotate(1deg);
  }

  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.3) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
  }

  .swiper-slide:hover::before {
    left: 150%;
  }

  .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 0 rgba(255,255,255,0.2);
    transition: all 0.4s ease;
  }

  .swiper-slide:hover::after {
    box-shadow: inset 0 0 50px 0 rgba(255,255,255,0.2);
  }

  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(0.8);
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
    color: white;
  }






        /* CABEÇARIO */

.main-menu ul.megamenu > li > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cor-tema);
    transition: all 0.3s ease;
}

.main-menu ul.megamenu > li > a:hover:after {
    width: 80%;
    left: 10%;
}



/* SOBRE NOS / SERVIÇOS */

/* Estilos padrão para múltiplas páginas */

/* Estilos para a seção de introdução */
.pagina-intro {
    margin-bottom: 40px;
}

.pagina-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pagina-subtitulo {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pagina-divisor {
    width: 80px;
    height: 3px;
    background: #3498db;
    margin: 15px auto;
    position: relative;
}

.pagina-divisor span {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--cor-tema);
    position: absolute;
    right: 0;
}

/* Estilos para a seção de título */
.pagina-secao-titulo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pagina-secao-descricao {
    font-size: 1.1rem;
    color: #666;
}

/* Estilos para cards */
.pagina-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin-bottom: 20px;
}

.pagina-card-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.pagina-card-texto {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Estilos para links */
.pagina-link {
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagina-link:hover {
    color: #2c3e50;
    text-decoration: none;
}

/* Estilos para botões padrão */
.pagina-botao {
    display: inline-block;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
    cursor: pointer;
}

.pagina-botao:hover, 
.pagina-botao:focus {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.pagina-botao i {
    margin-right: 8px;
}

/* Estilos para botão WhatsApp */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
}

/* Animação de pulse para o botão */
.pulse {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.05);
    }
    
    100% {
        transform: scale(1);
    }
}

/* Estilos para listas com ícones */
.pagina-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagina-lista li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #555;
}

.pagina-lista-icon {
    color: #3498db;
    margin-right: 10px;
    font-size: 18px;
}

/* Estilos do accordion para a página de serviços */
.servicos-accordion {
    margin-top: 20px;
}

.servicos-panel {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.servicos-panel-cabecalho {
    background-color: #f8f9fa;
    padding: 0;
    border: none;
}

.servicos-toggle {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    position: relative;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.servicos-toggle:hover {
    background-color: #f1f1f1;
    color: #3498db;
    text-decoration: none;
}

.servicos-toggle:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: #3498db;
}

.servicos-toggle:not(.collapsed):after {
    transform: translateY(-50%) rotate(180deg);
}

.servicos-panel-conteudo {
    padding: 20px;
    background-color: #fff;
}

.servicos-descricao {
    color: #666;
    line-height: 1.6;
}

.servicos-vazio {
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Estilos para a página Sobre Nós - fotos */
.sobrenos-foto-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.sobrenos-img-principal {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.sobrenos-foto-wrapper:hover .sobrenos-img-principal {
    transform: scale(1.05);
}

.sobrenos-foto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(52, 152, 219, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.sobrenos-foto-descricao {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-bottom: 25px;
}

.sobrenos-galeria {
    margin-top: 20px;
}

.sobrenos-foto-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sobrenos-foto-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sobrenos-foto-item:hover img {
    transform: scale(1.05);
}

.sobrenos-valor-item {
    margin-bottom: 25px;
}

.sobrenos-valor-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 10px 0;
}

.sobrenos-valor-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Estilos para a página de Termos de Uso */
.termos-navegacao {
    margin-bottom: 30px;
}

.termos-indice {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.termos-indice li {
    flex: 0 0 50%;
    margin-bottom: 10px;
}

.termos-indice-link {
    display: inline-block;
    padding: 5px 0;
}

.termos-indice-link:hover {
    transform: translateX(5px);
}

.termos-secao {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.termos-secao:target {
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.2);
    transform: translateY(-5px);
}

.termos-texto {
    color: #666;
    line-height: 1.7;
}

.termos-texto p {
    margin-bottom: 15px;
}

.termos-lista li {
    padding-left: 5px;
}

.termos-contato-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.termos-contato-info p {
    margin-bottom: 8px;
}

.termos-atualizacao {
    font-style: italic;
    color: #999;
    margin-top: 30px;
    text-align: right;
}

.termos-botao-container {
    margin: 40px 0;
}

/* Responsividade */
@media (max-width: 767px) {
    .pagina-titulo {
        font-size: 2rem;
    }
    
    .pagina-card {
        margin-top: 20px;
    }
    
    .termos-indice li {
        flex: 0 0 100%;
    }
    
    .sobrenos-galeria .col-xs-6 {
        padding: 0 5px;
    }
}

 /* Tamanho personalizado para o botão WhatsApp desta página */
        .whatsapp-btn {
            font-size: 1.7rem;
        }



/* Estilos específicos para a página de FAQ - Adicione ao seu CSS padrão */

/* Categorias de FAQ */
.faq-categorias {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-categoria-link {
    display: inline-block;
    margin: 0 15px;
    padding: 8px 5px;
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
}

.faq-categoria-link:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.faq-categoria-link.active:after {
    width: 100%;
}

/* Cartão de FAQ */
.faq-card {
    border-radius: 8px;
}

/* Lista de perguntas */
.faq-lista {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo da pergunta */
.faq-pergunta {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-pergunta:hover {
    background-color: #f1f1f1;
}

.faq-pergunta.active {
    background-color: #e8f4fc;
}

.faq-icon {
    color: #3498db;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-pergunta h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    flex-grow: 1;
}

.faq-seta {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-pergunta.active .faq-seta {
    transform: translateY(-50%) rotate(180deg);
}

/* Estilo da resposta */
.faq-resposta {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

.faq-resposta.in {
    padding: 20px;
}

.faq-resposta p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-resposta ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-resposta ul li {
    margin-bottom: 8px;
    color: #666;
}

.faq-resposta a {
    color: #3498db;
    font-weight: 500;
}

/* Seção de contato rápido */
.faq-contato {
    margin: 40px 0 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-contato p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Responsividade */
@media (max-width: 767px) {
    .faq-categoria-link {
        margin: 0 8px;
        font-size: 0.95rem;
    }
    
    .faq-pergunta h3 {
        font-size: 15px;
    }
    
    .faq-pergunta {
        padding: 12px 15px;
    }
    
    .faq-icon {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .faq-seta {
        right: 15px;
    }
}

