@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&family=Arvo:wght@400;700&family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --branco-fundo: #eee5e5;
  --gold: #b0901c;
  --ciano: #28afb0;
  --azul-banana: #19647e;
  --azul-escuro: #0d0221;
  --font-head: "Playfair Display", serif;
  --font-main: "Roboto", sans-serif;
  --font-alt: "Arvo", serif;
}

body {
  background-color: var(--branco-fundo);
  font-family: var(--font-main);
}

.capa {
  position: relative;
  height: 661px;
}

.slideshow {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: troca 32s infinite;
}

.slideshow img:nth-child(1) {
  animation-delay: 0s;
}
.slideshow img:nth-child(2) {
  animation-delay: 4s;
}
.slideshow img:nth-child(3) {
  animation-delay: 8s;
}
.slideshow img:nth-child(4) {
  animation-delay: 12s;
}
.slideshow img:nth-child(5) {
  animation-delay: 16s;
}
.slideshow img:nth-child(6) {
  animation-delay: 20s;
}
.slideshow img:nth-child(7) {
  animation-delay: 24s;
}
.slideshow img:nth-child(8) {
  animation-delay: 28s;
}

a {
  text-decoration: none;
}

@keyframes troca {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: scale(1.05);
  }
  25% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

header {
  padding: 16px;
}

.capa-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  width: 90%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.capa-texto span {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  opacity: 0;
  animation: aparecer 1s ease forwards;
}

.capa-texto h1 {
  font-family: var(--font-head);
  font-size: 80px;
  margin-bottom: 14px;
  opacity: 0;
  animation: aparecer 1s ease forwards;
  animation-delay: 0.4s;
}

.capa-texto p {
  font-size: 19px;
  max-width: 700px;
  line-height: 1.6;
  opacity: 0;
  animation: aparecer 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topo-inteiro {
  display: flex;
  justify-content: center;
}

.topo {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  max-width: 1100px;
  color: #fff;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--azul-banana);
  border-radius: 999px;
  gap: 100px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px;
  margin-left: 100px;
}

.logo {
  margin-right: 80px;
}

.logo:hover {
  transform: scale(1.05);
}

.lista {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 50px;
  font-size: 14px;
}

.a {
  transition: color 0.2s ease;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.a:visited {
  color: white;
  text-decoration: none;
}

.a:hover {
  color: #a8d8e8;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-outline,
.btn-fill {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  transform: scale(1.03);
}

.btn-fill {
  background: white;
  border: none;
  color: var(--azul-banana);
}

.btn-fill:hover {
  transform: scale(1.03);
}

.pages-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pages {
  display: flex;
  justify-content: center;
}

.pages a {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #19647e;
  text-decoration: none;
  padding: 16px 28px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.pages a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #19647e 0%, #27a3cc 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.pages a:hover {
  transform: scale(1.05);
}

.pages a:hover::after {
  transform: scaleX(1);
}

.esqueleto {
  background-color: var(--branco-fundo);
}

.section {
  background-color: var(--branco-fundo);
  padding: 56px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.section + .section {
  border-top: 1.5px solid #ddd;
}

.sec-title {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--azul-escuro);
  margin-bottom: 6px;
}

.sec-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 36px;
}

.trip-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul-banana);
  margin: 36px 0 18px;
}

.trip-group-label:first-of-type {
  margin-top: 0;
}

.trip-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.trip-grid,
.offer-grid {
  display: grid;
  gap: 22px;
}

.trip-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.offer-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.trip-card,
.offer-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.trip-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
}

.trip-card-img,
.offer-card-img {
  background-size: cover;
  background-position: center;
  position: relative;
}

.trip-card-img {
  height: 150px;
}

.offer-card-img {
  height: 130px;
}

.trip-card-body,
.offer-card-body {
  padding: 14px;
}

.trip-dest,
.offer-dest {
  font-family: var(--font-head);
  color: var(--azul-escuro);
}

.trip-dest {
  font-size: 18px;
  margin-bottom: 4px;
}

.offer-dest {
  font-size: 16px;
  margin-bottom: 3px;
}

.trip-date,
.offer-desc {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.trip-price,
.offer-new {
  font-weight: 700;
  color: var(--azul-banana);
}

.trip-price {
  font-size: 16px;
  margin-bottom: 14px;
}

.offer-prices {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.offer-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

.offer-new {
  font-size: 17px;
}

.trip-btn,
.offer-btn {
  display: block;
  width: 100%;
  padding: 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}

.trip-btn {
  border: 1.5px solid var(--azul-banana);
  background: transparent;
  color: var(--azul-banana);
}

.trip-btn.primary,
.offer-btn {
  background: var(--azul-banana);
  color: #fff;
  border: none;
}

.trip-btn.primary:hover,
.offer-btn:hover {
  background: var(--ciano);
}

.offer-discount {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--azul-banana);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.badge-inaug {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.help-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.help-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--azul-escuro);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  font-size: 14px;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ciano);
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  border: none;
  background: var(--azul-banana);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.form-submit:hover {
  background: var(--ciano);
}

.footer {
  background-color: var(--azul-escuro);
}

.footer-inner {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px;
}

footer img:hover {
  transform: scale(1.05);
}

@media (max-width: 860px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .capa-texto h1 {
    font-size: 48px;
  }
  .capa-texto p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .topo {
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
  }

  .nav-left {
    flex-direction: column;
  }

  .lista {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pages {
    flex-wrap: wrap;
  }
}
