/* body {
  margin: 0;
  height: 100vh;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-family: sans-serif;
} */

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;;
    }
    header {
      max-width: 1381px;
      width: 100%;
      background-color: #ffffff;
      border-bottom: 2px solid red;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      gap: 20px;
      margin: 0 auto;
      position: relative;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .menu {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    
    .menu a {
      color: inherit;
      text-decoration: none;
      font-size: 13.8px;
    }

    .menu a:hover {
      color: rgba(237, 27, 36);
    }
    
    .social {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .social a img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    /* Botão de menu hamburguer - escondido no desktop */
    .menu-toggle {
      display: none;
      font-size: 30px;
      background: none;
      border: none;
      cursor: pointer;
    }
    
    /* Responsivo: abaixo de 768px */
    @media (max-width: 768px) {
      .menu {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
        transition: max-height 1.5s ease, padding 0.5s ease; /* ⬅️ Aqui a mágica */
        overflow: hidden; /* Importante pra esconder o conteúdo ao fechar */
        max-height: 0;
        padding: 0;
        left: 0;
        right: 0;
        position: absolute;
        text-align: center;
        top: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
      }
    
      .menu.show {
        display: flex;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 500px; /* Um valor grande para "expandir" */
        padding: 20px 0;
      }
    
      .social {
        display: none;
      }
    
      .menu-toggle {
        display: block;
      }
    }
    
    main {
      width: 100%;
      min-height: 100vh; /* Faz o main ocupar a altura total da tela */
      display: flex;
      justify-content: center; /* Centraliza horizontalmente */
      align-items: center;     /* Centraliza verticalmente */
      margin: 0 auto;
      padding: 50px 20px;
      background-image: 
        linear-gradient(to bottom, rgba(237, 27, 36, 0.4),rgba(79, 6, 6, 0.5)), 
        url(../images/background-divino.jpg);
      background-size: cover;
      background-position: center;
    }
    
    .form-container {
      width: 100%;
      max-width: 480px;
      display: flex;
      flex-direction: column; /* Organiza os filhos em coluna */
      align-items: center;
      background-color: rgba(237, 27, 36, 0.7);
      border-radius: 10px;
      padding: 30px 20px;
    }
    
    .form-container h1 {
      text-align: center;
      line-height: 1.5;
      color: rgb(255, 255, 255);
      font-family: Impact, Charcoal, sans-serif;
      font-size: 49px;
      margin-bottom: 20px; /* Dá um espaço abaixo do h1 */
    }
    
    .form-container p {
      text-align: center;
      line-height: 1.5;
      color: rgb(255, 255, 255);
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    form {
      width: 100%;
      display: flex;
      flex-direction: column; /* Deixa os inputs em coluna */
    }
    
    form label {
      margin-bottom: 5px;
      font-size: 13.8px;
      color: rgb(255, 255, 255);
    }
    
    form input, form select, form button {
      margin-bottom: 15px;
      padding: 10px;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 10px;
      background-color: rgb(255, 255, 255);
    }
    
    form button {
      background-color: red;
      color: white;
      font-size: 13.8px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    form button:hover {
      background-color: darkred;
    }
    
    .accept {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .accept label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
  }
  
  input[type="checkbox"] {
    width: 50px;
 }

    
    footer {
      width: 100%;
      height: auto; /* ⬅️ Deixa o footer crescer conforme o conteúdo no mobile */
      background-color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      padding: 20px 0; /* ⬅️ Espaçamento vertical */
    }
    
    .footer-container {
      width: 100%;
      max-width: 900px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .footer-logo {
      flex: 1;
      text-align: right;
    }
    
    .footer-logo img {
      margin-right: 20px;
      max-width: 100px;
      height: auto;
    }
    
    .footer-divider {
      width: 1px;
      height: 80px;
      background-color: white;
    }
    
    .footer-text {
      flex: 1;
      text-align: center;
    }
    
    .footer-text p {
      font-size: 13.8px;
      margin: 0;
    }
    
    /* --- Responsivo --- */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
    
      .footer-logo {
        text-align: center;
        margin-bottom: 10px;
      }
    
      .footer-divider {
        display: none; /* ⬅️ Some com a linha branca */
      }
    
      .footer-text {
        text-align: center;
      }
    }
    