* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
}

:root {
  --color-wine: #6d1410;
  --color-beige: #e3ddd1;
  --color-medium: #afa798;
  --font-title: "above-the-beyond";
  --font-body: "roboto";
  --font-bodyAlternative: "roboto-mono", monospace;
  --transition: all 0.3s ease;
}

body {
  background-color: var(--color-beige);
}

header {
  position: fixed;
  width: 100dvw;
  z-index: 1000;
}

.Conteiner-Header {
  position: relative;
  display: flex;
  height: 70px;
  width: 100%;
  align-items: center;
  background-color: transparent;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  padding: 0 20px;
}

.Conteiner-Header .Logo {
  display: flex;
  height: 100%;
  width: 150px;
  align-items: center;
}

.Conteiner-Header .Logo img {
  padding: 15px 10px;
  height: 100px;
}

.Conteiner-Header .Main-Menu {
  display: flex;
  align-items: center;
  width: auto;
  height: 64px;
}

.Conteiner-Header .Main-Menu nav ul {
  position: relative;
  display: flex;
  gap: 30px;
  list-style-type: none;
  align-items: center;
}

.Conteiner-Header .Main-Menu nav li a {
  font-family: var(--font-body);
  color: var(--color-beige);
  position: relative;
  line-height: 0.8;
  display: flex;
  gap: 30px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 1s ease;
}

.Conteiner-Header .Main-Menu nav li a:hover {
  border-bottom: 1.5px solid var(--color-beige);
  padding-bottom: 2px;
}

.Conteiner-Header .login {
  width: auto;
  height: 100%;
  align-items: center;
}

.Conteiner-Header .login .login-btn {
  height: 100%;
  width: 150px;
  background-color: transparent;
  border: none;
  align-items: center;
}

.Conteiner-Header .login .login-btn ion-icon {
  height: 40px;
  width: 40px;
  color: var(--color-beige);
}

/* Menu Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-beige);
  margin: 3px 0;
  transition: var(--transition);
}

main {
  height: 100%;
  width: 100%;
}

.MainBanner {
  height: 100dvh;
  width: 100vw;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;
}

.VideoBanner {
  position: absolute;
}

.Video {
  width: 100dvw;
  height: 100dvh;
  object-fit: cover;
}

.VideoCaption {
  position: absolute;
  align-items: center;
  left: 38%;
  top: 35%;
  height: 150px;
  width: 400px;
}

.VideoCaption h3 {
  font-size: 35px;
  font-family: var(--font-body);
  color: var(--color-beige);
  padding: 0;
  font-weight: 500;
  height: auto;
  margin-top: 5px;
}

.VideoCaption .title-Memories {
  font-size: 55px;
  font-family: var(--font-title);
  color: var(--color-beige);
  padding: 0;
  margin-top: -12px;
  height: auto;
}

.btnReserv {
  position: absolute;
  background-color: transparent;
  z-index: 1001;
  align-items: center;
  justify-content: end;
  right: 3%;
  bottom: 3%;
  display: flex;
  height: 60px;
  width: 200px;
}

.btnReserv .BtnContactUs {
  height: 70%;
  width: 80%;
  border-radius: 15px;
  position: absolute;
  left: 15%;
  text-align: left;
  padding-left: 10%;
  background-color: var(--color-beige);
  opacity: 0.5;
  color: var(--color-wine);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border: 1px solid var(--color-beige);
}

.btnReserv .BtnContactUs:hover {
  outline: none;
  box-shadow: none;
  background-color: var(--color-wine);
  color: var(--color-beige);
  opacity: 0.5;
}

.btnReserv .BtnContactUs a {
  text-decoration: none;
  color: inherit;
}

.btnReserv img {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  z-index: 1002;
}

/* Section Experience*/

.ExperienceGrid {
  position: relative;
  height: 100dvh;
  width: 100dvw;
  display: grid;
  grid-auto-rows: auto 50dvh;
  grid-auto-columns: auto;
  gap: 0.3em;
  grid-template-areas:
    "box-4 box-1 box-2 box-2"
    "box-4 box-5 box-5 box-3";
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  z-index: 1;
}

.ExpGrid {
  height: 100%;
  width: auto;
}

.ExpFigure {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ExpFigure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-wine);
  opacity: 0.3;
  z-index: 2;
}

