#map {
    height: 800px;
    width: 100%;
    background: transparent;
}
.relato-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.relato-modal-content {
  width: 800px;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  position: relative;
}

.relato-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

.relato-modal-close:hover {
  color: black;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background-color: white;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.menu-item:hover {
  background-color: #e6f0ef;
  font-weight: bold;
}


.menu-content {
  position: absolute;
  color: #222;
  z-index: 9999;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.menu-title {
  background-color: #32766E;
  padding: 2px 10px;
  border-radius: 10px;
  height: auto;
  margin: 0 0 8px 0;
  width: fit-content;
  color: white;
  font-weight: bold;
  user-select: none;
}

.menu-item {
  display: table;
  padding: 4px 10px;
  border-radius: 10px;
  background: white;
  color: #333;
  text-decoration: none;
  transition: font-weight 0.2s ease;
  font-size: 14px;
}

.menu-item:hover {
  font-weight: 700;
  cursor: pointer;
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.owl-carousel {
    width: 100%;
    margin-top: 30px;
    position: relative; 
}

.owl-carousel .item {
    height: 100vh;
    width: auto;
    flex: 0 0 auto;
    background-size: contain;
    background-position: top;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    background-repeat: round;
}

.item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    z-index: 0;
}

.item:hover::before {
    background: rgba(0, 0, 0, 0);
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: white;
}

.content h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.content p {
    margin: 0;
    font-size: 13px;
    font-style: italic;
}

.owl-stage {
    display: flex !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.owl-item {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #a6a6a6!important;
    color: #fff !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    z-index: 10;
    pointer-events: all;
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

.timeline {
    position: relative;
    margin-left: 40px;
    border-left: 4px solid #703296;
    padding-left: 26px;
}

.step {
    position: relative;
    margin-bottom: 60px;
}

.step::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #ccc;
    transition: background 0.3s, box-shadow 0.3s;
}

.step.active::before {
    background: #ec6608;
    box-shadow: 0 0 0 2px #ec6608;
}

.step h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color:#333;
}

.step p {
    margin: 0;
    font-size: 14px;
    color: #555;
}