:root {
  --color-primary: #0c225d;
  --color-primary-2: #233f91;
  --color-accent: #ff7a00;
  --color-accent-soft: #ffb36b;
  --color-sky: #35b9e6;
  --color-white: #ffffff;
  --color-ice: #f4fbff;
  --color-text: #10204a;
  --color-muted: #6d7791;
  --shadow-soft: 0 18px 40px rgba(8, 22, 66, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 50px;
}

/* ===== BASE ===== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  background: #071d53;
  color: var(--color-white);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5px 0;
}

.text-center {
  text-align: center;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0;
  background: var(--color-primary-2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 42px;
  max-height: 42px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  min-height: 50px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 15px;
  color: var(--color-white);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-item>a:hover,
.nav-item>a:focus-visible {
  color: var(--color-accent-soft);
}

.nav-button {
  height: 30px;
  min-height: 30px;
  padding: 0 18px;
  align-items: center;
  border: 1.5px solid var(--color-accent);
  border-radius: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  list-style: none;
  padding: 12px;
  margin: 0;
  background: var(--color-ice);
  color: var(--color-text);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(53, 185, 230, 0.45);
  font-size: 0.86rem;
  font-weight: 700;
}

.dropdown-menu li:last-child a {
  border-bottom: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--color-white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header-container .site-header {
  position: relative;
}

/* ===== HERO / BANNER ===== */

.page-hero {
  padding: 0 !important;
  margin: 0 !important;
  background: #071d53;
}

.hero-banner {
  position: relative;
  height: 210px;
  min-height: 210px;
  margin-bottom: 52px;
  overflow: visible;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 210px;
  min-height: 210px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 210px;
  min-height: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-image {
  width: 100%;
  height: 210px;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  display: none;
}

.flight-search-box {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  z-index: 30;
  width: min(900px, calc(100% - 48px));
  padding: 8px 14px 6px;
  border: 2px solid var(--color-sky);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-primary);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.flight-search-box .flight-field {
  box-sizing: content-box;
}

.flight-search-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr 1.2fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-sky);
  font-size: 0.88rem;
}

.flight-search-top label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.flight-search-top select {
  border: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 500;
  outline: none;
}

.flight-search-bottom {
  display: grid;
  grid-template-columns: 1.25fr 34px 1.25fr 1.45fr 1.1fr 90px;
  align-items: end;
  gap: 8px;
  margin-top: 6px;
}

.flight-field {
  min-height: 42px;
  padding: 3px 8px 5px;
  border: 1.5px solid var(--color-sky);
  border-radius: 8px;
}

.flight-field span {
  display: block;
  margin-bottom: 2px;
  color: var(--color-primary);
  font-size: 0.62rem;
  font-weight: 600;
}

.flight-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #333333;
  font-size: 0.82rem;
  background: transparent;
}

.field-label {
  display: flex !important;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
  color: var(--color-primary);
  font-size: 0.62rem;
  font-weight: 600;
}