.ExpFigure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  position: absolute;
  transition: transform 0.7s ease-in-out;
}

.ExpFigure:hover img {
  transform: scale(1.2);
}

.ExpFigure h2 {
  color: var(--color-beige);
  z-index: 3;
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-family: var(--font-body);
  font-weight: bold;
}

.ExpFigure p {
  color: var(--color-beige);
  z-index: 3;
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-family: var(--font-body);
  font-weight: 300;
}

/* Gallery Destination */

.GalleryDestination {
  height: 100vh;
  width: 100vw;
  position: static;
  position: relative;
}

.GalleryDestination .ListDestination .ItemDestination {
  position: absolute;
  inset: 0 0 0 0;
  opacity: 0;
  transition: 0.5s;
}

.GalleryDestination .ListDestination .ItemDestination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.GalleryDestination .ListDestination .ItemDestination::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.GalleryDestination .ListDestination .ItemDestination .ContentDestination {
  position: absolute;
  left: 10%;
  top: 30%;
  width: 500px;
  max-width: 80%;
  z-index: 1;
  color: var(--color-beige);
  font-family: var(--font-body);
}

.GalleryDestination
  .ListDestination
  .ItemDestination
  .ContentDestination
  p:nth-child {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 50px;
}

.GalleryDestination .ListDestination .ItemDestination .ContentDestination h2 {
  font-size: 50px;
  font-weight: 800;
}

.GalleryDestination .ListDestination .ItemDestination.active {
  opacity: 1;
  z-index: 10;
}

@keyframes Showcontent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.GalleryDestination .ListDestination .ItemDestination.active p:nth-child(1),
.GalleryDestination .ListDestination .ItemDestination.active h2,
.GalleryDestination .ListDestination .ItemDestination.active p:nth-child(3) {
  transform: translate(30px);
  filter: blur(200px);
  opacity: 0;
  animation: Showcontent 0.5s 0.7s ease-in-out 1 forwards;
}

.GalleryDestination .ListDestination .ItemDestination.active h2 {
  animation-delay: 1s;
}

.GalleryDestination .ListDestination .ItemDestination.active p:nth-child(3) {
  animation-duration: 1.3s;
}

.arrows {
  position: absolute;
  bottom: 30%;
  left: 10%;
  z-index: 100;
}

.arrows button {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: bold;
  background: var(--color-beige);
  opacity: 40%;
  width: 40px;
  height: 40px;
  transition: 0.5s;
}

.arrows button:hover {
  background-color: var(--color-wine);
  opacity: 40%;
  color: var(--color-beige);
}

.thumb {
  position: absolute;
  z-index: 11;
  bottom: 2%;
  display: flex;
  gap: 10px;
  width: 60%;
  height: 200px;
  padding: 0 50px;
  overflow: hidden;
  justify-content: center;
  right: 0;
}

.thumb::-webkit-scrollbar {
  width: 0;
}

.thumbItem {
  width: 100px;
  height: 200px;
  filter: brightness(1);
  transition: 0.5s;
  flex-shrink: 0;
}

.thumbItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  filter: brightness(0.7);
}

.thumbItem.active {
  filter: brightness(0.8);
}

.thumbItemContent {
  position: absolute;
  inset: auto 10px 10px 10px;
  color: var(--color-beige);
  font-family: var(--font-body);
}

.thumbItemContent h2 {
  font-size: 1.2rem;
}

/*Testemonials*/

.testimonials {
  display: grid;
  grid-template-columns: 55% 45%;
  font-family: var(--font-body);
  height: 85dvh;
  width: 100dvw;
  padding: 5px 0 5px 5px;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
  background-color: var(--color-beige);
}

.TestemonialBrief {
  color: var(--color-wine);
  height: 100%;
  width: 100%;
  padding: 9% 5% 5% 9%;
  position: relative;
}

.TestemonialBrief p {
  font-size: 20px;
}

.TestemonialBrief h2 {
  font-family: var(--font-title);
  text-align: right;
  width: 90%;
}

.TestemonialBrief h3 {
  font-family: var(--font-body);
  text-align: right;
  width: 90%;
}

.TestemonialBrief img {
  height: auto;
  width: 50dvw;
  object-fit: cover;
  position: absolute;
  bottom: 10%;
}

