/* Reseta estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Permite quebrar linhas em telas pequenas */
}

.header .logo-container h1 {
    margin: 0; /* Remove margens desnecessárias */
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; /* Centraliza o texto em telas menores */
}

.client-area-btn {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

/* Hover para o botão */
.client-area-btn:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column; /* Organiza os itens em coluna */
        align-items: center; /* Centraliza os itens */
    }

    .client-area-btn {
        margin-top: 10px; /* Adiciona espaçamento entre o botão e o título */
        width: 100%; /* Faz o botão ocupar toda a largura */
        max-width: 200px; /* Define um tamanho máximo para o botão */
    }

    .header .logo-container h1 {
        font-size: 18px; /* Ajusta o tamanho da fonte em telas menores */
    }
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 50px 20px;
}

.about-video {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    border-bottom: 2px solid #4a4a4a;
    display: inline-block;
    padding-bottom: 5px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

.about-text strong {
    color: #000000;
    font-weight: bold;
}




  /* Seção de Missão, Visão e Valores */
  .mission-vision-values {
    background: #ffffff44; /* Fundo branco para contraste */
    padding: 60px 20px;
    text-align: center;
   
  }
  
  .mission-vision-values .section-headers h2 {
    font-size: 34px;
    color: rgb(0, 0, 0); /* Título azul escuro */
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out; /* Animação suave */
  }
  
  .mission-vision-values .cards-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Para ajustar em telas menores */
    animation: fadeIn 1s ease-in-out; /* Animação suave */
  
  }
  
  .mission-vision-values .card {
    background: #4a4a4a; /* Fundo azul claro */
    color: #ffffff; /* Texto branco */
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgb(5, 2, 8); /* Sombra para destacar os cards */
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave ao passar o mouse */
    font-family: Arial;
  }
  
  .mission-vision-values .card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .mission-vision-values .card p {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .mission-vision-values .card:hover {
    transform: scale(1.05); /* Leve aumento ao passar o mouse */
    box-shadow: 0 15px 35px  rgb(32, 30, 34), /* Sombra mais intensa */
  }
  
  @media (max-width: 768px) {
    .mission-vision-values .cards-container {
        flex-direction: column;
        align-items: center;
    }
  
    .mission-vision-values .card {
        width: 100%;
        max-width: 350px; /* Ajuste de largura máxima */
        margin-bottom: 20px; /* Espaçamento entre os cards */
    }
  }
  .lista {
    padding-left: 10px;
    font-size: 1.2rem;
    line-height: 3;
    padding-top: 15px;
    list-style-type: none; /* Remove o marcador (bullet) */
    font-family: Arial;
  }
/* Container da seção */
.services {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase; /* Títulos em maiúsculas */
}

.services-timeline {
    position: relative;
    margin: 20px auto;
    padding: 20px 0;
    width: 80%;
    border-left: 4px solid #a0a0a0; /* Linha da timeline */
}

.timeline-item {
    position: relative;
    margin: 20px 0;
    padding-left: 50px;
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 10px;
    background-color: #000000; 
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    border: 4px solid #f9f9f9;
}

.timeline-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #000000; /* Subtítulos em cinza */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.5;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Tornar a linha da timeline visível somente no meio */
.services-timeline:before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #a0a0a0; /* Cor cinza */
}
.contact-prompt {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #555; /* Texto em cinza */
}

.contact-prompt p {
    margin: 0;
}

.contact-prompt a {
    color: #1b1b1b; /* Link em cinza */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-prompt a:hover {
    color: #a0a0a0;
     /* Link fica mais escuro ao passar o mouse */
}


/* Rodapé */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-icons {
    margin-top: 10px;
}

.footer-icons a {
    color: #fff; /* Ícones brancos */
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
    color: #a0a0a0; /* Ícones em cinza no hover */
    transform: scale(1.1); /* Leve aumento ao passar o mouse */
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.2);
}

/* Animação para o ícone flutuar */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
