@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
  background: #f7f6f6;
  padding-top: 80px;
}

h1, h2, h3 { font-weight: 700; }

.highlight { font-weight: 500; }

header {
  background: #006491;
  color: #fff;
  padding: 0 20px; /* 10 12 */
  align-items: center;
  justify-content: space-between;
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 60px;
}

.logo img { 
  height: auto;
  max-height: 72px;
  object-fit: contain;
  margin-top: 5px;
  margin-left: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0 30px;
  display: flex;
  gap: 0px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:active { background: #24a2dd; }

.menu-toggle { 
  display: none; 
  flex-direction: column; 
  cursor: pointer; 
}

/* Mobile */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #006491;
    position: absolute;
    top: 80px; 
    right: 0;
    width: 100%;
  }

  nav ul li { 
    text-align: center; 
    padding: 10px 0; 
  }

  .menu-toggle { display: flex; }

  nav.show ul { 
    display: flex; 
    flex-direction: column; }

  h1 { margin: 0px; }
    .section-title { margin-top: 40px; }

  .container { 
    grid-template-columns: 1fr; 
    padding: 10px 12px; 
    gap: 16px; 
    }

  .card { 
    min-height: auto; 
    padding-bottom: 0; 
  }
  .card img { 
    width: 100%; 
    height: auto; 
    max-height: 240px; 
    object-fit: cover; 
  }
  .card h2 { 
    font-size: 1.25rem; 
    margin: 12px; 
  }
  .card p { 
    font-size: 1rem; 
    margin: 0 12px 12px 12px; 
    text-align: left;
  }
  .info-passeio { 
    font-size: 0.95rem; 
  }
  .card .preco { 
    font-size: 1.1rem; 
    margin: 12px; 
  }
  .card button { 
    padding: 12px; 
    font-size: 1rem; 
  }
  header { 
    padding: 14px 16px; 
    align-items: center; 
  }
  .logo img { 
    max-height: 72px;
    margin-left: 12px; 
  }
  .menu-toggle span { 
    width: 30px; 
    height: 4px; 
    background: #fff; 
    border-radius: 2px; 
    margin: 4px 0; 
  }

  .header-right { 
    gap: 12px; 
    margin-right: 12px; }
  .lang-switch { 
    display: flex; 
    justify-content: space-between; 
    width: 120px; 
    gap: 10px; 
    margin-right: 12px;
  }
  .lang-switch img { 
    width: 30px; 
    height: 30px; 
  } /* versão mobile perfeita */

  nav ul li a { 
    padding: 12px 16px; 
    font-size: 1.05rem; 
  }
}

/* Desktop */
@media (min-width: 769px) {
  .lang-switch img {
    width: 30px;   /* ajuste para desktop 22 16 */
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.2s ease;
  }
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 10px 10%;
}

@media (min-width: 769px) {
  .container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  min-height: 380px;
}

.card h2 { margin: 10px; color: #006494; }
.card p { margin: 10px; flex-grow: 1; }
.card .preco { font-weight: bold; margin: 10px; color: #006494; font-size: 1.2em; }
.card .preco span { font-style: italic; font-weight: normal; font-size: 0.7em; color: #555; }
.card button { background: #247194; color: #fff; border: none; width: 100%; padding: 10px; cursor: pointer; border-radius: 0 0 8px 8px; }
.card button:hover { background: #006494; }
.card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }

.lang-switch { 
  display: flex; 
  gap: 10px; 
}
.lang-switch button { 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 0; 
}
.lang-switch img:hover { transform: scale(1.1); }

h1 { margin-top: 20px; font-size: 2em; }
.container p { font-size: 1em; color: #333; }

.info-passeio {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 3px 0;
  margin: 10px 0;
  text-align: center;
  font-size: 0.85em;
}

.info-passeio p { display: flex; align-items: center; gap: 6px; }
.info-passeio i { color: #006494; margin-right: 6px; font-size: 18px; }

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-button img:hover { transform: scale(1.1); }

footer {
  background: #006491;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 10%;
  border-top: 2px solid #ddd;
}

footer div { margin: 0 10px; flex: 0 0 auto; }
.footer-left { text-align: left; }
.footer-center { text-align: center; }
.footer-right { text-align: right; }

.footer-center {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer h3 { margin: 0 0 5px 0; font-size: 1.1em; color: #fff; text-align: left; }
.footer-center a { display: block; color: #fff; text-decoration: none; margin: 2px 0; }
.footer-center a:hover { text-decoration: underline; }
.footer-right img { width: 40px; margin-left: 10px; vertical-align: middle; }

p { text-align: center; margin: 5px 0; line-height: 1.4; font-weight: 400; }

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    margin: 10px 0;
    text-align: center;
  }
  .footer-right img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
}

.footer-creditos {
  text-align: center;
  font-size: 0.9rem;
  color: #6eb5d6;
  margin-top: 0px;
  width: 100%;
  background-color: #006494;
  padding: 5px 0;
}