.TestemonialDisplay {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 5%;
}

.TestemonialDisplay img {
  height: 95%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

/*Contact Section*/

.contact {
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 2%;
  margin-bottom: 2%;
  font-family: var(--font-body);
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/BtnContactUs.jpg") no-repeat center center/cover;
  z-index: -1;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(109, 20, 16, 0.4);
  z-index: -1;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-content {
  color: var(--color-wine);
  text-align: left;
  padding-right: 60px;
  padding-left: 20px;
  font-family: Roboto;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-beige);
}

.contact-content p {
  margin-bottom: 5px;
  color: var(--color-beige);
  font-size: 1.1rem;
  line-height: 1.7;
}

.newsletter-form {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-wine);
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-medium);
  background-color: white;
  color: var(--color-wine);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-wine);
  box-shadow: 0 0 0 2px rgba(109, 20, 16, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(109, 20, 16, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-wine);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-wine);
  color: var(--color-beige);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--color-medium);
  color: var(--color-wine);
  transform: translateY(-2px);
}

/* Footer */

.footer {
  display: grid;
  position: sticky;
  bottom: 0;
  color: var(--color-beige);
  font-family: var(--font-body);
  width: 100dvw;
  min-height: 40dvh;
  background-color: var(--color-wine);
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: 300px 60px;
  grid-template-areas:
    "col1 col2 col3"
    "row1 row1 row1";
  justify-content: center;
  align-items: center;
  padding-top: 3px;
}

.Description {
  grid-area: col1;
  height: 80%;
  width: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 15%;
}

.Description p {
  width: 85%;
}

