/* ------------------------------------------------------ */
/* RESET BÁSICO + DEFINIÇÕES GERAIS                      */
/* ------------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* ------------------------------------------------------ */
  /* HEADER - LOGO ESQ, NAV NO CENTRO, ÍCONE MENU À DIREITA */
  /* ------------------------------------------------------ */
  header {
    position: fixed; /* se quiser fixo no topo */
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Logo na esquerda, ícone na direita */
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 1000;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); /* Ajuste se quiser transparente ou cor */
  }
  
  /* Se você usar classes para header transparente ou scrolled, mantenha-as */
  header.transparent {
    background-color: rgba(0, 0, 0, 0.5);
  }
  header.scrolled {
    background-color: #333;
  }
  
  /* Logo */
  .logo img {
    height: 5em;
    margin: -1em -1em -1em 2em;
  }
  
  /* Navegação principal */
  nav ul {
    list-style: none;
    display: flex;         /* Visível no desktop */
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1em;
  }
  
  /* ÍCONE DE MENU (oculto no desktop, exibido no mobile) */
  .menu-icon {
    display: none; /* Por padrão, não aparece no desktop */
    cursor: pointer;
  }
  
  .menu-icon img {
    width: 4em; 
    height: 4em;
  }
  
  nav ul.fechar {
    display: none; 
  }
  
  /* ------------------------------------------------------ */
  /* SEÇÕES GERAIS (BRIEFING, HERO, ETC.)                  */
  /* ------------------------------------------------------ */
  .briefing-container {
    display: flex;
    flex-direction: row;
  }
  
  .briefing {
    background-image: url('imagens/background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 10em;
  }
  
  .briefing-text {
    display: flex;
    flex-direction: column;
    justify-content: right;
    text-align: right;
  }
  
  .briefing h2 {
    font-size: 1.25em;
    font-weight: 400;
  }
  
  .briefing h1 {
    font-size: 4em;
    font-weight: 500;
    font-style: italic;
  }
  
  .briefing p {
    font-size: 1em;
    max-width: 40em;
  }
  
  .vazio {
    width: 60%;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin: 1%;
  }
  
  /* BENEFÍCIOS */
  .beneficios-title {
    text-align: center;
    padding: 1em;
    font-size: 1.5em;
    font-weight: 300;
  }
  
  .beneficios {
    display: flex;
    flex-direction: row;
    margin-left: 5%;
    margin-right: 5%;
    align-items: center;
    text-align: center;
    padding: 2em;
    margin: 0 5em 0 5em;
  }
  
  .beneficios p {
    align-items: center;
    text-align: center;
    margin: 0 2em 0 2em;
  }
  
  .beneficios img {
    width: 12em;
    text-align: center;
  }
  
  /* HERO */
  .hero {
    background-image: url('imagens/background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    padding: 10em;
  }
  
  .hero-container {
    display: flex;
    flex-direction: row;
  }
  
  .vazio2-hero {
    width: 35%;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin: 1%;
  }
  
  .hero h2 {
    font-size: 1.25em;
    font-weight: 400;
  }
  
  .hero h1 {
    font-size: 4em;
    font-weight: 500;
    font-style: italic;
    max-width: 12em;
  }
  
  .hero p {
    font-size: 1em;
    max-width: 45em;
  }
  
  /* MISSÃO */
  .mission {
    text-align: center;
    margin-top: 4em;
    font-weight: 200;
  }
  
  .mission h2 {
    font-size: 2.5em;
    margin-bottom: 1.5em;
  }
  
  .mission p {
    font-size: 1.25em;
    max-width: 40em;
    margin: 0 auto 2em;
  }
  
  /* SERVICE */
  .service {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .service img {
    width: 50em;
    height: 50em;
    margin-right: 3em;
  }
  
  .service h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 16px;
  }
  
  .service img {
    height: 15em;
    width: 15em;
  }
  
  /* FORMULÁRIOS E CONTATO */
  form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .contato-container {
    display: flex;
    flex-direction: column;
    margin: 0 5% 10em 5%;
  }
  
  .vazio-contato {
    height: 7em;
  }
  
  .contato-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 80px 20px;
    background-color: #f8f8f8;
  }
  
  .contato {
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
  }
  
  .contato form {
    display: flex;
    flex-direction: column;
  }
  
  .contato label {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
  }
  
  input[type="email"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  input[type="email"]:focus,
  select:focus,
  textarea:focus {
    border-color: #555;
  }
  
  textarea {
    resize: vertical;
  }
  
  button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #555;
  }
  
  .button-link-home {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.75em 20em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .button-link-home:hover {
    background-color: #555;
  }
  
  .button-link {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .button-link:hover {
    background-color: #555;
  }
  
  /* ALERTAS CUSTOM */
  .custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .custom-alert-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
  }
  
  .custom-alert-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .custom-alert-content .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
  }
  
  .custom-alert-content .close-button:hover {
    color: #333;
  }
  
  .custom-alert-content button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .custom-alert-content button:hover {
    background-color: #555;
  }
  
  /* FOOTER */
  footer {
    background-color: #fff;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  }
  
  footer p {
    font-size: 0.75em;
    color: #f8f8f8;
    font-weight: 400;
    font-style: italic;
    text-align: right;
    background-image: url(imagens/cidade.png);
    background-position: center;
    padding: 20em 0 0 0;
    margin: 0 0 -1em 0;
  }

  .contact {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
    color: #666;
}

.contact p1 {
    font-weight: 600;
    color: #333;
}
  

  @media (max-width: 992px) {
    /* Mostra o ícone de menu, esconde o menu tradicional */
    .menu-icon {
      display: block;
    }
  
    /* Oculta o nav (por padrão) em telas menores */
    nav ul {
      display: none; 
    }
  
    /* Caso o JS adicione a classe .fechar, ficará "block" */
    nav ul.fechar {
      display: block;
    }
  
    /* Ajustes de header */
    header {
      padding: 10px;
    }
    .logo img {
      height: 4em; 
      margin: 0.5em;
    }
  
    /* Ajuste da tipografia do header (opcional) */
    header a {
      font-size: 0.9em;
      margin-right: 1em;
    }

    nav ul {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 0 2em;
        height: 18em;
        width: 10em;
        transition: left 0.4s ease;
        border-radius: 10px;
        margin-right: 1em;
    }
    nav ul li {
        display: block;
        margin: 2em 0;
        padding: 10px;
        border-radius: 10px;
    }
  
    /* BRIEFING */
    .briefing-container {
      flex-direction: column; 
    }
    .briefing {
      padding: 5em 2em;
      text-align: center; 
    }
    .briefing h1 {
      font-size: 2.5em;
    }
    .briefing h2 {
      font-size: 1.1em;
    }
    .briefing p {
      font-size: 0.95em;
      max-width: 100%;
    }
  
    /* BENEFÍCIOS */
    .beneficios {
      flex-direction: column;
      margin: 0 2em;
      padding: 2em;
    }
    .beneficios img {
      width: 8em;
      margin-bottom: 1em;
    }
    .beneficios p {
      margin: 0 auto 2em auto;
      font-size: 0.9em;
    }
  
    /* HERO */
    .hero-container {
      flex-direction: column;
    }
    .hero {
      padding: 5em 2em;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.5em;
    }
    .hero h2 {
      font-size: 1em;
    }
    .hero p {
      max-width: 100%;
      font-size: 0.95em;
    }
  
    /* MISSION */
    .mission h2 {
      font-size: 2em;
      margin-bottom: 1em;
    }
    .mission p {
      font-size: 1em;
      max-width: 90%;
    }
  
    /* SERVICE */
    .service {
      flex-direction: column;
      margin: 0 auto 2em auto;
    }
    .service img {
      width: 80%;
      height: auto;
      margin: 0 0 2em 0;
    }
    .service h3 {
      font-size: 20px;
    }
    .service p {
      font-size: 14px;
      max-width: 90%;
      margin: 0 auto;
    }
  
    /* CONTATO */
    .contato {
      padding: 20px;
      max-width: 90%;
    }
    .contato form {
      padding: 0;
    }
  
    /* BOTÕES */
    .button-link-home {
      padding: 0.75em 5em; 
      font-size: 0.95em;
    }
  
    /* FOOTER */
    footer p {
      font-size: 0.65em;
      padding: 10em 0 0 0; 
    }
  }

 @media (max-width: 576px) {
  /* Header mais simples: se quiser empilhar logo e ícone */
  header {
    flex-direction: row; /* ou column, se preferir empilhar */
    align-items: center;
    padding: 10px;
  }

  /* Ícone de menu continua visível */
  .menu-icon {
    display: block;
  }

  /* Nav continua oculto por padrão, só aparece com .fechar */
  nav ul {
    display: none;
  }
  nav ul.fechar {
    display: block;
  }

  /* Ajuste maior para tipografia do header */
  header a {
    margin-right: 0;
    margin-top: 10px;
  }

  /* BRIEFING */
  .briefing {
    padding: 3em 1em;
  }

  .briefing h1 {
    font-size: 2em;
    text-align: center;
    margin: 0.5em 1.5em;
  }
  .briefing h2 {
    font-size: 1em;
    margin: 1em 1.5em;
    text-align: center;
  }
  .briefing p {
    font-size: 0.9em;
    margin: 0em 1.5em;
    text-align: center;
  }

  .briefing p2 {
    text-align: center;
  }

  /* BENEFÍCIOS empilhados e centralizados */
  .beneficios {
    margin: 0 1em;
    padding: 1em;
  }

  /* HERO */
  .hero {
    padding: 7em 1em;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero h2 {
    font-size: 1em;
  }
  .hero p {
    font-size: 0.9em;
  }

  /* MISSÃO */
  .mission h2 {
    font-size: 1.5em;
  }
  .mission p {
    font-size: 0.9em;
  }

  /* SERVICE */
  .service img {
    width: 80%;
    height: auto;
  }

  /* FORM CONTATO */
  .contato {
    padding: 20px 10px;
  }

  /* BOTÕES */
  .button-link-home, 
  .button-link {
    width: 75%;
    text-align: center;
    padding: 0.75em 0; 
    font-size: 1em;
  }

  /* FOOTER */
  footer p {
    font-size: 0.65em;
    padding: 5em 0 0 0; 
  }
}
