/* =======================
   RESET E BODY
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 90px;
  /* espaço para o cabeçalho fixo */
}

/* =======================
   CABEÇALHO
======================= */
.header {
  background-color: #e6ebf0;
  padding: 20px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

/* =======================
   MENU
======================= */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 12px;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #d5006d;
}

/* =======================
   BOTÃO LOGIN
======================= */
.header .login-btn {
  background-color: #00c67e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.header .login-btn:hover {
  background-color: #00b16a;
}

/* =======================
   REDES SOCIAIS
======================= */
.social-icons a {
  display: inline-block;
  margin-left: 6px;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.2s, fill 0.2s;
  fill: #333;
}

.social-icons a:hover svg {
  transform: scale(1.1);
  fill: #d5006d;
}

/* =======================
   MENU HAMBURGUER
======================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 25px;
  height: 2px;
  background-color: #333;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #333;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* =======================
   HERO
======================= */
.hero {
  background-color: #e6ebf0;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.btn-hero {
  background-color: #00c67e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-hero:hover {
  background-color: #00b16a;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* =======================
   FEATURES
======================= */
.features {
  background-color: #f7f7fb;
  padding: 80px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature img,
.feature svg {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* =======================
   COMO FUNCIONA
======================= */
.how-it-works {
  background-color: #e6ebf0;
  padding: 80px 20px;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.how-left {
  flex: 1.2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-left h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.how-left p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.how-left ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.how-left ul li {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.how-left p strong,
.how-left ul li strong {
  font-weight: 700;
}

.how-right {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.how-right h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.2;
}

.how-right p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  pointer-events: none;
  color: #555;
}

.booking-form button {
  width: 100%;
  padding: 12px;
  background-color: #00c67e;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: not-allowed;
  pointer-events: none;
  transition: background 0.3s;
}

/* =======================
   QUEM USA
======================= */
.who-uses {
  background-color: #f7f7fb;
  padding: 80px 20px;
}

.who-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.who-container h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.who-container p {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #333;
  margin-bottom: 50px;
}

.business-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}

.business {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
  margin-bottom: 40px;
}

.business p {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
}

/* =======================
   POR QUE NOS ESCOLHER
======================= */
.why-choose {
  background-color: #e6ebf0;
  padding: 80px 20px;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-container h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #000;
}

.why-features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.why-feature {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  text-align: center;
}



.why-feature:hover {
  transform: translateY(-5px);
}

.why-feature svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.why-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #000;
}

.why-feature p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8rem;
}

/* =======================
   FOOTER
======================= */
footer {
  background-color: #e6ebf0;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ccc;
}

/* =======================
   MENU MOBILE
======================= */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle .hamburger,
  .menu-toggle .hamburger::before,
  .menu-toggle .hamburger::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding-top: 100px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav.active {
    right: 0;
  }
  

  .nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .header .login-btn {
    display: block;
    margin-bottom: 20px;
  }
}

/* =======================
   RESPONSIVIDADE - FORMULÁRIO AJUSTADO
======================= */
@media (max-width: 600px) {
  .how-right {
    padding: 15px;
  }

  .how-right h2 {
    font-size: 1.8rem;
    word-wrap: break-word;
    line-height: 1.2;
  }

  .booking-form input,
  .booking-form select,
  .booking-form button {
    font-size: 0.95rem;
  }
}
