* {
  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) no-repeat top center/cover;
  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;
}
/* 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);
  }
}
/* Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
#myImg:hover {
  opacity: 0.7;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}
/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 500px;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
/* Add Animation - Zoom in the Modal */
.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Button */

.close1 {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close1:hover,
.close1:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.close2 {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close2:hover,
.close2:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.close3 {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close3:hover,
.close3:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.close4 {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close4:hover,
.close4:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 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%;
  }
}
