/* Estilos do menu */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Arial', sans-serif;
  }

  .menu-lp-principal {
    display: flex;
    justify-content: center; 
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #375166;
    z-index: 1000;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .menu-lp-logo img {
    height: 50px;
    width: auto;
  }

  .menu-lp-itens {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center; 
  }

  .menu-lp-itens li {
    margin: 0 20px;
    position: relative;
  }

  .menu-lp-itens a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.3s;
  }

  .menu-lp-itens a:hover {
    color: #f1f1f1;
    transform: scale(1.1);
  }

  .menu-lp-hamburguer {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    width: 30px;
  }

  .menu-lp-hamburguer span {
    background-color: white;
    height: 4px;
    width: 100%;
    border-radius: 5px;
  }

  /* Responsividade para telas menores */
  @media (max-width: 768px) {
    .menu-lp-principal {
      flex-direction: column; 
      padding: 20px;
    }

    .menu-lp-itens {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #375166;
      width: 200px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .menu-lp-principal.active .menu-lp-itens {
      display: flex;
    }

    .menu-lp-principal .menu-lp-itens li {
      margin: 10px 0;
    }

    .menu-lp-principal .menu-lp-itens li a {
      padding: 10px;
      text-align: center;
      width: 100%;
    }

    .menu-lp-hamburguer {
      display: flex;
    }
  }







  .form-franqueado {
    margin-bottom: 5px !important;
    height:40px !important;
 }

 .container-form-franqueado {
    max-width: 1400px !important;
 }

 .icone-franqueado {
    font-size: 50px;
    margin-bottom: 30px;
 }

 .title-como-franqueado {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
 }






 .ctt-footer {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    flex-direction: column; 
    margin-left: 130px;
 }

 @media  (max-width: 768px) {
    .ctt-footer {
       margin-left: 0px !important;
    }
 }