/* ===========================
   RESET & BASE STYLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

ul {
  list-style: none;
}


/* ===========================
   HEADER & NAVIGATION
=========================== */
header {
  background-color: #333;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  border-radius: 5px;
}

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #1e90ff;
}


/* ===========================
   MAIN SECTION
=========================== */
.main-section {
  text-align: center;
  padding: 6rem 2rem;
  background-color: #1e90ff;
  color: #fff;
}

.main-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.main-section p {
  font-size: 0.3rem;
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #fff;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
  color: #fff;
}


/* ===========================
   HERO BANNER
=========================== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('https://source.unsplash.com/1600x900/?hotel,resort') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.hero-button {
  display: inline-block;
  background-color: #38a18b;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.hero-button:hover {
  background-color: #085315;
  transform: scale(1.05);
}


/* ===========================
   GENERAL SECTIONS
=========================== */
section {
  padding: 3rem 2rem;
  background-color: #fff;
  margin: 2rem 0;
  border-radius: 10px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.destaque-home p {
  font-size: 1.3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  line-height: 1.9;
  text-align: justify;
}

ul li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}


/* ===========================
   FOOTER
=========================== */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #1e90ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
}

.whatsapp-icon a {
  color: #fff;
  font-size: 1.8rem;
}

.whatsapp-icon a:hover {
  color: #145f14;
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .main-section h1 {
    font-size: 2rem;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .cta-button {
    font-size: 1rem;
    padding: 8px 16px;
  }

  section {
    padding: 2rem 1.5rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  footer {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

.whatsapp-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #065824;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button i {
  margin-right: 8px;
}

.whatsapp-button:hover {
  background-color: #043a19;
  transform: translateY(-2px);
}

/* ==== Mobile Menu ==== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

nav .nav-list {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav .nav-list {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 70px; /* abaixo do header */
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    z-index: 99;
  }

  nav .nav-list.active {
    display: flex;
  }

  nav .nav-list li {
    margin: 10px 0;
  }

  nav ul li a {
    color: #fff;
    font-size: 1.2rem;
  }
}
