/* ============================ */
/*         ESTILOS GERAIS       */
/* ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@font-face {
    font-family: 'Behatrice';
    src: url('../style/fonts/behatrice.ttf') format('truetype'),
         url('../style/fonts/Behatrice.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Behatrice', sans-serif;
    background-color: #f4f4f4;
    color: #535151;
}


h2 {
    font-size: 24px;

    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}


/* ============================ */
/*         CABEÇALHO            */
/* ============================ */

header {
    position: fixed; /* Fixa o cabeçalho no topo */
    top: 0; /* Mantém no topo da tela */
    left: 0;
    width: 100%; /* Faz ocupar toda a largura */
    background: #021d49; /* Cor de fundo para cobrir o conteúdo abaixo */
    padding: 20px;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
    align-items: center;
}

/* Adiciona um espaçamento no topo para evitar sobreposição do conteúdo */
body {
    padding-top: 80px; /* Deve ser igual ou maior que a altura do header */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center; /* Alinha verticalmente os itens */
    gap: 20px;
}

nav ul li {
    display: flex;
    align-items: center; /* Garante que os itens fiquem centralizados */
}


.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}



.cl_areacliente {
    display: flex;
    align-items: center; /* Alinha o texto verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    padding: 8px 18px; /* Ajuste para que fique semelhante aos outros links */
    border: 3px solid white; /* Borda branca grossa */
    background: transparent; /* Fundo transparente */
    color: white; /* Texto branco */
    border-radius: 25px; /* Cantos arredondados */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none; /* Remove o sublinhado */
    height: 40px; /* Define uma altura consistente */
    transition: all 0.3s ease-in-out;
}

/* Efeito hover ao passar o mouse */
.cl_areacliente:hover {
    background: white; /* Fica branco ao passar o mouse */
    color: black; /* Texto preto ao passar o mouse */
}




/* ============================ */
/*        SEÇÃO HERO (IMAGEM)    */
/* ============================ */
.cl_imagem {
    text-align: center;
    padding: 0px 0px;
    position: relative;
}



.cl_imagem img {
    width: 100%; /* Faz a imagem ocupar toda a largura da seção */
    height: auto; /* Mantém a proporção correta */
    display: block; /* Remove espaçamento extra abaixo da imagem */
}

.cl_imagem h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para melhor legibilidade */
    padding: 10px 20px;
    border-radius: 5px;
}



