/*===============================================INICIALIZAÇÕES====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


* {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    background: transparent;
    list-style: none;
  }
  
  
  :root {
    --azul-1: #028DD0;
    --azul-2: #04328E;
    --azul-3: #009dff;
    --vermelho: rgb(251, 4, 4);
    --botao-laranja: #f19a0e;
    --branca: #ffffff;
    --preta: #111111;
    --texto-title: #555555;
    --bg-branco-2: #edf2f7;
    --bg-branco-3: #f2f2f2;
    --bg-cinza: #f5f5f5;
    --bg-cinza-2: #d3d7d6;
    --bg-cinza-3: #888;
    --opacidade-1: rgba(0, 0, 0, 0.4);
    --opacidade-2: rgba(0, 0, 0, 0.5);
    --opacidade-3: rgba(0, 0, 0, 0.619);
    --linha-header: #e1e9ed28;
    --instagram: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    --whatsapp: #075e54;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
  }
  
  :root {
    --shadow: 0 4px 4px 0 rgba(25, 67, 182, 0);
    --shadow-1: 0 1px 0 0 #028bd071;
    --shadow-2: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  
  :root {
    --button-padding: 8px 15px;
    --button-border-radius: 5px;
    --card-radius: 10px;
  }
  
  /*===============================================ANIMAÇÃO SCOLL========================================================*/
  .overlay {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  }
  
  .overlay.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /*=================================================SOBRE NÓS======================================*/
  body {
    background-color: var(--branca);
    color: var(--preta);
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  
  .titulo-principal {
    font-size: 1.8rem;
    color: var(--azul-1);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
  .secao-sobre {
    padding: 100px 20px;
    background-image: url('../img/limpeza\ 04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-blend-mode: overlay;
    background-color: var(--opacidade-3);
    color: var(--branca);
  }
  
  .secao-sobre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .container-sobre {
    position: relative;
    z-index: 2;
  }
  
  .descricao {
    font-size: 18px;
    color: var(--branca);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-align: center;
  }
  
  .imagem-sobre img {
    max-width: 700px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-2);
    margin: 0 auto;
  }
  
  /*=================================================FOCO-VISÃO-MISSÃO-VALORES======================================*/
  .secao-foco {
    background-color: var(--bg-branco-3);
    padding: 60px 20px;
  }
  
  .container-foco {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blocos-foco {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .bloco {
    background-color: var(--branca);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-2);
    padding: 30px 20px;
    max-width: 300px;
    flex: 1 1 250px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .bloco:hover {
    transform: translateY(-10px);
  }
  
  .icone-foco {
    font-size: 1.5rem;
    color: var(--azul-1);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .bloco h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--preta);
    text-align: center;
  }
  
  .bloco p,
  .bloco ul {
    font-size: 16px;
    color: var(--texto-title);
    text-align: center;
  }
  
  .bloco ul {
    list-style-type: square;
    padding-left: 20px;
  }
  
  /*=================================================PARCEIROS=====================================*/
  .secao-parceiros {
    background: var(--branca);
    padding: 60px 0;
  }
  
  .slider {
    overflow: hidden;
    max-width: 100%;
    margin-top: 40px;
  }
  
  .slide-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(150px * 14);
  }
  
  .slide {
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  
  .slide img {
    width: 150px;
    object-fit: contain;
    transition: 0.5s;
    border-radius:1.5rem;
  }
  
  .slide img:hover {
    filter: none;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(-50%);
    }
  }
  
  /*===================================================MENSAGEM===================================================*/
  .secao-diretor {
    background: linear-gradient(60deg,var(--bg-branco-2), var(--azul-3));
    padding: 100px 20px;
  }
  
  .container-diretor {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .texto-diretor {
    flex: 1 1 500px;
  }
  
  .texto-diretor p {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--branca);
    text-align: center;
    margin-bottom: 20px;
    font-weight: none;
    font-family: "Dancing Script", sans-serif;
    font-weight: bold;
    font-style: normal;
  }
  
  .assinatura {
    font-weight: bold;
    color: var(--azul-2);
    font-weight: none;
    font-family: "Dancing Script", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 1.5rem;
  }
  
  .imagem-diretor {
    flex: 1 1 350px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .imagem-diretor img {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-2);
    max-width: 60%;
  }
  
  
  @media (max-width: 768px) {
    .descricao {
      background-color: rgba(18, 127, 223, 0.514);
      padding: 15px;
      border-radius: 10px;
    }
  }