* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;

}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
}

h1 {
  text-align: center;
}

p {
  margin: 0px;
  text-align: justify;
}

h3 {
  margin: 0px 20px;
}

h2 {
  margin: 0px 20px;
}

.namediv img {
  max-width: 25vw;

}

.namediv-img {
  display: flex;
  justify-content: center;
  margin: -3rem 0 3rem;
}

.init {
  margin: 0;
}

.namediv {
  margin-top: 80px;
  max-width: 500px;
}

header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ce4631;
  position: static;
}

ul {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.logo-nav {
  width: 10rem;
  height: 12.5rem;
  margin: -0.5rem 0 -10rem;
}

.logo-nav img {
  width: 100%;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #3d3d3d;
  font-weight: bold;
  padding-bottom: 5px; 
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0; /* começa da direita */
  width: 0;
  height: 1px;
  background-color: black;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%; /* cresce até a esquerda */
}


main {
  margin: 0 auto;
  background-color: #faf2e7;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%20320'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-opacity='0.12'%20stroke-width='0.6'%20d='M0,50%20C300,20%20600,60%20900,30%201200,10%201440,40'/%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-opacity='0.1'%20stroke-width='0.5'%20d='M0,280%20C350,250%20700,300%201050,260%201400,240'/%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-opacity='0.1'%20stroke-width='0.5'%20d='M0,250%20C250,200%20500,300%20750,220%201000,140%201250,280%201440,240'/%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-opacity='0.08'%20stroke-width='0.5'%20d='M0,80%20C400,60%20800,180%201440,120'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#init {
  display: flex;
  justify-content: space-around;
}

#init img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.qs {
  justify-items: center;
  margin-bottom: 50px;
}

.qs h2 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
}

.qs p {
  max-width: 600px;
}

.mvv {
  justify-items: center;
  margin: 0 auto;
  width: 70%;
}

.mvv ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
}

.mvv h3 {
  align-items: center;
  font-family: "Dancing Script", cursive;
  font-size: 50px;
}

.mvv li {
  max-width: 300px;

}

.bar {
  border-right: 1px solid rgb(240, 128, 128);
}

#acomodacoes {
  margin: 50px;
}

.acomodacoes-title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.acomodacoes-title h2 {
  font-family: "Dancing Script", cursive;
  font-size: 60px;
}

.slider-wrapper {
  position: relative;
  width: 50rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
}

.slider {
  display: flex;
  width: 600%;
  transition: transform 0.5s ease;
}

.slide {
  flex: 1 0 100%;
}

.slide img {
  width: 50rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

input[type="radio"] {
  display: none;
}

#s1:checked~.slider {
  transform: translateX(0%);
}

#s2:checked~.slider {
  transform: translateX(-100%);
}

#s3:checked~.slider {
  transform: translateX(-200%);
}

#s4:checked~.slider {
  transform: translateX(-300%);
}

#s5:checked~.slider {
  transform: translateX(-400%);
}

#s6:checked~.slider {
  transform: translateX(-500%);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;

}

.slider-nav label {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

#s1:checked~.slider-nav label[for="s1"],
#s2:checked~.slider-nav label[for="s2"],
#s3:checked~.slider-nav label[for="s3"],
#s4:checked~.slider-nav label[for="s4"],
#s5:checked~.slider-nav label[for="s5"],
#s6:checked~.slider-nav label[for="s6"] {
  background: #fa5659;
}

#contato {
  padding: 20px 20px 60px;

  text-align: center;
}

.contato-title {
  font-family: "Dancing Script", cursive;
  font-size: 50px;
  margin-bottom: 30px;
}

.contato-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.contato-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fffbf6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.contato-item:hover {
  transform: translateY(-5px);
}

.contato-item i {
  font-size: 40px;
  color: #fa5659;
  margin-bottom: 15px;
}

.contato-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contato-item p {
  font-size: 16px;
  color: #555;
}

.address {
  margin-top: 15px;
  text-align: center;
}

.footer {
  background-color: #fa5659;
  color: rgb(0, 0, 0);
  padding: 40px 0 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-about,
.footer-contact,
.footer-social {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
}

.footer a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.banner {
position: relative;
width: 100vw;
height: 85vh;
overflow: hidden;
background-image: url('src/Screenshot\ 2025-11-18\ 214610.png');
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.banner::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.4) 10%, rgba(0,0,0,0.8) 100%);
z-index: 1;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  max-width: 700px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  font-family: "Quicksand", sans-serif;
  border-radius: 25px;
  padding: 50px 20px 30px 20px;
}

.banner-text h1 {
font-size: 2.6rem;
margin-bottom: 10px;
font-weight: 700;
color: #fa5659;
}


.banner-text p {
font-size: 1.2rem;
line-height: 1.5;
color: #f2f2f2;
}

.about {
padding: 80px 10%;
text-align: center;
font-family: "Quicksand", sans-serif;
}


.about h2 {
font-size: 2rem;
margin-bottom: 20px;
}

.logo{
  max-width: 400px;
}