* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  :root {
    --text-color: #301c3d;
    --bg-url: url(/imagens/bg-desktop-light.jpg);
    --stroke-color: rgba(0, 0, 0, 0.5);
    --surface-color: rgba(0, 0, 0, 0.05);
    --surface-color-hover: rgba(0, 0, 0, 0.02);
    --highlight-color: rgba(0, 0, 0, 0.1);
   }

  body {
    background: var(--bg-url) center/cover no-repeat ;
    height: 100vh;
  
  }

  body * {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
  }

  /* Header */
header {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px;
    gap: 8px 15px;
  }
  .logoNavBar {
    width: 360px;
  }
  header a {
    color: #301c3d;
    text-decoration: none;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
  }
  .logoFEEGO {
    display: flex;
    width: 280px;
  }

  /* Section */
#main {
    align-items: center;
    gap: 64px;
    padding: 34px 80px;
  }
  .paragraph {
    line-height: 150%;
    line-height: 150%;
    margin-bottom: 12px;
    text-decoration: none;
 }
  .options {
    position: relative;
  }

  .options h3 {
    border: 2px solid #301c3d;
    border-radius: 8px;
    cursor: pointer;
    padding: 24px;
  }
  .options .paragraph {
    border-right: 1px solid #301c3d;
    border-bottom: 1px solid #301c3d;
    border-left: 1px solid #301c3d;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
    padding: 0 24px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.2s;
  }
  .options.active .mapVinha {
    opacity: 1;
    padding: 24px;
    width: 70%;
    margin: auto;
    display: block;
  }
  .options.active .paragraph {
    height: fit-content;
    opacity: 1;
    padding: 24px;
  }
  .paragraph a {
    text-decoration: none;
  }

  .paragraph p {
    text-align: justify; /* Justifica o texto */
    line-height: 1.6; /* Altura das linhas */
    color: #301c3d; /* Cor do texto */
    font-family: Arial, sans-serif; /* Fonte do texto */
    font-size: 16px; /* Tamanho da fonte */
    
}

/* social links */

#socialLinks {
  width: 100%;
  max-width: 588px;
  margin: 16px auto 0px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  font-size: 24px;
}

#socialLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.2s;
  border-radius: 50%;
}

#socialLinks a:hover {
  background: var(--highlight-color);
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}


  /* footer */
#footer {
    width: 100%;
    max-width: 588px;
    margin: 16px auto 0px;
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
  }
  #footer a {
    text-decoration: none;
  }
  @media (min-width: 700px) {
    :root {
      --bg-url: url(/imagens/bg-desktop-light.jpg);
    }
  }