body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
  }

.header-entry {
    text-align: center;
    margin: 0 auto 20px auto;
}

.header-entry img {
    width: 22%;
    height: auto;
    display: inline-block;
}

h1 {
      text-align: center;
      margin-top: 40px;
      color: #222;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 160px;
      padding: 40px;
      max-width: 1920px;
      margin: auto;
    }

    .service {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .service h2 {
      color: black;
      margin-bottom: 10px;
    }

    .service p {
      font-size: 25px;
      margin-bottom: 20px;
      color: #555;
    }

    .images {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .images img {
      object-fit: cover;
    }


    #icones {
      width: 110px;
      height: auto;
    }

    .output {
      width: 190px;
      height: auto;
    }

    #out {
      width: 60px;
      height: auto;
    }