/* ============================ */
/*      SEÇÃO SERVIÇOS          */
/* ============================ */
.cl_servicos {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.cl_servicos h2 {
    font-size: 26px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

/* Configuração do Swiper (Carrossel) */
.swiper {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 50px;
    overflow: hidden; /* Evita que os slides fiquem invisíveis */
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
    min-height: 250px; /* Garante altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Ícones dentro do carrossel */
.circle-check {
    display:flex;
    justify-content: lef;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: green;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
}

/* Botões de navegação do Swiper */
.swiper-button-next, .swiper-button-prev {
    color: black;
    top: 50%; /* Ajusta a posição dos botões */
    transform: translateY(-50%);
}

/* Paginação do Swiper */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
}



/* ============================ */
/*       CARDS MODERNOS SERVIÇOS       */
/* ============================ */
.servicos {
    background-color: #ffffff;
    padding: 10px 20px 10px 25px;
    border-left: 5px solid #021d49; /* Borda azul escura à esquerda */
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: 250px;
    gap: 10px;
}

.servicos h3 {
    font-size: 20px;
    color: #021d49;
    margin-bottom: 10px;
    border: none; /* Remove linha inferior se estiver herdando */
}

.servicos p {
    font-size: 15px;
    line-height: 1.6;
}

/* Efeito ao passar o mouse */
.servicos:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* Para garantir espaçamento entre os slides */
.swiper-slide {
    margin: 10px;
}




/* ============================ */
/*      SEÇÃO CERTIFICAÇÃO      */
/* ============================ */
.cl_certificacao {
    background-color: #d9dce0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Ajuste do título para ficar no topo, fora da div */
.cl_certificacao h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.certificacao-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    border: 3px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Ajuste do container que contém a imagem e o h4 */
.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px; /* Espaço entre a imagem e o h4 */
}

/* Ajuste da imagem à esquerda */
.imagem {
    width: 250px;
    height: auto;
    flex-shrink: 0; /* Impede que a imagem diminua */
}

/* Ajuste do h4 para ficar centralizado ao lado da imagem */
h4 {
    flex: 1; /* Ocupa o espaço restante ao lado da imagem */
    text-align: center;
}

/* Ajuste do conteúdo do parágrafo abaixo da div */
.certificacao-texto p {
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .imagem {
        width: 200px;
    }

    h4 {
        width: 100%;
    }
}





/* ============================ */
/*          CONTATO             */
/* ============================ */
.cl_contato {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.cl_contato h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}

.contato-container ul {
    flex: 1;
    list-style: none;
    padding: 0;
}

.contato-container ul li {
    margin-bottom: 0px;
}

h3{
    margin-top: 20px;
    border-bottom: 1px solid rgb(145, 140, 140); /* Espessura, estilo e cor da linha */
    width: 100%; /* Garante que a linha ocupe toda a largura da div */
    padding-bottom: 0px; /* Espaçamento opcional */
}

.form-container {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-container input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container textarea {
    width: 100%;
    padding: 100px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    background-color: #000;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.form-container button:hover {
    background-color: #333;
}


.form-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz o form ocupar todo o espaço disponível */
    height: 100%;
}

.form-container textarea {
    flex-grow: 1; /* Faz o textarea ocupar todo o espaço vertical disponível */
    min-height: 200px; /* Define uma altura mínima */
    resize: none; /* Opcional: impede redimensionamento manual */
}


/* ============================ */
/*           RODAPÉ             */
/* ============================ */
footer {
    background: #021d49;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin-bottom: 10px;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}





.circle-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: green; /* Cor do círculo */
    color: white; /* Cor do ✔ */
    border-radius: 50%; /* Faz o círculo */
    font-size: 24px;
    font-weight: bold;
}


/* ============================ */
/*      SEÇÃO CONTATO           */
/* ============================ */
.cl_contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Caixa que contém toda a seção */
.contato-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    border: 3px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    gap: 20px;
}

/* Ajuste da lista de contatos */
.contato-container ul {
    flex: 1;
    padding: 0;
    list-style: none;
}

.contato-container h3 {
    margin-top: 15px;
}

.contato-container li {
    margin-bottom: 10px;
}

/* Ajuste do formulário */
.form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    padding: 10px;
    border: none;
    background-color: #021d49;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #013080;
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-container form {
        max-width: 100%;
    }
}



/* ============================ */
/*         CARD CONTATO          */
/* ============================ */

.cards-contato {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    width: 100%;
}

.card-contato {
    background: #ffffff;
    border-left: 5px solid #021d49;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.card-contato h3 {
    margin: 5px;

    color: #021d49;
    font-size: 18px;
}

.card-contato p {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.4;
}

.card-contato a {
    color: #021d49;
    text-decoration: none;
    font-weight: bold;
}

.card-contato:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* ============================ */
/*         CARD SASSMAQ          */
/* ============================ */
.cl_certificacao {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}


.certificacao-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  padding: 40px;
}

.imagem-lateral img {
  width: 260px;
  height: 200px;
  border-left: 5px solid #021d49;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
  border-radius: 10px;
}


.certificacao-grid {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.linha {
  display: flex;
  gap: 20px;
  justify-content: center;
}



/* Estilo da imagem dentro do card */
.imagem-certificacao {
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}
.card-beneficio {
  flex: 1;
  background: white;
  border-left: 5px solid #021d49;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px; /* altura padronizada */
}

.card-beneficio h3 {
  font-size: 16px;
  color: #021d49;
  margin-bottom: 8px;
  margin-top: 0;
}

.card-beneficio p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 900px) {
  .linha {
    flex-direction: column;
    align-items: center;
  }

  .card-beneficio {
    width: 100%;
  }
}






