* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  body{
    width: 100%;
    height: 100vh;
  }
  
  :root {
    --second-color: rgb(63, 63, 212);
    --white: #ffffff;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 999;
    background-color: rgba(58, 58, 197, 0.836);
  }
  
  .logo-header {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }
  
  .logo-header img {
    height: 100%;
  }
  
  header>nav {
    display: flex;
    align-items: center;
  }
  
  header>nav>ul {
    display: flex;
    list-style: none;
  }
  
  header>nav>ul>li {
    padding-right: 20px;
    color: var(--white);
    font-weight: bold;
  }
  
  header>nav>ul>li>a {
    text-decoration: none;
    color: inherit;
  }
  
  .slider {
    margin: 0 auto;
    margin-bottom: 30px;
    width: 100%;
    height: 350px;
    overflow: hidden;
  }
  
  .slides {
    width: 400%;
    height: 100%;
    display: flex;
  }
  
  .slides input {
    display: none;
  }
  
  .slide {
    width: 25%;
    position: relative;
    transition: 1s;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
  }
  
  .manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
  }
  
  .manual-btn {
    border: 2px solid #FFF;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .manual-btn:not(:last-child) {
    margin-right: 40px;
  }
  
  .manual-btn:hover {
    background-color: #FFF;
  }
  
  #radio1:checked~.first {
    margin-left: 0;
  }
  
  #radio2:checked~.first {
    margin-left: -25%;
  }
  
  #radio3:checked~.first {
    margin-left: -50%;
  }
  
  #radio4:checked~.first {
    margin-left: -75%;
  }
  
  .auto article {
    border: 2px solid #20a6ff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .auto {
    position: absolute;
    width: 100%;
    margin-top: 310px;
    display: flex;
    justify-content: center;
  }
  
  .auto article:not(:last-child) {
    margin-right: 40px;
  }
  
  #radio1:checked~.auto .auto-btn1 {
    background-color: #FFF;
  }
  
  #radio2:checked~.auto .auto-btn2 {
    background-color: #FFF;
  }
  
  #radio3:checked~.auto .auto-btn3 {
    background-color: #FFF;
  }
  
  #radio4:checked~.auto .auto-btn4 {
    background-color: #FFF;
  }
  
  .produto>article {
    margin: 20px auto;
  }
  
  .produto>article>h1 {
    display: flex;
    justify-content: center;
    color: var(--second-color);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
  }
 
  .cards {
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  
  .cards>article {
    max-width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cards>article>a>img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .cards>article>h3 {
    text-align: center;
  }
  
  .sobre {
    display: flex;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .sobre article {
    max-width: 50%;
  }
  
  .sobre>article>p {
    font-size: 20px;
    font-weight: 500;
    margin-left: 5%;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #353535;
    ;
  }
  
  .sobre>.image-sobre-container {
  
    display: flex;
    justify-content: center;
  }
  
  .sobre>article>h1 {
    color: var(--second-color);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    margin-left: 5%;
  }
  
  .sobre>article>img {
    max-width: 80%;
  }
  
  footer {
    background-color: rgb(63, 63, 212);
  }
  
  .logo-footer {
    max-height: 110px;
  }
  
  footer article h3 {
    color: #FFF;
    font-weight: 700;
  }
  
  footer section {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  footer section ul {
    list-style: none;
  }
  
  footer section ul li {
    padding: 5px 0;
    text-decoration: none;
    color: #FFF;
  }
  
  footer section ul li a {
    text-decoration: none;
    color: #FFF;
  }

  #social-midia {
    display: flex;
    justify-content: space-evenly;
  }
  
  .midia-icon {
    max-width: 30px;
  }
  
  @media(max-width:768px) {
  
    .slider {
      max-height: 60%;
      height: 345px;
    }
  
    .auto {
      margin-top: 305px;
    }
  
    .produto>article>h1 {
      font-size: 30px;
    }
  
    .sobre {
      flex-direction: column;
    }
  
    .sobre article {
      max-width: 100%;
    }
  
    .sobre article h1 {
      display: flex;
      justify-content: center;
      margin-left: 0;
    }
  
    .sobre article p {
      margin-right: 5%;
      font-size: 18px;
      line-height: 1.3;
    }
  
    .cards>article {
      max-width: 25%;
    }
  
  }
  
  @media(max-width: 425px) {
    header {
      height: 50px;
    }
  
    .logo-header {
      margin-left: 0;
    }
  
    .cards {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .cards>article {
      max-width: 60%;
    }
  
    .sobre article p {
      font-size: 15px;
    }
  
    footer section {
      flex-direction: column;
      gap: 20px;
    }
  
    footer article h3 {
      display: flex;
      justify-content: center;
    }
  
    footer section ul li {
      display: flex;
      justify-content: center;
    }
  }
  
  @media(max-width: 400px) {
  
    header>nav>ul>li {
      padding-right: 5px;
      font-size: small;
    }
  }