.Description .NavagationSocialMidias {
  text-decoration: none;
  display: flex;
  position: relative;
  color: var(--color-beige);
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.Description .NavagationSocialMidias li {
  list-style: none;
}

.Description .NavagationSocialMidias li a {
  color: var(--color-beige);
  font-size: 1.3em;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.Description .NavagationSocialMidias li a:hover {
  transform: scale(1.5);
}

.Stamps {
  grid-area: col2;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "Stamp1 Stamp5 Stamp2"
    "Stamp4 Stamp3 Stamp6";
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: 100%;
  height: 80%;
  gap: 0.5rem;
}

.Stamps img {
  height: 80px;
  width: 150px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.5s;
}

.Stamps img:hover {
  transform: scale(1.2);
}

.Stamp1 {
  grid-area: Stamp1;
}

.Stamp2 {
  grid-area: Stamp2;
}

.Stamp3 {
  grid-area: Stamp3;
}

.Stamp4 {
  grid-area: Stamp4;
}

.Stamp5 {
  grid-area: Stamp5;
}

.Stamp6 {
  grid-area: Stamp6;
}

.LinkTreePage {
  grid-area: col3;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  color: var(--color-beige);
  flex-wrap: wrap;
  height: 80%;
  width: auto;
  align-items: center;
}

.LinkTreePage h3 {
  margin-bottom: 1.5rem;
}

.LinkTreePage li {
  list-style: none;
}

.LinkTreePage li a {
  text-decoration: none;
  color: var(--color-beige);
  margin-bottom: 2%;
}

.LinkTreePage li a:hover {
  transform: scale(1.2);
}

.FooterExperiences {
  margin: 1rem;
}

.FooterDestination {
  margin: 1rem;
}

.copyright {
  grid-area: row1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-top: 0.5px solid var(--color-beige);
  border-width: 95%;
}

.copyright p {
  font-size: 0.8rem;
}

.copyrightEfect {
  position: absolute;
  right: 2%;
  bottom: 20%;
  z-index: 1;
}

.copyrightEfect img {
  height: 40px;
}

/* ===== RESPONSIVIDADE MOBILE ===== */

@media screen and (max-width: 768px) {
  /* Header Mobile */
  .Conteiner-Header {
    height: 60px;
    padding: 0 15px;
  }

  .Conteiner-Header .Logo img {
    height: 80px;
    padding: 10px 5px;
  }

  .Main-Menu {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background-color: var(--color-wine);
    transition: right 0.3s ease;
    z-index: 2000;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    font-family: var(--font-body);
    border-radius: 0 0 5px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .Main-Menu.active {
    right: 0;
    z-index: 1001;
    top: 0;
  }

  .Conteiner-Header .Main-Menu nav ul {
    flex-direction: column;
    padding: 25px;
    gap: 10px;
    background-color: var(--color-wine);
    align-items: flex-end;
    text-align: right;
    width: 100%;
  }

  .Conteiner-Header .Main-Menu nav li {
    width: 100%;
    text-align: right;
  }

  .Conteiner-Header .Main-Menu nav li a {
    font-size: 1rem;
    padding: 12px 0;
    justify-content: flex-end;
    color: var(--color-beige);
    text-align: right;
    width: 100%;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }

  .Conteiner-Header .Main-Menu nav li a:hover {
    border-bottom: 1px solid var(--color-beige);
    padding-right: 10px; /* Efeito visual no hover */
  }

  .menu-toggle {
    display: flex;
    z-index: 3000;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .login {
    display: none;
  }

  /* Main Banner Mobile */
  .MainBanner {
    height: 70vh;
    z-index: 900;
  }

  .Video {
    height: 70vh;
  }

  .VideoCaption {
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
  }

  .VideoCaption h3 {
    font-size: 1.5rem;
  }

  .VideoCaption .title-Memories {
    font-size: 2.5rem;
    margin-top: -5px;
  }

  .btnReserv {
    right: 50%;
    transform: translateX(50%);
    bottom: 10%;
    width: 180px;
  }

  .btnReserv .BtnContactUs {
    font-size: 0.9rem;
    padding-left: 5%;
  }

  /* Experience Grid Mobile */
  .ExperienceGrid {
    height: auto;
    grid-template-areas:
      "box-1"
      "box-2"
      "box-3"
      "box-4"
      "box-5";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 300px);
    gap: 10px;
    padding: 10px;
  }

  .ExpFigure h2 {
    font-size: 1.5rem;
    bottom: 15%;
  }

  .ExpFigure p {
    font-size: 0.9rem;
    bottom: 8%;
  }

  /* Gallery Destination Mobile */
  .GalleryDestination {
    height: 80vh;
  }

  .GalleryDestination .ListDestination .ItemDestination .ContentDestination {
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
  }

  .GalleryDestination .ListDestination .ItemDestination .ContentDestination h2 {
    font-size: 2rem;
  }

  .GalleryDestination .ListDestination .ItemDestination .ContentDestination p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
  }

  .arrows {
    bottom: 25%;
    left: 70%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    height: 40px;
  }

  .thumb {
    height: 120px;
    width: 60%;
    padding: 0 20px;
    bottom: 5px;
  }

  .thumbItem {
    width: 120px;
    height: 120px;
  }

  .thumbItem h2 {
    font-size: 0.9rem;
  }

  /* Testimonials Mobile */
  .testimonials {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: 100dvh;
    padding: 20px;
    gap: 20px;
    margin-top: 10%;
  }

  .TestemonialBrief {
    padding: 10% 5%;
  }

  .TestemonialBrief p {
    font-size: 1rem;
  }

  .TestemonialBrief img {
    width: 100%;
    position: relative;
    margin-top: 30px;
  }

  .TestemonialDisplay img {
    display: none;
  }

  /* Contact Section Mobile */
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .contact-content {
    padding-right: 0;
    text-align: center;
  }

  .contact-content h2 {
    font-size: 2rem;
  }

  .newsletter-form {
    padding: 30px 20px;
  }

  /* Footer Mobile */
  .footer {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "col1"
      "col3"
      "col2"
      "row1";
    height: auto;
    padding: 30px 20px;
    gap: 0.4rem;
  }

  .Description {
    margin-left: 0;
    text-align: center;
    justify-content: center;
    height: 150px;
  }

  .Description p {
    width: 100%;
  }

  .LinkTreePage {
    flex-direction: column;
    gap: 1px;
    text-align: left;
    padding: 0;
    height: 220px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .Stamps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas:
      "Stamp1 Stamp2"
      "Stamp3 Stamp4"
      "Stamp5 Stamp6";
    gap: 15px;
    height: 200px;
    margin-bottom: 10px;
  }

  .Stamps img {
    height: 2.5rem;
  }

  .copyrightEfect {
    display: none;
  }

  .copyright p {
    text-align: center;
    font-size: 0.6rem;
  }

  .copyright {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .VideoCaption h3 {
    font-size: 1.2rem;
  }

  .VideoCaption .title-Memories {
    font-size: 2rem;
  }

  .GalleryDestination .ListDestination .ItemDestination .ContentDestination h2 {
    font-size: 1.5rem;
  }

  .thumb {
    height: 100px;
  }

  .thumbItem {
    width: 80px;
    height: 80px;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .TestemonialBrief p {
    font-size: 0.9rem;
  }

  .ExperienceGrid {
    grid-template-rows: repeat(5, 250px);
  }

  .copyright p {
    text-align: center;
    text-size-adjust: 0.1rem;
  }
}

/*===============About Us===================*/

/* Hero Section */
.AboutUsHero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.AboutUsHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(109, 20, 16, 0.4), rgba(109, 20, 16, 0.2));
  z-index: 1;
}

.AboutUsHero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.HeroContent {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-beige);
  max-width: 800px;
  padding: 0 20px;
}

.HeroContent h1 {
  font-family: var(--font-title);
  font-size: 4.5rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.HeroContent p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Values Section */
.ValuesSection {
  padding: 50px 5%;
  background-color: var(--color-beige);
}

.SectionHeader {
  text-align: center;
  margin-bottom: 60px;
}

.SectionHeader h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--color-wine);
  margin-bottom: 20px;
}

