:root {
  --bg: #061b2c;
  --bg-soft: #0d2a42;
  --card: #ffffff;
  --text: #132436;
  --muted: #5f6d7a;
  --accent: #00c0ff;
  --accent-2: #00f5d4;
  --success: #25d366;
  --gold: #c9a227;
  --page-bg: #eef2f6;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(2, 14, 31, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

h1,
h2,
.section h2 {
  font-family: "Montserrat", "Poppins", sans-serif;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - clamp(1rem, 5vw, 2.5rem)));
  margin-inline: auto;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(4, 16, 30, 0.75), rgba(4, 16, 30, 0.5)),
    url("assets/lancha-gatinha.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.8rem 0;
  position: sticky;
  top: 1rem;
  z-index: 1000;
  backdrop-filter: blur(12px) saturate(180%);
  background: rgba(5, 19, 34, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding-inline: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
  transition: all 0.4s ease;
}

.nav:hover {
  border-color: rgba(0, 245, 212, 0.3);
  transform: translateY(-2px);
  background: rgba(5, 19, 34, 0.85);
}

.logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: transform 0.3s ease;
  padding: 0.2rem 0;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-mark {
  width: 320px; /* Drastic increase */
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(0, 245, 212, 0.4));
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: -50px; /* Reduced since the main text is gone */
  position: relative;
  z-index: 2;
}

.logo-text {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.8px;
  color: #fff;
}

.logo-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(0, 245, 212, 0.4));
}

.nav-cta {
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.58rem 1rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-content {
  margin-inline: auto;
  max-width: 820px;
  padding: 4rem 0;
}

.kicker {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1.hero-title-main {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 2.2rem;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 24ch;
  margin-inline: auto;
}

.hero h1.hero-title-main span {
  display: block;
  font-size: 0.6em;
  margin-top: 0.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent-2), #fff, var(--accent-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3.5s linear infinite;
  opacity: 0.9;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  min-width: 260px;
}

.btn-hero--primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #04101e;
  box-shadow: 0 10px 25px rgba(0, 245, 212, 0.3);
}

.btn-hero--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.1);
}


.hero-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 1.7rem;
  max-width: 62ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  color: #04101e;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 24px rgba(0, 245, 212, 0.25);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 1.7rem;
  text-align: center;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 0.65rem;
  color: #4e6070;
  font-weight: 500;
}

.section-heading--with-rule h2 {
  color: #1a2b4a;
}

.section-heading--with-rule h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), #e8d48b);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.trust-emoji {
  font-size: 1rem;
  line-height: 1;
}

.trust-pill--stars {
  color: #f2b300;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.gallery-section {
  padding: 3.25rem 0 2.5rem;
  background: linear-gradient(180deg, #f5f7fa 0%, var(--page-bg) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid figure.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.card {
  background: var(--card);
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 35, 58, 0.16);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.55s ease;
  border: 1px solid transparent;
}

.card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  background: #e7cb4d;
  color: #1d2530;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(4, 25, 45, 0.22);
  border-color: #c6ecff;
}

.card img {
  height: clamp(180px, 28vw, 220px);
  object-fit: cover;
}

.card-so-igreja .polaroid--center img {
  object-position: center 42%;
}

.card-body {
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #112a42;
  min-height: 2.2em;
  text-wrap: balance;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.52rem;
  font-size: 1rem;
  color: #20344a;
  margin-bottom: 0.15rem;
}

.card li::before {
  content: "✦";
  color: #c8a938;
  margin-right: 0.5rem;
}

.btn-whatsapp {
  margin-top: 0.55rem;
  border: none;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  padding: 0.86rem 1rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-video {
  margin-top: 0.35rem;
  border: 1px solid #bbe8ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #eff9ff, #e8f6ff);
  color: #0b3352;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  cursor: pointer;
  padding: 0.72rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14, 127, 196, 0.2);
}