.field-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.swap-button {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  padding: 0;
  border: 1.5px solid var(--color-sky);
  border-radius: 10px;
  background: transparent;
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swap-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.flight-submit {
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.flight-help {
  display: block;
  margin-top: 10px;
  color: #333333;
  text-align: right;
  font-size: 0.68rem;
  font-style: italic;
}

/* ===== FRASE + CARDS PRINCIPAIS ===== */

main>.section:nth-of-type(2) {
  padding: 5px 0 22px;
  background: #071d53;
}

main>.section:nth-of-type(2)::before {
  content: "Sua viagem, sem complicação.\A Descubra destinos, entenda tudo que precisa e encontre as melhores opções...";
  white-space: pre-line;
  display: block;
  margin-bottom: 34px;
  color: var(--color-white);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

main>.section:nth-of-type(2)::first-line {
  font-size: 1.12rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.base-card {
  position: relative;
  min-height: 170px;
  padding: 14px 12px 8px;
  border: 1px solid #27aee4;
  border-radius: 14px;
  background: transparent;
  color: var(--color-white);
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.base-card h2 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.base-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.card-main-image {
  width: 100%;
  max-width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 3px;
}

.card-understand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  margin-top: auto;
}

.understand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #27aee4;
  font-size: 0.78rem;
  font-weight: 500;
}

.info-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ===== CARROSSÉIS DINÂMICOS ===== */

.carousel-section {
  padding: 34px 0;
  background: #071d53;
}

.carousel-section .container {
  max-width: 1280px;
}

.section-header {
  margin-bottom: 8px;
}

.section-header h2 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: 1rem;
}

.section-header p {
  display: none;
}

.carousel-wrapper {
  position: relative;
}

.carousel-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 58px;
  border: 1px solid rgba(39, 174, 228, 0.45);
  border-radius: 12px;
}

.carousel-card {
  flex: 0 0 212px;
  width: 212px;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-white);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.carousel-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.carousel-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.carousel-card-content {
  flex: 1;
  padding: 3px 10px 6px;
  display: flex;
  flex-direction: column;
}

.carousel-card-content h3 {
  margin: 0 0 3px;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-location {
  display: none;
}

.card-period {
  margin: 0;
  color: #6b7280;
  font-size: 0.76rem;
  line-height: 1.05;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--color-accent) !important;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-prefix {
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-value {
  font-size: 1rem;
  font-weight: 900;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(12, 34, 93, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(12, 34, 93, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.carousel-arrow-left {
  left: 12px;
}

.carousel-arrow-right {
  right: 12px;
}

.carousel-arrow-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ===== REVIEWS ===== */

.reviews-section {
  padding-bottom: 48px;
}

.reviews-header {
  display: block;
  margin-bottom: 10px;
}

.reviews-header h2 {
  margin-bottom: 4px;
}

.reviews-more-link {
  display: inline-block;
  color: rgba(53, 185, 230, 0.95);
  font-size: 0.72rem;
  font-weight: 500;
}

.reviews-more-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(53, 185, 230, 0.28);
  border-radius: 12px;
}

.review-card {
  padding: 8px 20px;
  border-right: 1px solid var(--color-accent);
  border-radius: 0;
  background: transparent;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card:last-child {
  border-right: none;
}

.review-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.review-card strong {
  color: var(--color-white);
  font-size: 0.96rem;
}

/* ===== WHATSAPP poppy ===== */

.floating-whatsapp {
  position: fixed;
  right: 7%;
  bottom: 74px;
  z-index: 900;
  width: 155px;
  height: auto;
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== FOOTER ===== */

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-primary-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr 1.3fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-social a,
.footer-links a,
.footer-feature strong,
.footer-feature p {
  color: var(--color-white);
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-feature strong {
  display: block;
  font-size: 0.92rem;
}

.footer-feature p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.footer-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.instagram-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.carousel-track {
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* ===== PRODUTOS / FILTROS ===== */

.produtos-page {
  min-height: 100vh;
  background: #071d53;
  color: var(--color-white);
}

.produtos-filtros {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.produtos-filtros input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-sky);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  outline: none;
}

.filtros-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filtros-chips button {
  padding: 9px 14px;
  border: 1.5px solid var(--color-sky);
  border-radius: 999px;
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  cursor: pointer;
}

.filtros-chips button.active,
.filtros-chips button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.produto-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-primary);
}

.produto-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.produto-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.produto-card-content {
  padding: 14px;
}

.produto-tipo {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.produto-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.produto-card p {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.produto-card strong {
  color: var(--color-accent);
}

/* ===== PRODUTO DETALHADO ===== */

.produto-page {
  min-height: 100vh;
  background: #071d53;
  color: var(--color-white);
}

.produto-voltar {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--color-sky);
  font-weight: 700;
}

.produto-detalhe-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.produto-galeria {
  display: grid;
  gap: 14px;
}

.produto-imagem-principal {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  background: var(--color-white);
}

.produto-miniaturas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.produto-miniaturas img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--color-white);
}

.produto-info {
  padding: 28px;
  border: 1px solid rgba(53, 185, 230, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.produto-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.produto-local {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.produto-descricao-curta {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.produto-preco {
  display: block;
  margin: 18px 0;
  color: var(--color-accent);
  font-size: 1.35rem;
}

.produto-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.produto-whatsapp,
.produto-link-externo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
}

.produto-whatsapp {
  background: var(--color-accent);
  color: var(--color-white);
}

.produto-link-externo {
  border: 1.5px solid var(--color-sky);
  color: var(--color-white);
}

.produto-conteudo {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(53, 185, 230, 0.35);
  border-radius: 22px;
}

.produto-conteudo h2 {
  margin-bottom: 14px;
  font-size: clamp (1.3rem, 2.8vw, 1.8rem);
}

.produto-conteudo p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.produto-listas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 28px;
}

.produto-listas h3 {
  color: var(--color-accent);
}

.produto-listas ul {
  padding-left: 20px;
}

.produto-listas li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.card-image-link {
  display: block;
}

.understand-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  position: relative;
  width: min(100%, 420px);
  padding: 32px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--color-primary);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.popup-box h2 {
  margin-bottom: 14px;
  color: var(--color-primary);
}

.popup-box p {
  margin-bottom: 24px;
  line-height: 1.6;
  color: #555;
}

.popup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 800;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ===== CARDS PRODUTOS - VISUAL PREMIUM ===== */

.produto-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(53, 185, 230, 0.22);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.produto-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.produto-card-image-wrap {
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
}

.produto-card-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.produto-card:hover .produto-card-image-wrap img {
  transform: scale(1.06);
}

.produto-badge-destaque,
.produto-badge-tipo {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.produto-badge-destaque {
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
}

.produto-badge-tipo {
  right: 12px;
  bottom: 12px;
  background: rgba(12, 34, 93, 0.88);
  color: var(--color-white);
}

.produto-card-content {
  padding: 15px 15px 16px;
}

.produto-card-content .produto-tipo {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.produto-card-content h3 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.15;
}

.produto-card-content p {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.produto-card-content strong {
  display: block;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 900;
}

.produto-card-destaque {
  border-color: rgba(255, 122, 0, 0.55);
}

/* ===== STATUS DOS FILTROS ===== */

.produtos-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
}

.produtos-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.produtos-status button {
  border: 1.5px solid var(--color-sky);
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  color: var(--color-white);
  font-weight: 800;
  cursor: pointer;
}

.produtos-status button:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

/* ===== PRODUTO DETALHADO - MELHORIAS ===== */

.produto-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.produto-breadcrumb a {
  color: var(--color-sky);
  font-weight: 700;
}

.produto-breadcrumb strong {
  color: var(--color-white);
}

.produto-info-rapida {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.produto-info-rapida div {
  padding: 12px;
  border: 1px solid rgba(53, 185, 230, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.produto-info-rapida span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.produto-info-rapida strong {
  color: var(--color-white);
  font-size: 0.86rem;
}

/* ===== RELACIONADOS ===== */

.produtos-relacionados-section {
  margin-top: 54px;
}

.produto-miniaturas img {
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.produto-miniaturas img:hover {
  transform: scale(1.04);
  opacity: 0.86;
}

/* ===== PÁGINAS INFORMATIVAS ===== */

.info-page {
  min-height: 100vh;
  background: #071d53;
  color: var(--color-white);
}

.info-hero {
  padding: 12px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(53, 185, 230, 0.24), transparent 34%),
    #071d53;
  text-align: left;
}

.info-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.info-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  text-align: left;
}

.info-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-left: 40px;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.info-actions.center {
  justify-content: center;
}

.info-btn-primary,
.info-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 13px;
  font-weight: 900;
}

.info-btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.info-btn-secondary {
  border: 1.5px solid var(--color-sky);
  color: var(--color-white);
}

.info-hero-card,
.info-text-box,
.human-support-box {
  border: 1px solid rgba(53, 185, 230, 0.35);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.info-hero-card {
  padding: 28px;
}

.info-hero-card h2 {
  color: var(--color-accent);
}

.info-section {
  padding: 12px 0;
}

.info-section-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.info-section-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.info-section-header p,
.info-text-box p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.info-text-box {
  padding: 26px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-card,
.site-map-card {
  border: 1px solid rgba(53, 185, 230, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.timeline-card {
  padding: 22px;
}

.timeline-card:hover,
.site-map-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 900;
}

.timeline-card h3,
.site-map-card h3 {
  margin-bottom: 10px;
  color: var(--color-white);
}

.timeline-card p,
.site-map-card p,
.human-support-box p,
.info-final-cta p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.site-map-card {
  display: block;
  padding: 20px;
  color: inherit;
}

.human-support-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.human-support-box h2 {
  max-width: 620px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.info-final-cta {
  padding: 62px 0;
  text-align: center;
  background: rgba(35, 63, 145, 0.5);
}

.info-final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

/* ===== MINI FLUXOS HERO ===== */

.mini-flows {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-flows-title {
  display: block;
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 800;
}

.mini-flows-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.mini-flow-item {
  width: 80px;
  border: none;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-flow-item:hover {
  transform: translateY(-4px);
}

.mini-flow-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

.mini-flow-item span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ===== ATENDIMENTO PERSONALIZADO ===== */

.service-hero-section {
  padding: 58px 20px 36px;
  background: #071d53;
}

.service-container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.service-left small {
  display: block;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-left h1 {
  margin-bottom: 26px;
  color: var(--color-white);
  font-size: clamp(3.2rem, 6.6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.service-left p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.service-icon-item {
  width: 104px;
  height: 104px;
  padding: 14px 10px;
  border: 1px solid rgba(53, 185, 230, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.service-icon-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.085);
}

.service-icon-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.service-icon-item span {
  color: var(--color-white);
  font-size: 0.76rem;
  line-height: 1.22;
  font-weight: 800;
}

.service-right {
  width: 100%;
  max-width: 540px;
  justify-self: center;
  padding: 30px 34px 32px;
  border: 1px solid rgba(53, 185, 230, 0.34);
  border-radius: 34px;
  background: linear-gradient(180deg,
      rgba(35, 63, 145, 0.95),
      rgba(15, 40, 105, 0.95));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.service-right img {
  width: 165px;
  display: block;
  margin: 0 auto 20px;
}

.service-right h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.service-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 28px;
  background: rgba(255, 255, 255, 0.12);
}

.service-right p {
  max-width: 430px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 18px;
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.service-button:hover {
  transform: scale(1.02);
  filter: brightness(1.04);
}

.service-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.loja-page .shop-left h1 {
  font-size: 58px;
}

.loja-page .shop-left p {
  font-size: 20px;
}

.loja-page .shop-right h2 {
  font-size: 20px;
}

/* AJUSTES LOJA DA poppy */

.loja-page .shop-hero {
  padding: 48px 20px 22px;
}

.loja-page .shop-container {
  align-items: center;
}

.loja-page .shop-right {
  padding: 24px 30px 22px;
  max-width: 520px;
  margin: 0 auto;
}

.loja-page .shop-right img {
  width: 170px;
  margin: 0 auto 16px;
}

.loja-page .shop-right h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.loja-page .shop-right p {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.loja-page .shop-mini-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.loja-page .shop-mini-tags span {
  font-size: 12px;
  padding: 5px 8px;
}

.loja-page .shop-categories {
  padding: 0 20px 60px;
  margin-top: -8px;
}

.loja-page .shop-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  width: 100%;
}

.loja-page .shop-icon-item {
  margin: 0 auto;
  width: 108px;
  height: 108px;
}

/* ===== AJUSTES RÁPIDOS RODAPÉ + POPUPS FLUXOS ===== */

.footer-links a {
  font-size: 0.72rem;
  line-height: 1.25;
}

.instagram-icon {
  width: 42px;
  height: 42px;
}

.popup-box.flow-popup-box {
  width: min(100%, 860px);
  padding: 18px;
}

.popup-flow-image {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
}

.autocomplete-field {
  position: relative;
}

.autocomplete-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(12, 34, 93, 0.18);
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
}

.autocomplete-item {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  display: grid;
  gap: 3px;
}

.autocomplete-item:hover {
  background: #f3f6ff;
}

.autocomplete-item strong {
  display: block;
  color: #0c225d;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
}

.autocomplete-item span {
  display: block;
  color: #222;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
}

.autocomplete-item small {
  display: block;
  color: #666;
  font-size: 0.68rem;
  line-height: 1.2;
}

.autocomplete-empty {
  padding: 12px;
  color: #0c225d;
  font-size: 13px;
  line-height: 1.4;
}


.date-group,
.passenger-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.date-group input,
.passenger-group input {
  width: 100%;
  border: none;
  outline: none;
  font-family: inherit;
}

.flight-date input[type="date"] {
  position: relative;
  color: transparent;
}

.flight-date input[type="date"]::before {
  content: attr(data-formatada);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 0.82rem;
  font-weight: 500;
  pointer-events: none;
}

.passenger-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.passenger-mini {
  display: grid;
  gap: 1px;
  text-align: center;
}

.passenger-mini span {
  color: #0c225d;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
}

.passenger-mini input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: center;
  color: #333;
  font-size: 0.68rem;
}

/* =======================
   AJUSTES PRÉ-LANÇAMENTO 
   ======================= */

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  z-index: 1000;
}

.footer-links {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 2000;
  width: min(100% - 32px, 960px);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(56, 198, 255, .45);
  border-radius: 22px;
  background: rgba(7, 29, 83, .96);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .80);
  font-size: .95rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-actions a {
  color: #bdeeff;
  font-weight: 700;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ======================================================
   PADRÃO GLOBAL — TÍTULOS, TEXTOS E ESPAÇOS
   não mexe em cards, carrosséis, formulários e menus
   ====================================================== */

main:not(.home-page)>.section,
main:not(.home-page) section.section {
  padding-top: 12px !important;
}



main h1:not(.produto-card h1):not(.carousel-card h1):not(form h1),
main .section-header h1 {
  font-size: 1.7rem;
  line-height: 1.18;
}

main h2:not(.produto-card h2):not(.carousel-card h2):not(form h2),
main .section-header h2 {
  font-size: 1rem;
  line-height: 1.3;
}

main p:not(.produto-card p):not(.carousel-card p):not(form p) {
  font-size: 1rem;
  line-height: 1.65;
}

/* ======================================================
   PADRÃO VISUAL — MARGENS/CONTEINERS
   ====================================================== */

.service-container,
.shop-container,
.faq-page,
.info-page,
.seguro-container,
.shop-categories-container,
.shop-search-box,
.shop-products-container {
  width: min(100% - 32px, 1040px) !important;
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.service-left small,
.shop-left small,
.faq-hero small,
.info-kicker,
.seguro-hero small {
  display: block;
  color: #ff7a00 !important;
  font-size: 0.85rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-left h1,
.shop-left h1,
.faq-hero h1,
.info-hero h1,
.seguro-hero h1 {
  color: #ffffff !important;
  font-size: clamp(2.6rem, 5.2vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em;
  margin-bottom: 18px !important;
  text-align: left !important;
}

.service-left p,
.shop-left p,
.faq-hero p,
.info-hero p,
.seguro-hero p {
  max-width: 720px !important;
  margin-left: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

.faq-hero {
  max-width: 720px !important;
  margin: 0 auto 36px 0 !important;
  text-align: left !important;
}

.info-hero p {
  margin-left: 0 !important;
}

.shop-hero,
.shop-categories,
.shop-search-section,
.shop-products,
.seguro-page {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ======================================================
   CONTAINER PADRÃO — DICAS E LOJA
   ====================================================== */

.shop-categories,
.shop-search,
.shop-grid,
.poppy-categories,
.poppy-search,
.poppy-grid,
.dicas-grid,
.dicas-filtros,
.dicas-busca {
  width: 100% !important;
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* ======================================================
   ALINHAMENTO SUPERIOR REAL DAS PÁGINAS
   ====================================================== */

#conteudo-principal:not(.home-page) {
  padding-top: 23px !important;
}

#conteudo-principal>section:first-child,
#conteudo-principal>div:first-child,
#conteudo-principal>article:first-child {
  margin-top: 0 !important;
  /*padding-top: 0 !important;*/
}

.service-hero-section,
.shop-hero,
.info-hero,
.faq-hero,
.seguro-hero {
  margin-top: 0 !important;
  /*padding-top: 0 !important;*/
}


/* ======================================================
   ATENDIMENTO.HTML
   ====================================================== */

.service-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 55px;
}

.service-icon-item {

  width: 120px;
  height: 120px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: 0.3s ease;
}

.service-icon-item:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.08);
}

.service-icon-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
}

.service-icon-item span {
  color: white;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.service-right {

  background: linear-gradient(180deg,
      rgba(25, 55, 130, 0.95),
      rgba(15, 40, 105, 0.95));

  border: 1px solid rgba(72, 173, 255, 0.25);

  border-radius: 34px;

  padding: 50px 40px;

  text-align: center;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-right img {
  width: 210px;
  margin-bottom: 25px;
}

.service-right h2 {
  color: #ffffff;
  font-size: 58px;
  margin-bottom: 20px;
}

.service-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 25px 0 35px;
}

.service-right p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 38px;
}

.service-button {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;

  background: #ff7a00;

  color: white;

  padding: 20px 30px;

  border-radius: 22px;

  text-decoration: none;

  font-size: 22px;
  font-weight: 700;

  transition: 0.3s ease;
}

.service-button:hover {
  transform: scale(1.02);
}

.service-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* ==============================
         DICAS-DA-poppy.HTML
  =============================== */

.shop-hero {
  padding: 70px 20px 50px;
}

.shop-container {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.shop-left small {
  display: block;
  margin-bottom: 18px;

  color: #ff7a00;

  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-left h1 {
  font-size: 82px;
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 30px;
}

.shop-left p {
  max-width: 720px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 20px;
  line-height: 1.8;

  margin-bottom: 36px;
}

.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-btn-primary,
.shop-btn-secondary {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding: 0 26px;

  border-radius: 16px;

  font-weight: 700;

  transition: 0.3s ease;
}

.shop-btn-primary {
  background: #ff7a00;
  color: white;
}

.shop-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.shop-btn-primary:hover,
.shop-btn-secondary:hover {
  transform: translateY(-3px);
}

.shop-right {

  background: linear-gradient(180deg,
      rgba(25, 55, 130, 0.96),
      rgba(12, 34, 93, 0.96));

  border: 1px solid rgba(72, 173, 255, 0.2);

  border-radius: 34px;

  padding: 42px 36px;

  text-align: center;

  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.shop-right img {
  width: 240px;

  display: block;

  margin: 0 auto 24px;
}

.shop-right h2 {
  color: #ffffff;
  font-size: 46px;
  margin-bottom: 16px;
}

.shop-right p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 26px;
}

.shop-list {
  display: grid;
  gap: 14px;

  text-align: left;
}

.shop-list div {

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  color: white;

  font-weight: 600;
}

.shop-list span {
  font-size: 20px;
}

.shop-categories {
  padding: 10px 20px 80px;
}

.shop-categories-container {
  max-width: 1280px;
  margin: 0 auto;
}

.shop-categories-header {
  text-align: center;
  margin-bottom: 40px;
}

.shop-categories-header h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
}

.shop-categories-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.shop-icons {

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 22px;
}

.shop-icon-item {

  width: 120px;
  height: 120px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: 0.3s ease;
}

.shop-icon-item:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.08);
}

.shop-icon-item.ativo {
  border: 2px solid #35b9e6;
  background: rgba(53, 185, 230, 0.15);
}

.shop-icon-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 10px;
}

.shop-icon-item span {
  color: white;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

/* AJUSTES FINAIS LOJA DA poppy */

.dicas-page .shop-hero {
  padding: 0 0 8px;
}

.dicas-page .shop-container {
  max-width: 1040px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.dicas-page .shop-left small {
  margin-bottom: 12px;
}

.dicas-page .shop-left h1 {
  font-size: 56px;
  line-height: 1.02;
  max-width: 860px;
  margin-bottom: 22px;
}

.dicas-page .shop-left p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 0;
}

.dicas-page .shop-right {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 420px;
}

.dicas-page .shop-right img {
  width: 300px;
  margin: 0 auto;
}

.dicas-page .shop-right h2,
.dicas-page .shop-right p,
.dicas-page .shop-mini-tags {
  display: none;
}

.dicas-page .shop-categories {
  padding: 8px 20px 28px;
  margin-top: 0;
}

.dicas-page .shop-categories-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.dicas-page .shop-categories-container {
  max-width: 1280px;
  margin: 0 auto;
}

.dicas-page .shop-categories-header h2 {
  font-size: 16px;
  margin-bottom: 0;
}

.dicas-page .shop-categories-header p {
  font-size: 14px;
  margin: 0;
}

.dicas-page .shop-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  width: 100%;
}

.dicas-page .shop-icon-item {
  width: 104px;
  height: 104px;
  margin: 0 auto;
}

.dicas-page .shop-search-section {
  padding: 0 20px 34px;
}

.dicas-page .shop-search-box {
  max-width: 620px;
  margin: 0 auto;
}

.dicas-page .shop-search-box input {
  width: 100%;
  padding: 16px 22px;
  border: 1.5px solid rgba(53, 185, 230, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0c225d;
  outline: none;
  font-weight: 600;
}

.dicas-page .shop-products {
  padding: 0 20px 80px;
}

.dicas-page .shop-products-container {
  max-width: 1280px;
  margin: 0 auto;
}

.dicas-page .shop-products-header {
  margin-bottom: 22px;
}

.dicas-page .shop-products-header {
  display: flex;
  align-items: baseline;
  gap: 14px;

  margin-bottom: 22px;
}

.dicas-page .shop-products-header h2 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}

.dicas-page .shop-products-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 0;
}

.dicas-page .shop-products-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.dicas-page .shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.dicas-page .shop-product-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: #0c225d;
}

.dicas-page .shop-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dicas-page .shop-product-content {
  padding: 14px;
}

.dicas-page .shop-product-content small {
  display: block;
  margin-bottom: 6px;
  color: #ff7a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dicas-page .shop-product-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.dicas-page .shop-product-content p {
  margin: 0 0 12px;
  color: #6d7791;
  font-size: 14px;
  line-height: 1.45;
}

.dicas-page .shop-product-content a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
}

/* ==================================
          LOJA-DA-poppy.HTML
      =============================== */


.shop-container {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.shop-left small {
  display: block;
  margin-bottom: 18px;

  color: #ff7a00;

  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-left h1 {
  font-size: 82px;
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 30px;
}

.shop-left p {
  max-width: 720px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 20px;
  line-height: 1.8;

  margin-bottom: 36px;
}

.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-btn-primary,
.shop-btn-secondary {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding: 0 26px;

  border-radius: 16px;

  font-weight: 700;

  transition: 0.3s ease;
}

.shop-btn-primary {
  background: #ff7a00;
  color: white;
}

.shop-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.shop-btn-primary:hover,
.shop-btn-secondary:hover {
  transform: translateY(-3px);
}

.shop-right {

  background: linear-gradient(180deg,
      rgba(25, 55, 130, 0.96),
      rgba(12, 34, 93, 0.96));

  border: 1px solid rgba(72, 173, 255, 0.2);

  border-radius: 34px;

  padding: 42px 36px;

  text-align: center;

  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.shop-right img {
  width: 240px;

  display: block;

  margin: 0 auto 24px;
}

.shop-right h2 {
  color: #ffffff;
  font-size: 46px;
  margin-bottom: 16px;
}

.shop-right p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 26px;
}

.shop-list {
  display: grid;
  gap: 14px;

  text-align: left;
}

.shop-list div {

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  color: white;

  font-weight: 600;
}

.shop-list span {
  font-size: 20px;
}

.shop-categories {
  padding: 10px 20px 80px;
}

.shop-categories-container {
  max-width: 1040px;
  margin: 0 auto;
  width: min(100% - 32px, 1040px);
}

.shop-categories-header {
  text-align: center;
  margin-bottom: 40px;
}

.shop-categories-header h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
}

.shop-categories-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.shop-icons {

  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 22px;
}

.shop-icon-item {

  width: 120px;
  height: 120px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  transition: 0.3s ease;
}

.shop-icon-item:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.08);
}

.shop-icon-item.ativo {
  border: 2px solid #35b9e6;
  background: rgba(53, 185, 230, 0.15);
}

.shop-icon-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 10px;
}

.shop-icon-item span {
  color: white;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

/* AJUSTES FINAIS LOJA DA poppy */

.loja-page .shop-hero {
  padding: 0 0 8px;
}

.loja-page .shop-container {
  max-width: 1040px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.loja-page .shop-left small {
  margin-bottom: 12px;
}

.loja-page .shop-left h1 {
  font-size: 56px;
  line-height: 1.02;
  max-width: 860px;
  margin-bottom: 22px;
}

.loja-page .shop-left p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 0;
}

.loja-page .shop-right {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 420px;
}

.loja-page .shop-right img {
  width: 300px;
  margin: 0 auto;
}

.loja-page .shop-right h2,
.loja-page .shop-right p,
.loja-page .shop-mini-tags {
  display: none;
}

.loja-page .shop-categories {
  padding: 8px 20px 28px;
  margin-top: 0;
}

.loja-page .shop-categories-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.loja-page .shop-categories-container {
  max-width: 1040px;
  margin: 0 auto;
  width: min(100% - 32px, 1040px);
}

.loja-page .shop-categories-header h2 {
  font-size: 16px;
  margin-bottom: 0;
}

.loja-page .shop-categories-header p {
  font-size: 14px;
  margin: 0;
}

.loja-page .shop-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  width: 100%;
  justify-content: flex-start;
}

.loja-page .shop-icon-item {
  width: 104px;
  height: 104px;
  margin: 0 auto;
}

.loja-page .shop-search-section {
  padding: 0 20px 34px;
}

.loja-page .shop-search-box {
  max-width: 620px;
  margin: 0 auto;
}

.loja-page .shop-search-box input {
  width: 100%;
  padding: 16px 22px;
  border: 1.5px solid rgba(53, 185, 230, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0c225d;
  outline: none;
  font-weight: 600;
}

.loja-page .shop-products {
  padding: 0 20px 80px;
}

.loja-page .shop-products-container {
  max-width: 1280px;
  margin: 0 auto;
}

.loja-page .shop-products-header {
  margin-bottom: 22px;
}

.loja-page .shop-products-header {
  display: flex;
  align-items: baseline;
  gap: 14px;

  margin-bottom: 22px;
}

.loja-page .shop-products-header h2 {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}

.loja-page .shop-products-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 0;
}

.loja-page .shop-products-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.loja-page .shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.loja-page .shop-product-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: #0c225d;
}

.loja-page .shop-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.loja-page .shop-product-content {
  padding: 14px;
}

.loja-page .shop-product-content small {
  display: block;
  margin-bottom: 6px;
  color: #ff7a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.loja-page .shop-product-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.loja-page .shop-product-content p {
  margin: 0 0 12px;
  color: #6d7791;
  font-size: 14px;
  line-height: 1.45;
}

.loja-page .shop-product-content a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
}

/* =========================
            FAQ.HTML
  ========================== */

.faq-page {
  max-width: 1040px;
  margin: 0 auto;
  /*padding-top: 0;*/
}

.faq-hero {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 36px 0;
}

.faq-hero h1 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.faq-section {
  margin-bottom: 38px;
}

.faq-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #0c225d;
  text-align: left;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question span {
  font-size: 22px;
  color: #ff7a00;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-cta {
  margin-top: 70px;
  background: linear-gradient(135deg, #0c225d, #163b91);
  color: white;
  border-radius: 28px;
  padding: 45px 30px;
  text-align: center;
}

.faq-cta h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.faq-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.faq-cta a {
  display: inline-block;
  background: #ff7a00;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.faq-cta a:hover {
  transform: scale(1.04);
}


/* ============================
           SEGURO.HTML
  ============================= */

.seguro-page {
  padding: 0 0 90px;
}

.seguro-container {
  width: min(100% - 32px, 1040px);
  max-width: 1040px;
  margin: 0 auto;
}

.seguro-hero {

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;

  margin-bottom: 50px;
}

.seguro-hero small {

  display: block;
  margin-bottom: 12px;

  color: #ff7a00;

  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.seguro-hero h1 {

  color: white;
  font-size: 58px;
  line-height: 1.05;

  margin-bottom: 22px;
}

.seguro-hero p {

  color: rgba(255, 255, 255, 0.82);

  font-size: 18px;
  line-height: 1.7;
}

.seguro-hero img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
}

.seguro-form-box {

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  padding: 34px;
}

.seguro-form-grid {

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.seguro-field.full {
  grid-column: 1 / -1;
}

.seguro-field label {

  display: block;

  margin-bottom: 8px;

  color: white;

  font-size: 14px;
  font-weight: 700;
}

.seguro-field input,
.seguro-field select,
.seguro-field textarea {

  width: 100%;

  padding: 14px 16px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.96);

  color: #0c225d;

  font-size: 15px;

  outline: none;
}

.seguro-field textarea {
  min-height: 120px;
  resize: vertical;
}

.seguro-submit {

  margin-top: 26px;

  border: 0;

  background: #ff7a00;
  color: white;

  padding: 16px 24px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;

  transition: 0.3s ease;
}

.seguro-submit:hover {
  transform: translateY(-3px);
}

/* ======================================================
        SEGURANCA-PAGAMENTO-RESERVAS.HTML
  ====================================================== */

.info-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 20px;
}

.info-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  text-align: left;
}

.info-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-left: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.info-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h2 {
  color: #0c225d;
  font-size: 22px;
  margin-bottom: 16px;
}

.info-card p,
.info-card li {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.info-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.cta-box {
  margin-top: 70px;
  background: linear-gradient(135deg, #0c225d, #163b91);
  color: white;
  border-radius: 28px;
  padding: 50px 30px;
  text-align: center;
}

.cta-box h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.cta-button {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.04);
}

.info-kicker {
  display: block;
  color: #ff7a00;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* ===== PADRÃO INSTITUCIONAL ===== */

.page-standard,
.service-hero-section,
.shop-hero,
.faq-page,
.info-page,
.seguro-page {
  padding-top: 23px !important;
}

/* Correção: remove faixa entre header e banner da Home */
body:has(.page-hero) .page-hero,
body:has(.page-hero) .hero-banner,
body:has(.page-hero) .banner-carousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#index-page .page-hero,
#index-page .hero-banner,
#index-page .banner-carousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-page .page-hero,
.home-page .hero-banner,
.home-page .banner-carousel,
.home-page .banner-slide,
.home-page .banner-image {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* HOME — banner colado no header */

.home-page {
  padding-top: 0 !important;
}

.home-page .page-hero {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
}

.home-page .hero-banner {
  padding: 0 !important;
  margin: 0 0 52px !important;
  height: 210px !important;
  min-height: 210px !important;
  line-height: 0;
}

.home-page .banner-carousel,
.home-page .banner-slide,
.home-page .banner-slide a,
.home-page .banner-image {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  height: 210px !important;
  min-height: 210px !important;
  line-height: 0;
}

.home-page .banner-image {
  object-fit: cover;
}


/* ==========================
   MODAL EM CONSTRUÇÃO
========================== */

.modal-construcao {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 45, 0.75);
  z-index: 9999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;
}

.modal-construcao.is-visible {
  display: flex;
}

.modal-construcao-box {
  position: relative;

  width: 100%;
  max-width: 700px;

  background: #ffffff;
  border-radius: 20px;

  padding: 30px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-construcao-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  border-radius: 16px;
}

.modal-construcao-close {
  position: absolute;
  top: 12px;
  right: 16px;

  border: none;
  background: transparent;

  font-size: 28px;
  cursor: pointer;
}

.modal-construcao h2 {
  font-size: 2rem;
  color: var(--color-primary-2);
  margin-bottom: 12px;
}

.modal-construcao p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--color-text);
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 999px;

  background: #f47b20;
  color: #ffffff;

  text-decoration: none;
  font-weight: 700;
}

/*======== AJUSTE CARROSSEL CARDS VIAGENS =========*/
.carousel-card {
  height: 374px;
}

.carousel-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-card img {
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-card-content {
  height: 154px;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
}

.carousel-card-content h3 {
  margin: 0 0 4px;
}

.card-origin,
.card-period,
.card-trip-type {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.1;
  color: #6b7280;
}

.card-price {
  margin-top: auto;
  margin-bottom: 0;
  line-height: 1.05;
}

.card-description {
  margin: 6px 0 0;
  font-size: 0.84rem;
  line-height: 1.25;
  color: #6b7280;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-description .see-more {
  font-weight: 700;
  color: #ff6b00;
}

/*================= Busca home - estrutura nova ================ */
.flight-search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-sky);
  font-size: 0.88rem;
}

.trip-type-group,
.flight-options-group {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.trip-type-group {
  flex: 1;
}

.flight-options-group {
  flex: 0 0 auto;
}

.trip-type-group label,
.flight-options-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.flight-options-group select {
  width: auto;
  min-width: 130px;
  max-width: 170px;
}

/*.trip-type-group,
.flight-options-group {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}*/

.flight-date input[type="date"] {
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 6px;
}


/*================================
           RESPONSIVOS 
  ================================ */


@media (max-width: 1100px) {

  /*================= Home / busca tablet ================ */
  .home-page .hero-banner {
  height: auto !important;
  min-height: 180px !important;
  margin: 0 0 40px !important;
  overflow: visible !important;
}

.home-page .banner-carousel,
.home-page .banner-slide,
.home-page .banner-slide a,
.home-page .banner-image {
  height: 180px !important;
  min-height: 180px !important;
}

.flight-search-box {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: min(100% - 32px, 900px) !important;
  margin: -40px auto 40px !important;
}

  .flight-search-top {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 18px !important;
    align-items: center !important;
  }

  .trip-type-group {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }

  .flight-options-group {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    justify-content: flex-start !important;
  }

  .flight-options-group select {
    min-width: 150px !important;
    max-width: 180px !important;
  }

  .flight-search-bottom {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .flight-search-bottom .autocomplete-field:nth-of-type(1) {
    grid-column: 1 / 2 !important;
  }

  .flight-search-bottom .autocomplete-field:nth-of-type(2) {
    grid-column: 2 / 3 !important;
  }

  .swap-button {
    display: none !important;
  }

  .flight-date {
    grid-column: 1 / 2 !important;
  }

  .flight-passengers {
    grid-column: 2 / 3 !important;
  }

  .flight-submit {
    grid-column: 1 / -1 !important;
    height: 44px !important;
  }

  .flight-date .date-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .flight-date input[type="date"] {
    width: 100% !important;
    max-width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    color: #333333 !important;
  }

  .flight-date input[type="date"]::before {
    display: none !important;
    content: none !important;
  }

  .passenger-group {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .flight-help {
    text-align: center;
  }

  .floating-whatsapp {
    width: 150px !important;
  }

  /*================= Produto detalhe ================ */
  .produto-detalhe-grid,
  .produto-listas {
    grid-template-columns: 1fr;
  }

  .produto-info {
    padding: 22px;
  }

  /*================= Seguro ================ */
  .seguro-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seguro-hero h1 {
    font-size: 42px;
  }

  .seguro-form-grid {
    grid-template-columns: 1fr;
  }

  /*================= Info page ================ */
  .info-hero-grid,
  .human-support-box {
    grid-template-columns: 1fr;
  }

  .timeline-grid,
  .site-map-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /*================= Service / loja / dicas ================ */
  .service-container,
  .shop-container {
    grid-template-columns: 1fr;
  }

  .dicas-page .shop-container,
  .loja-page .shop-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dicas-page .shop-icons,
  .loja-page .shop-icons {
    grid-template-columns: repeat(4, 1fr);
  }

  /*================= Menu ================ */
  body.menu-open {
    overflow: hidden;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  opacity: 1;
  transition: transform .2s ease, opacity .2s ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    transform: translateX(100%);
    transition: transform .24s ease;
    overflow-y: auto;
    padding: 22px 18px 38px;
    background: rgba(7, 29, 83, .98);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-item>a,
  .nav-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .nav-item.has-dropdown>a::after {
    content: "▾";
    margin-left: 10px;
    transition: transform .2s ease;
  }

  .nav-item.has-dropdown.is-open>a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 8px;
    border: 1px solid rgba(56, 198, 255, .22);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    box-shadow: none;
  }

  .has-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  /*================= Grids tablet ================ */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*===============================================================================*/

@media (max-width: 768px) {

  .container {
    width: min(100% - 24px, var(--container));
  }

  /*================= Header / logo ================ */
  .site-header,
  .header-inner {
    height: 50px;
  }

  .brand-logo {
    max-height: 48px;
  }

    /*================= Busca home ================ */
  .flight-search-box {
  width: calc(100% - 24px) !important;
  margin: -22px auto 12px !important;
  padding: 8px 12px 10px !important;
  border-radius: 12px !important;
}

  .flight-search-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }

  .trip-type-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 12px !important;
  }

  .trip-type-group label:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  .flight-options-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .flight-options-group select {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .flight-search-bottom {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 8px !important;
  }

  .swap-button {
    display: none !important;
  }

  .flight-field {
    min-height: 54px !important;
    padding: 7px 10px !important;
    border-radius: 9px !important;
    box-sizing: border-box !important;
  }

  .field-label,
  .flight-field span {
    font-size: 0.68rem !important;
  }

  .flight-field input {
    font-size: 0.9rem !important;
  }

  .flight-date,
  .flight-passengers,
  .flight-submit {
    grid-column: 1 / -1 !important;
  }

  .flight-date {
    padding: 10px 12px 12px !important;
    overflow: hidden !important;
  }

  .flight-date .date-group {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 8px !important;
  }

  .flight-date input[type="date"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 4px 8px !important;
    border: 1px solid rgba(53, 185, 230, 0.6) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #333333 !important;
    font-size: 0.82rem !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .flight-date input[type="date"]::before {
    display: none !important;
    content: none !important;
  }

  .passenger-group {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }

  .flight-submit {
    height: 44px !important;
    font-size: 0.95rem !important;
    border-radius: 10px !important;
  }

  .flight-help {
    display: block !important;
    text-align: center !important;
    font-size: 0.72rem !important;
    margin-top: 10px !important;
  }

  .floating-whatsapp {
    width: 115px !important;
    right: 10px !important;
    bottom: 12px !important;
  }

  /*================= Banner mobile ================ */
  .home-page .hero-banner {
  height: auto !important;
  min-height: 180px !important;
  margin: 0 0 40px !important;
  overflow: visible !important;
}

.home-page .banner-carousel,
.home-page .banner-slide,
.home-page .banner-slide a,
.home-page .banner-image {
  height: 180px !important;
  min-height: 180px !important;
}

  /*================= Cards / grids ================ */
  .grid-4,
  .grid-3,
  .grid-2,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    max-width: 260px;
    gap: 46px;
  }

  .base-card {
    min-height: 150px;
    padding: 22px;
  }

  .carousel-track {
    padding-inline: 54px;
  }

  .carousel-card {
    flex-basis: 212px;
  }

  /*================= Reviews ================ */
  .review-card {
    border-right: none;
    border-bottom: 1px solid var(--color-accent);
  }

  .review-card:last-child {
    border-bottom: none;
  }

  /*================= Loja / Dicas ================ */
  .dicas-page .shop-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .loja-page .shop-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  /*================= título/imagem ================ */
  .dicas-page .shop-left h1,
  .loja-page .shop-left h1 {
    font-size: 40px;
  }

  .dicas-page .shop-right img,
  .loja-page .shop-right img {
    width: 220px;
  }

  .flight-passengers {
  min-height: auto !important;
  padding: 8px 10px !important;
}

.passenger-group {
  row-gap: 2px !important;
}

.passenger-mini span {
  font-size: 0.68rem !important;
}

.passenger-mini input {
  font-size: 0.8rem !important;
}

}

@media (max-width: 430px) {

  .flight-date .date-group {
    grid-template-columns: 1fr !important;
  }

  .passenger-group {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: 8px !important;
  }
}

.flight-warning-box {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 860px;
  background: #fff4c2;
  color: #3a2b00;
  border: 1px solid #f3d46b;
  border-radius: 16px;
  padding: 18px 52px 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
  z-index: 9999;
  font-size: 14px;
  line-height: 1.45;
}

.flight-warning-box strong {
  display: block;
  margin-bottom: 6px;
  color: #0c225d;
  font-size: 15px;
}

.flight-warning-box p {
  margin: 4px 0;
}

.flight-warning-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #3a2b00;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.flight-warning-box.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .flight-warning-box {
    bottom: 12px;
    padding: 16px 44px 14px 16px;
    font-size: 12.5px;
    border-radius: 14px;
  }

  .flight-warning-box strong {
    font-size: 14px;
  }
}