.SectionHeader p {
  font-family: var(--font-body);
  color: var(--color-wine);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.5rem;
}

.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.ValueCard {
  text-align: center;
  padding: 40px 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ValueCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ValueIcon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: var(--color-wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ValueIcon ion-icon {
  color: var(--color-beige);
  font-size: 2rem;
}

.ValueCard h3 {
  font-family: var(--font-bodyAlternative);
  color: var(--color-wine);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.ValueCard p {
  font-family: var(--font-body);
  color: var(--color-wine);
  line-height: 1.6;
}

/* Story Section */
.StorySection {
  padding: 90px 2%;
  background-color: var(--color-wine);
  color: var(--color-beige);
}

.StoryContainer {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.StoryContent h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.StoryContent p {
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: justify;
}

.StoryImage {
  position: relative;
  height: 500px;
}

.StoryImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Team Section */
.TeamSection {
  padding: 70px 5%;
  background-color: var(--color-beige);
}

.TeamSection p {
  font-size: 1.5rem;
}

.TeamGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.TeamMember {
  text-align: center;
}

.MemberPhoto {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-wine);
}

.MemberPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.TeamMember h3 {
  font-family: var(--font-bodyAlternative);
  color: var(--color-wine);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.TeamMember p {
  font-family: var(--font-body);
  color: var(--color-wine);
  font-size: 1rem;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .HeroContent h1 {
    font-size: 0.5rem;
  }

  .HeroContent p {
    font-size: 1rem;
  }

  .SectionHeader h2,
  .StoryContent h2,
  .CTAContent h2 {
    font-size: 2rem;
  }

  .SectionHeader p,
  .StoryContent p,
  .CTAContent p {
    font-size: 1rem;
  }

  .StoryContent h2 {
    padding: 0 15px;
  }
  .StoryContent p {
    padding: 0 15px;
  }

  .StoryContainer {
    grid-template-columns: 1fr;
  }

  .StoryImage {
    height: 400px;
    order: -1;
  }

  .AboutUsHero {
    height: 50vh;
  }
}

@media screen and (max-width: 480px) {
  .HeroContent h1 {
    font-size: 2.5rem;
  }

  .ValuesGrid,
  .TeamGrid {
    grid-template-columns: 1fr;
  }

  .ValueCard,
  .TeamMember {
    padding: 30px 20px;
  }
}

/*==========Destination=============*/

.MainDestination {
  position: relative;
}

.HeaderDestination {
  position: sticky;
  top: 0;
  background-color: var(--color-wine);
}

.BannerDestination {
  position: relative;
  display: flex;
  width: 100dvw;
  height: 87dvh;
  align-items: end;
  justify-content: space-between;
}

/*Padrão Biblioteca Codepen*/

#svg-map1 {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.svg-map {
  float: left;
  margin-right: 20px;
}

.svg-map g {
  height: 100%;
}

.svg-map path {
  fill: var(--color-medium);
  transition: fill 0.3s ease; /* Adicionei para suavizar a troca de cor */
}

.svg-map text {
  fill: var(--color-beige);
  font: 12px var(--font-body);
  cursor: default; /* Alterado de pointer para default */
}

.svg-map a {
  text-decoration: none;
  cursor: default; /* Padrão: cursor normal */
}

/* Aplica o cursor de clique APENAS nos estados ativos */
.svg-map a.estado-ativo {
  cursor: pointer;
}

/* Remove qualquer efeito hover em links que NÃO são estados ativos */
.svg-map a:not(.estado-ativo):hover path,
.svg-map a:not(.estado-ativo):hover circle {
  fill: var(--color-medium) !important;
  cursor: default;
}

/* Remove hover do texto para estados inativos */
.svg-map a:not(.estado-ativo):hover text {
  fill: var(--color-beige) !important;
  cursor: default;
}

/* A cor só muda se o 'a' tiver a classe 'estado-ativo' */
.svg-map a.estado-ativo:hover path {
  fill: var(--color-wine) !important;
}

.svg-map .circle {
  fill: var(--color-medium);
}

/* A bolinha (circle) também só muda se for estado ativo */
.svg-map a.estado-ativo:hover .circle {
  fill: var(--color-wine) !important;
  cursor: pointer;
}

/* Hover do texto apenas para estados ativos */
.svg-map a.estado-ativo:hover text {
  cursor: pointer;
}

/* Restante do CSS (Tooltips) permanece igual */
#svg-map2 .circle {
  fill: transparent;
}
#svg-map2 a:hover .circle {
  fill: transparent !important;
  cursor: pointer;
}
#svg-map2 text {
  font: 8px Arial-BoldMT, sans-serif;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.BrasilMap {
  position: relative;
  width: 40%;
  height: 100%;
  margin-left: 2%;
  z-index: 500;
}

.MapCaption {
  position: relative;
  width: 320px;
  height: 100%;
  text-align: right;
  margin-right: 15px;
  right: 35px;
}

.MapCaption h2 {
  position: relative;
  top: 50%;
  color: var(--color-medium);
  font-family: var(--font-bodyAlternative);
  font-size: 2rem;
  margin-bottom: 15px;
}

.MapCaption p {
  position: relative;
  top: 50%;
  color: var(--color-wine);
  font-family: var(--font-body);
  font-size: 1rem;
}

.DestinationImage {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.LineVertical {
  position: absolute;
  height: 100%;
  width: 2px;
  border-right: 2px solid var(--color-wine);
  right: 45dvw;
  top: 0;
}

.LineVertical .dot {
  background-color: var(--color-wine);
  border-radius: 100%;
  height: 10px;
  width: 10px;
  position: absolute;
  right: -5px;
}

.LineVertical .dot.item1 {
  top: 47dvh;
}

.LineVertical .dot.item2 {
  top: 99dvh;
}

.LineVertical .dot.item3 {
  top: 191dvh;
}

.DestinationImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*DestinationsHotels*/

.HotelsDestination {
  position: relative;
  width: 100dvw;
  height: 90dvh;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.ImgHotelsDestina {
  width: 65dvw;
  height: 90%;
  overflow: hidden;
  padding-top: 20px;
}

.ImgHotelsDestina img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.HotelsDestinationCaption {
  padding-top: 5%;
  width: 57dvw;
  height: 100dvh;
  text-align: left;
}

.HotelsDestinationCaption h2 {
  color: var(--color-wine);
  font-family: var(--font-bodyAlternative);
  font-size: 2rem;
  margin-bottom: 15px;
  padding-left: 70px;
  margin-top: 15px;
}

.HotelsDestinationCaption h1 {
  color: var(--color-wine);
  font-family: var(--font-body);
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.HotelsDestinationCaption ul {
  margin-left: 70px;
  list-style: none;
}

.HotelsDestinationCaption .ListHotels {
  font-family: var(--font-body);
  color: var(--color-wine);
  margin-right: 15px;
  list-style: inside;
}

/*ExperienceDestination*/

.ExperienceDestination {
  position: relative;
  width: 100dvw;
  height: 75dvh;
  display: flex;
  margin-bottom: 15px;
}

.ImgExpDestina {
  width: 65%;
  overflow: hidden;
}

.ImgExpDestina img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ExpDestinationCaption {
  padding: 4%;
  width: 80%;
  margin-right: 15px;
  text-align: right;
}

.ExpDestinationCaption ul {
  margin-left: 50px;
  text-align: right;
  list-style: none;
}

.ExpDestinationCaption h2 {
  color: var(--color-wine);
  font-family: var(--font-bodyAlternative);
  font-size: 2rem;
  margin-bottom: 15px;
  padding-left: 15px;
}

.ExpDestinationCaption h1 {
  color: var(--color-wine);
  font-family: var(--font-body);
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.ExpDestinationCaption p {
  color: var(--color-wine);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Ajustes Gerais para Telas Menores (Tablets e Mobile) */
@media screen and (max-width: 1024px) {
  /* Removemos a linha vertical decorativa pois ela quebra o layout em telas menores */
  .LineVertical {
    display: none;
  }

  /* Ajuste da Seção Principal do Banner */
  .BannerDestination {
    flex-direction: column-reverse; /* Mapa vai para cima ou imagem para baixo, ajuste conforme preferência */
    height: auto; /* Remove a altura fixa de 87dvh para permitir rolagem */
    padding-top: 10px; /* Espaço para o header fixo */
    align-items: center;
  }

  /* Mapa do Brasil */
  .BrasilMap {
    width: 100%;
    height: 400px; /* Altura fixa para o mapa no mobile */
    margin-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  #svg-map1 {
    position: relative; /* Muda de absolute para relative para fluir no layout */
    width: 100%;
    max-width: 450px; /* Limita largura máxima para não estourar */
    height: auto;
  }

  /* Texto Descritivo do Estado (Legenda) */
  .MapCaption {
    width: 90%;
    text-align: center;
    padding: 0;
    margin: 20px 0;
    height: auto;
  }

  .MapCaption h2,
  .MapCaption p {
    position: static; /* Remove o posicionamento top: 50% */
    transform: none;
    text-align: center;
  }

  /* Imagem de Destaque do Destino */
  .DestinationImage {
    width: 100%;
    height: 300px; /* Altura menor para mobile */
  }
}

/* Ajustes Específicos para Seções de Hotéis e Experiências */
@media screen and (max-width: 768px) {
  /* --- Seção de Hotéis --- */
  .HotelsDestination {
    flex-direction: column; /* Empilha Imagem e Texto */
    height: auto;
    padding-bottom: 40px;
  }

  .ImgHotelsDestina {
    width: 100%;
    height: 300px;
    padding-top: 0;
  }

  .HotelsDestinationCaption {
    width: 90%;
    height: auto;
    padding: 20px 0;
    text-align: center; /* Centraliza texto no mobile */
  }

  .HotelsDestinationCaption h2 {
    padding-left: 0; /* Remove padding lateral */
  }

  .HotelsDestinationCaption ul {
    margin-left: 0;
    padding: 0;
  }

  .HotelsDestinationCaption .ListHotels {
    margin-right: 0;
    list-style: none; /* Remove bolinhas padrão para ficar mais limpo centralizado */
  }

  /* --- Seção de Experiências --- */
  .ExperienceDestination {
    flex-direction: column-reverse; /* Texto em cima, Imagem embaixo (ou vice-versa) */
    height: auto;
    padding-bottom: 40px;
    align-items: center;
  }

  .ImgExpDestina {
    width: 100%;
    height: 300px;
  }

  .ExpDestinationCaption {
    width: 90%;
    margin-right: 0;
    text-align: center; /* Centraliza texto */
    padding: 20px 0;
  }

  .ExpDestinationCaption ul {
    margin-left: 0;
    text-align: center;
    padding: 0;
  }

  .ExpDestinationCaption h2 {
    padding-left: 0;
  }
}

/* Ajuste Fino para Telas Muito Pequenas (Celulares Antigos) */
@media screen and (max-width: 480px) {
  .MapCaption h2 {
    font-size: 1.5rem;
  }

  .MapCaption p {
    font-size: 0.9rem;
  }

  /* Ajuste do SVG para não cortar em telas muito estreitas */
  .svg-map {
    margin-right: 0;
    float: none;
  }
}