.price {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0d2741;
  letter-spacing: 0.1px;
  margin-top: auto;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

.split {
  background: linear-gradient(170deg, #eff7ff 0%, #e4f1ff 55%, #dcecff 100%);
  border-top: 1px solid #d7e8f8;
  border-bottom: 1px solid #d7e8f8;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 1.6rem;
}

.split-content h2 {
  max-width: 16ch;
}

.split-description {
  margin-top: 0.6rem;
}

.split-highlights {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #cde6fb;
  border-radius: 14px;
  padding: 0.72rem 0.75rem;
  box-shadow: 0 8px 18px rgba(20, 61, 92, 0.08);
}

.highlight-item strong {
  display: block;
  font-size: 1.05rem;
  color: #0b2f4e;
  margin-bottom: 0.1rem;
}

.highlight-item span {
  color: #4f6274;
  font-size: 0.84rem;
  line-height: 1.35;
}

.split-cta {
  margin-top: 1rem;
}

.split p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.split-media-wrap {
  background: linear-gradient(170deg, #0d2d49, #14466f);
  border-radius: 20px;
  padding: 0.8rem;
  box-shadow: 0 18px 34px rgba(8, 32, 52, 0.24);
}

.split img {
  border-radius: var(--radius);
  box-shadow: 0 14px 26px rgba(4, 23, 40, 0.34);
  max-height: 430px;
  object-fit: cover;
}

.reviews-carousel {
  display: grid;
  gap: 0.9rem;
}

.reviews-track {
  position: relative;
  min-height: 255px;
}

.review-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid #d8e9f8;
  border-radius: 18px;
  padding: 1rem 1.05rem;
  box-shadow: 0 10px 24px rgba(14, 44, 70, 0.1);
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.review-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(8, 37, 61, 0.2);
}

.review-stars {
  color: #f2b300;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
}

.review-text {
  color: #395066;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.review-author {
  font-weight: 700;
  color: #16324a;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #bfd3e6;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-dot.is-active {
  background: #0ea5e9;
  transform: scale(1.15);
}

.footer {
  background: var(--bg);
  color: #dce7f4;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.92rem;
}

.footer .container {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 220px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.video-modal.is-open {
  display: grid;
  place-items: center;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 20, 0.72);
  backdrop-filter: blur(3px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
  background: linear-gradient(165deg, #08213a, #10385b);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: clamp(0.75rem, 2vw, 1rem);
  color: #e9f4ff;
  box-shadow: 0 18px 40px rgba(3, 16, 33, 0.45);
}

.video-modal-content .kicker {
  margin-bottom: 0.35rem;
}

.video-modal-content h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.video-modal-content video {
  width: 100%;
  max-height: min(70vh, 620px);
  max-height: min(70dvh, 620px);
  border-radius: 12px;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  color: #d9ebff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    top: 0.55rem;
    padding-block: 0.8rem;
  }

  .logo-mark {
    width: 136px;
    height: 50px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-content h2 {
    max-width: none;
  }

  .split-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 740px) {
  .section {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.6rem 0 4rem;
  }

  .nav {
    position: static;
    top: 0.5rem;
    padding-inline: 0.7rem;
    border-radius: 10px;
    gap: 0.55rem;
  }

  .logo-mark {
    width: 114px;
    height: 40px;
  }

  .logo-text {
    font-size: 0.88rem;
  }

  .nav-cta {
    font-size: 0.84rem;
    padding: 0.45rem 0.78rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .split-highlights {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 0.9rem;
  }

  .card h3 {
    font-size: clamp(1.65rem, 8vw, 2rem);
    min-height: auto;
  }

  .btn-video,
  .btn-whatsapp,
  .btn-primary {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - clamp(0.85rem, 4vw, 1.5rem)));
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.4rem);
  }

  .kicker {
    font-size: 0.72rem;
    letter-spacing: 1.1px;
  }

  .nav {
    padding-inline: 0.55rem;
  }

  .logo {
    gap: 0.45rem;
  }

  .logo-mark {
    width: 102px;
    height: 36px;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding: 0.4rem 0.62rem;
  }

  .video-modal-content {
    width: min(880px, calc(100vw - 0.8rem));
    border-radius: 14px;
  }

  .video-modal-content h3 {
    padding-right: 1.7rem;
  }

  .price {
    font-size: 1.15rem;
  }

  .reviews-track {
    min-height: 300px;
  }
}

/* --------------------------------------------------------------------------
   Tema "landing de vendas" — inspirado em páginas estilo Canva (ex.: EU VOU)
   Referência: https://webpaginasdevendas.my.canva.site/eu-vou-turismo-excursoes-e-viagens
   -------------------------------------------------------------------------- */

body.theme-vendas {
  --v-navy: #1e3a5f;
  --v-navy-deep: #152a45;
  --v-green: #2ecc71;
  --v-green-dark: #27ae60;
  --v-gold: #d4af37;
  --v-page: #eceff3;
  --v-card-border: #e4e9f0;
  --v-shadow-soft: 0 14px 44px rgba(30, 58, 95, 0.12);
  background: var(--v-page);
  color: #2c3e50;
}

body.theme-vendas .hero.hero--vendas {
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      165deg,
      rgba(21, 42, 69, 0.55) 0%,
      rgba(21, 42, 69, 0.35) 40%,
      rgba(21, 42, 69, 0.88) 100%
    ),
    url("assets/lancha-gatinha.png") center/cover no-repeat;
}

body.theme-vendas .nav.nav--vendas {
  position: sticky;
  top: max(0.55rem, env(safe-area-inset-top, 0px));
  z-index: 30;
  background: linear-gradient(
    90deg,
    rgba(5, 19, 34, 0.78),
    rgba(5, 19, 34, 0.48)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding-block: 1.05rem;
}

body.theme-vendas .nav.nav--vendas .logo {
  color: #fff;
  gap: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.theme-vendas .nav.nav--vendas .logo-mark {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: clamp(158px, 28vw, 182px);
  height: clamp(52px, 9vw, 60px);
}

body.theme-vendas .nav.nav--vendas .logo-mark img {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
}

body.theme-vendas .nav.nav--vendas .logo-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.theme-vendas .footer--vendas .footer-logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  max-width: 260px;
  height: auto;
  margin-inline: auto;
}

body.theme-vendas .nav.nav--vendas .nav-cta {
  background: var(--v-green);
  color: #fff;
  border: none;
  font-weight: 800;
  padding: 0.68rem 1.35rem;
  font-size: 0.92rem;
  box-shadow: 0 8px 22px rgba(46, 204, 113, 0.38);
}

body.theme-vendas .nav.nav--vendas .nav-cta:hover {
  background: var(--v-green-dark);
  filter: none;
}

body.theme-vendas .hero-content--vendas {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: clamp(3rem, 10vw, 5.5rem);
}

body.theme-vendas .kicker--hero {
  color: #fde68a;
  letter-spacing: 2px;
}

body.theme-vendas .hero h1 {
  font-weight: 800;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 18ch;
}

body.theme-vendas .hero-emoji {
  display: inline-block;
  margin-left: 0.15em;
}

body.theme-vendas .hero-text {
  max-width: 42ch;
  margin-inline: auto;
  opacity: 1;
  color: rgba(255, 255, 255, 0.94);
}

body.theme-vendas .hero-actions {
  justify-content: center;
}


body.theme-vendas .trust-strip--vendas {
  background: #fff;
  border-bottom: 1px solid var(--v-card-border);
  box-shadow: 0 6px 24px rgba(30, 58, 95, 0.06);
}

body.theme-vendas .trust-pill {
  background: #f8fafc;
  border-color: var(--v-card-border);
  color: var(--v-navy);
}

body.theme-vendas .gallery-section--vendas {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

body.theme-vendas .section-pacotes-polaroid {
  background: linear-gradient(160deg, #0f766e 0%, #14b8a6 45%, #99f6e4 100%);
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(4rem, 9vw, 5.5rem);
}

body.theme-vendas .section-heading--with-rule h2 {
  color: var(--v-navy);
  font-weight: 800;
}

body.theme-vendas .section-heading--with-rule h2::after {
  background: linear-gradient(90deg, var(--v-gold), #f4e4a6);
  height: 4px;
  width: 56px;
}

body.theme-vendas .section-heading .kicker {
  color: #64748b;
}

body.theme-vendas .card:not(.card-vp) {
  border-radius: 20px;
  border: 1px solid var(--v-card-border);
  box-shadow: var(--v-shadow-soft);
  background: #fff;
}

body.theme-vendas .card:not(.card-vp):hover {
  border-color: #c8dff0;
  box-shadow: 0 20px 48px rgba(30, 58, 95, 0.14);
}

body.theme-vendas .card.card-vp {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.theme-vendas .card.card-vp:hover {
  border-color: transparent;
  box-shadow: none;
}

body.theme-vendas .card-badge {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #1a1a1a;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(243, 156, 18, 0.35);
}

body.theme-vendas .card:not(.card-vp) h3 {
  color: var(--v-navy);
  font-weight: 800;
}

body.theme-vendas .card-vp-title-banner h3 {
  color: #14532d;
}

body.theme-vendas .card:not(.card-vp) ul {
  color: #3d5a73;
}

body.theme-vendas .price {
  color: #475569;
  font-weight: 700;
}

body.theme-vendas .btn-video:not(.btn-video--vp) {
  border-color: #b8d4ea;
  background: linear-gradient(180deg, #f8fcff, #eef6fc);
  color: var(--v-navy);
}

body.theme-vendas .btn-whatsapp:not(.btn-whatsapp--vp) {
  background: var(--v-green);
  box-shadow: 0 8px 22px rgba(46, 204, 113, 0.3);
}

body.theme-vendas .btn-whatsapp:not(.btn-whatsapp--vp):hover {
  background: var(--v-green-dark);
  filter: none;
}

body.theme-vendas .split--vendas {
  background: #fff;
  border-top: 1px solid var(--v-card-border);
  border-bottom: 1px solid var(--v-card-border);
}

body.theme-vendas .split-content .kicker {
  color: #94a3b8;
}

body.theme-vendas .split-content h2 {
  color: var(--v-navy);
  font-weight: 800;
}

body.theme-vendas .split-media-wrap {
  background: linear-gradient(160deg, var(--v-navy-deep), var(--v-navy));
  border-radius: 24px;
}

body.theme-vendas .split .btn-primary {
  background: var(--v-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.35);
}

body.theme-vendas .section--reviews-vendas {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body.theme-vendas .review-card {
  border-color: var(--v-card-border);
  box-shadow: var(--v-shadow-soft);
}

body.theme-vendas .footer--vendas {
  background: linear-gradient(
    180deg,
    var(--v-navy-deep) 0%,
    #0f1a28 55%,
    #0b1320 100%
  );
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(1.65rem, 5vw, 2.25rem);
  padding-bottom: calc(clamp(1.65rem, 5vw, 2.25rem) + env(safe-area-inset-bottom, 0px));
}

body.theme-vendas .footer--vendas p {
  color: #94a3b8;
}

body.theme-vendas .footer--vendas .footer-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

@media (max-width: 740px) {
  body.theme-vendas .hero.hero--vendas {
    min-height: unset;
  }

  body.theme-vendas .hero-content--vendas {
    padding-inline: clamp(0.65rem, 4vw, 1.25rem);
    padding-bottom: clamp(2rem, 8vw, 4rem);
  }

  body.theme-vendas .nav.nav--vendas {
    border-radius: 14px;
    top: max(0.45rem, env(safe-area-inset-top, 0px));
    padding-inline: clamp(0.6rem, 3.5vw, 1rem);
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  body.theme-vendas .nav.nav--vendas .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  body.theme-vendas .nav.nav--vendas .logo-mark {
    width: clamp(118px, 38vw, 168px);
    height: clamp(38px, 12vw, 56px);
  }

  body.theme-vendas .nav.nav--vendas .logo-text {
    font-size: clamp(0.78rem, 3.8vw, 1rem);
  }

  body.theme-vendas .nav.nav--vendas .nav-cta {
    padding: 0.55rem 1rem;
    font-size: clamp(0.76rem, 3.2vw, 0.9rem);
    flex-shrink: 0;
  }

  body.theme-vendas .hero h1 {
    max-width: none;
  }

  body.theme-vendas .section--reviews-vendas {
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  body.theme-vendas .gallery-section--vendas {
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(2rem, 6vw, 3.5rem);
  }
}

@media (max-width: 520px) {
  body.theme-vendas .nav.nav--vendas {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding-block: 0.85rem;
  }

  body.theme-vendas .nav.nav--vendas .logo {
    justify-content: center;
  }

  body.theme-vendas .nav.nav--vendas .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    min-height: 46px;
  }
}

/* --------------------------------------------------------------------------
   Pacotes — layout estilo Polaroid (referência EU VOU / mock verde + teal)
   -------------------------------------------------------------------------- */
.section-pacotes-polaroid .section-heading--polaroid .kicker {
  color: rgba(255, 255, 255, 0.9);
}

.section-pacotes-polaroid .section-heading--polaroid h2 {
  color: #fff;
}

.section-pacotes-polaroid .section-heading--with-rule.section-heading--polaroid h2::after {
  background: linear-gradient(90deg, #fbbf24, #fde68a);
}

.section-pacotes-polaroid .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 740px) {
  .section-pacotes-polaroid {
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(3rem, 9vw, 5rem);
  }

  .section-pacotes-polaroid .container {
    width: min(1120px, calc(100% - clamp(0.75rem, 4vw, 1.5rem)));
  }
}

/* Bloco único: o que é comum a todos os passeios de lancha */
.pacotes-incluso-global {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.pacotes-incluso-global__inner {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, #f8fafc 55%, #f1f5f9 100%);
  border-radius: 22px;
  padding: clamp(1.35rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 6px rgba(15, 118, 110, 0.08),
    0 24px 48px rgba(6, 45, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pacotes-incluso-global__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
}

.pacotes-incluso-global__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pacotes-incluso-global__note {
  margin: 0 0 1.35rem;
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  line-height: 1.55;
  color: #475569;
  max-width: 52rem;
}

.pacotes-incluso-global__note strong {
  color: #0f766e;
  font-weight: 700;
}

.pacotes-incluso-global__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.5vw, 1.15rem);
}

.pacotes-incluso-global__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pacotes-incluso-global__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.12);
}

.pacotes-incluso-global__ico {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
}

.pacotes-incluso-global__ico svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pacotes-incluso-global__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pacotes-incluso-global__text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.pacotes-incluso-global__text span:last-child {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 960px) {
  .pacotes-incluso-global__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .pacotes-incluso-global__grid {
    grid-template-columns: 1fr;
  }
}

.cards--polaroid {
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 3.75rem);
  width: 100%;
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.card.card-vp {
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.card.card-vp:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: transparent;
  filter: drop-shadow(0 24px 40px rgba(6, 60, 58, 0.38));
}

.card.card-vp .polaroid img {
  height: auto !important;
}

.card-vp-polaroids {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: -3.25rem;
  position: relative;
  z-index: 3;
  padding: 0 clamp(0.5rem, 3vw, 1.5rem);
  pointer-events: none;
}

.polaroid {
  margin: 0;
  padding: 0.45rem 0.45rem 1.85rem;
  background: #fff;
  border-radius: 4px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 14px 32px rgba(4, 40, 35, 0.24);
  transform-origin: bottom center;
}

.polaroid img {
  display: block;
  width: clamp(92px, 21vw, 148px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.card-mergulho-vp .polaroid--center img {
  object-position: center 75%; /* Foca mais na base da igreja e no mar, reduzindo o excesso de céu */
}

.card-mergulho-vp .polaroid--right img {
  object-position: center 0%; /* Sobe a foto totalmente para mostrar a cabeça */
}

.polaroid--left {
  transform: rotate(-11deg) translateX(14px);
  z-index: 1;
}

.polaroid--center {
  transform: rotate(0deg) scale(1.07);
  z-index: 2;
}

.polaroid--right {
  transform: rotate(11deg) translateX(-14px);
  z-index: 1;
}

.card.card-vp:hover .polaroid--left {
  transform: rotate(-9deg) translateX(12px) translateY(-3px);
}

.card.card-vp:hover .polaroid--center {
  transform: rotate(0deg) scale(1.09) translateY(-4px);
}

.card.card-vp:hover .polaroid--right {
  transform: rotate(9deg) translateX(-12px) translateY(-3px);
}

.card-vp-shell {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(165deg, #15803d 0%, #166534 28%, #14532d 58%, #0c2718 100%);
  border-radius: 26px;
  padding: clamp(3rem, 7vw, 4rem) clamp(1.35rem, 4vw, 2rem) clamp(1.6rem, 4vw, 2.1rem);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 48px rgba(2, 28, 18, 0.45);
}

.card-vp-stars-top,
.card-vp-stars-bottom {
  text-align: center;
  letter-spacing: 0.65em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  margin: 0.25rem 0;
}

.card-vp-title-banner {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  margin: 0.65rem auto 1.35rem;
  max-width: 100%;
  text-align: center;
  border: 1px solid rgba(20, 83, 45, 0.08);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.75) inset,
    0 8px 28px rgba(0, 0, 0, 0.18);
}

.card-vp-title-banner h3 {
  margin: 0;
  font-size: clamp(0.85rem, 2.6vw, 1.12rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 0;
  color: #052e16;
}

/* Sobrescreve .card p / .card ul (cinza) — texto sempre legível no verde */
.card.card-vp p.card-vp-text {
  margin: 0;
  color: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.62;
  font-weight: 500;
}

.card.card-vp p.card-vp-options {
  margin: 1.1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d1fae5;
  line-height: 1.5;
}

.card.card-vp ul.card-vp-include-list {
  display: block;
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.card.card-vp .card-vp-include-list li::before,
.card.card-vp .card-vp-exclusive__list li::before {
  content: none;
  margin: 0;
}

.card.card-vp ul.card-vp-exclusive__list {
  display: block;
  margin: 0;
  font-size: inherit;
}

.card-vp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14.5rem, 22rem);
  gap: clamp(1rem, 3vw, 1.85rem);
  align-items: start;
}

.card.card-vp .card-vp-label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fef08a;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.card.card-vp .card-vp-subtitle {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fffb7a;
  letter-spacing: 0.07em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.card.card-vp .card-vp-subtitle::before {
  content: "✦ ✦ ✦ ";
  color: #fde047;
}

.card-vp-include {
  background: linear-gradient(165deg, #fde047 0%, #facc15 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(20, 83, 45, 0.12);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.card-vp-include-tab {
  background: linear-gradient(180deg, #166534 0%, #14532d 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.52rem 0.55rem;
}

.card-vp-include-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.75rem 0.95rem;
}

.card-vp-include-list li {
  display: flex;
  gap: 0.42rem;
  align-items: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  color: #052e16;
  line-height: 1.4;
  margin-bottom: 0.52rem;
}

.card-vp-include-list li:last-child {
  margin-bottom: 0;
}

/* Destaques exclusivos por pacote — sem repetir o bloco global */
.card-vp-exclusive {
  background: linear-gradient(165deg, #fffbeb 0%, #fff 40%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  box-shadow:
    0 10px 32px rgba(120, 80, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 1rem 1.1rem 1.15rem;
}

.card-vp-exclusive__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 83, 45, 0.12);
}

.card-vp-exclusive__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.12);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.card-vp-exclusive__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.card-vp-exclusive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card.card-vp .card-vp-exclusive__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.card.card-vp .card-vp-exclusive__list li:last-child {
  margin-bottom: 0;
}

.card-vp-exclusive__check {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f766e, #0d9488);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

.card-vp-exclusive__check svg {
  width: 0.82rem;
  height: 0.82rem;
}

.card-vp-include__ico {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(5, 46, 22, 0.08);
  color: #052e16;
}

.card-vp-include__ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.card-vp-include--dive .card-vp-include-tab {
  font-size: 0.72rem;
  padding: 0.62rem 0.65rem;
}

.card-vp-include--dive .card-vp-include-list {
  padding: 1rem 1rem 1.05rem;
}

.card-vp-include--dive .card-vp-include-list li {
  font-size: 0.82rem;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.card-vp-include--dive .card-vp-include-list li strong {
  display: inline;
  font-weight: 800;
  color: #052e16;
}

.card-vp-include__fineprint {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #334155;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(5, 46, 22, 0.1);
}

.card-vp-trust {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin: 1.15rem 0 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card-vp-trust:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-vp-trust svg {
  width: 1.15rem;
  height: 1.15rem;
  color: #fbbf24; /* Amarelo/Dourado para confiança */
  flex-shrink: 0;
}

.card-vp-trust span {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.95);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-vp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  margin-top: 1.35rem;
}

.btn-video--vp {
  border: 2px solid #86efac;
  background: linear-gradient(180deg, #14532d 0%, #0f3d24 100%);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.btn-video--vp:hover {
  background: linear-gradient(180deg, #166534 0%, #14532d 100%);
  border-color: #bbf7d0;
  color: #fff;
}

@keyframes vp-cta-pulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    box-shadow:
      0 4px 0 #4d7c0f,
      0 14px 36px rgba(22, 101, 52, 0.42),
      0 0 0 0 rgba(132, 204, 22, 0.35);
  }
  50% {
    transform: translateZ(0) scale(1.018);
    box-shadow:
      0 5px 0 #4d7c0f,
      0 18px 44px rgba(22, 101, 52, 0.55),
      0 0 0 12px rgba(163, 230, 53, 0);
  }
}

.btn-whatsapp--vp {
  width: 100%;
  justify-content: center;
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #d9f99d 0%, #bef264 45%, #a3e635 100%);
  color: #052e16;
  border: 1px solid rgba(5, 46, 22, 0.12);
  box-shadow:
    0 4px 0 #4d7c0f,
    0 14px 36px rgba(22, 101, 52, 0.45);
  animation: vp-cta-pulse 2.5s ease-in-out infinite;
  will-change: transform;
}

.btn-whatsapp--vp:hover,
.btn-whatsapp--vp:focus-visible {
  animation: none;
  background: linear-gradient(180deg, #ecfccb 0%, #bef264 50%, #84cc16 100%);
  filter: none;
  transform: translateY(-2px);
  box-shadow:
    0 5px 0 #3f6212,
    0 20px 48px rgba(22, 101, 52, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp--vp {
    animation: none;
  }
}

.card-vp-ribbon {
  position: absolute;
  top: 0.35rem;
  right: clamp(0.85rem, 4vw, 2rem);
  z-index: 10;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(22, 101, 52, 0.45);
}

.card-vp-ribbon--gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1c1917;
}

.card-vp-ribbon--vip {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
}

@media (max-width: 720px) {
  .card-vp-grid {
    grid-template-columns: 1fr;
  }

  .polaroid img {
    width: clamp(74px, 26vw, 118px);
  }

  .card-vp-polaroids {
    margin-bottom: -2.35rem;
  }

  .card-vp-include,
  .card-vp-exclusive {
    max-width: 24rem;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .polaroid--left {
    transform: rotate(-8deg) translateX(8px);
  }

  .polaroid--center {
    transform: rotate(0deg) scale(1.05);
  }

  .polaroid--right {
    transform: rotate(8deg) translateX(-8px);
  }

  .card.card-vp:hover .polaroid--left {
    transform: rotate(-7deg) translateX(6px) translateY(-2px);
  }

  .card.card-vp:hover .polaroid--center {
    transform: rotate(0deg) scale(1.06) translateY(-3px);
  }

  .card.card-vp:hover .polaroid--right {
    transform: rotate(7deg) translateX(-6px) translateY(-2px);
  }

  .card-vp-shell {
    padding-inline: clamp(1rem, 4vw, 1.35rem);
  }

  .pacotes-incluso-global__inner {
    padding-inline: clamp(1rem, 4vw, 1.35rem);
  }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.floating-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-instagram {
  0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(225, 48, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

.floating-btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  animation: pulse-instagram 2.5s infinite;
}

.floating-btn--whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2.5s infinite;
}


.floating-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 740px) {
  .floating-actions {
    bottom: 1.5rem;
    right: 1rem;
    gap: 0.75rem;
  }
  
  .floating-btn {
    width: 52px;
    height: 52px;
  }
  
  .floating-btn svg {
    width: 28px;
    height: 28px;
  }
}

