@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0f3d73;
  --bg-strong: #155291;
  --surface: rgba(35, 96, 163, 0.2);
  --surface-strong: rgba(24, 78, 137, 0.34);
  --text: #f4f9ff;
  --text-soft: #d7e8fb;
  --accent: #20c4ff;
  --accent-strong: #5de0ff;
  --sun: #ffc248;
  --ocean: #0a58ca;
  --danger: #db3340;
  --border: rgba(189, 221, 255, 0.42);
  --shadow: 0 18px 34px rgba(7, 34, 70, 0.26);
  --bg-grad-a: #0f3d73;
  --bg-grad-b: #1f5a98;
  --bg-grad-c: #2f6eaf;
  --nav-bg-a: rgba(20, 77, 136, 0.85);
  --nav-bg-b: rgba(18, 66, 117, 0.76);
  --nav-border: rgba(218, 237, 255, 0.36);
  --nav-glow: rgba(111, 230, 255, 0.95);
  --footer-bg: rgba(19, 78, 138, 0.62);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: linear-gradient(145deg, #1a5a96 0%, #2d77b7 48%, #4f98d4 100%);
  min-height: 100vh;
  line-height: 1.5;
  transition: background 0.7s ease;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat-x;
  background-size: 50% 100%;
  opacity: 0.18;
}

body::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,120 400,0 600,60 C800,120 1000,0 1200,60 L1200,120 L0,120Z' fill='%2393d5ff'/%3E%3C/svg%3E");
  animation: waveSlide 8s linear infinite;
  opacity: 0.12;
}

body::after {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,80 C150,20 350,100 600,50 C850,0 1050,90 1200,40 L1200,120 L0,120Z' fill='%235db8e5'/%3E%3C/svg%3E");
  animation: waveSlide 12s linear infinite reverse;
  bottom: -10px;
  height: 160px;
  opacity: 0.10;
}

@keyframes waveSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Keep page content above the wave pseudo-elements */
.site-header, main, .site-footer, .whatsapp-float {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

main {
  overflow: hidden;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head p {
  max-width: 68ch;
}

.kicker {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #e5f7ff;
  background: rgba(32, 196, 255, 0.16);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3,
.brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.16;
}

p {
  color: var(--text-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(140deg, var(--nav-bg-a), var(--nav-bg-b));
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
  transform: translateY(-100%) translateZ(0);
  opacity: 0;
}

.site-header.header-visible {
  transform: translateY(0) translateZ(0);
  opacity: 1;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 120px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--nav-glow), rgba(93,224,255,0.9), var(--nav-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: navGlowSlide 3.5s ease-in-out infinite;
}

@keyframes navGlowSlide {
  0%   { left: -120px; }
  100% { left: 100%; }
}

.site-header.scrolled {
  box-shadow: 0 10px 20px rgba(9, 44, 86, 0.2);
}

.site-header.scrolled::after {
  opacity: 0.7;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

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

.logo-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  transform: none;
  text-shadow: none;
  animation: none;
}

.site-header .brand,
.site-header .brand small {
  text-shadow: none !important;
  filter: none;
  transform: none;
  animation: none;
}

.footer-wrap strong {
  display: inline-block;
  text-shadow: 0 0 10px rgba(191, 240, 255, 0.45), 0 2px 8px rgba(22, 71, 128, 0.32);
  transform: perspective(600px) rotateX(5deg);
}

.brand-highlight {
  display: inline-block;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(188, 236, 255, 0.5), 0 3px 10px rgba(26, 101, 173, 0.32);
  transform: perspective(620px) rotateX(6deg) translateZ(1px);
  filter: saturate(1.08);
}

.brand small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: #c6ddf7;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 600;
  color: #eef6ff;
  transition: 0.25s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(230, 246, 255, 0.9);
  transition: transform 0.25s ease;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(196, 228, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(18, 140, 126, 0.28);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(45, 111, 181, 0.65);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-btn i {
  transition: transform 0.2s ease;
}

.hero {
  padding: 0;
}

.hero-carousel {
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .carousel-item .container {
  height: 100%;
}

.carousel-item {
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 32, 62, 0.52), rgba(12, 48, 88, 0.38));
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(225, 245, 255, 0.5);
  animation: particleDrift 9s linear infinite;
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 24px, 0) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.45;
  }
  100% {
    transform: translate3d(0, -26px, 0) scale(1.05);
    opacity: 0;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

/* ── Hero smooth crossfade transitions ───────────────────────── */

/* Use a long, gentle fade so slides dissolve instead of jump */
.hero-carousel.carousel-fade .carousel-item {
  transition-duration: 1.6s;
  transition-timing-function: ease-in-out;
}

/* Content on entering slide fades in softly */
.slide-entering .hero-content-minimal {
  animation: heroContentReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes heroContentReveal {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Honour system accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .slide-entering .hero-content-minimal {
    animation: none !important;
  }
  .hero-carousel.carousel-fade .carousel-item {
    transition-duration: 0.3s !important;
  }
}

.hero-content-minimal {
  position: relative;
  margin: 0;
  max-width: 740px;
  padding: 0;
  z-index: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ── Hero entrance stagger animations ────────────────────────── */
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-content-minimal .kicker {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-content-minimal h1,
.hero-content-minimal h2 {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-content-minimal p {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-content-minimal .cta-row {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

/* Only first slide gets entrance stagger; subsequent slides use heroEnterContent */
.carousel-item:not(.active) .hero-content-minimal .kicker,
.carousel-item:not(.active) .hero-content-minimal h1,
.carousel-item:not(.active) .hero-content-minimal h2,
.carousel-item:not(.active) .hero-content-minimal p,
.carousel-item:not(.active) .hero-content-minimal .cta-row {
  opacity: 1;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-minimal .kicker,
  .hero-content-minimal h1,
  .hero-content-minimal h2,
  .hero-content-minimal p,
  .hero-content-minimal .cta-row {
    opacity: 1 !important;
    animation: none !important;
  }
}

.hero-content-minimal h1,
.hero-content-minimal h2,
.hero-content-minimal p,
.hero-content-minimal .kicker {
  text-shadow: 0 4px 18px rgba(10, 34, 66, 0.55);
}

.hero-content-minimal h1,
.hero-content-minimal h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.1;
}

.hero-content-minimal p {
  max-width: 58ch;
  margin: 16px auto 0;
  font-size: clamp(1.08rem, 1.3vw, 1.2rem);
}

.hero-content p {
  margin: 18px 0 24px;
  font-size: 1.06rem;
}

.hero-icons {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-icons li {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(210, 235, 255, 0.35);
  background: rgba(21, 88, 152, 0.3);
  border-radius: 12px;
  padding: 9px 10px;
  color: #e7f4ff;
}

.hero-icons i {
  color: var(--accent-strong);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.btn {
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  padding: 12px 18px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ocean), #275fbe);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 77, 156, 0.25);
}

.hero-cta {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 10px 24px rgba(18, 140, 126, 0.32);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 10px 24px rgba(18, 140, 126, 0.32); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 14px 28px rgba(18, 140, 126, 0.36); }
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(18, 140, 126, 0.28);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-cta::after {
  content: none;
}

.btn[href*='wa.me'],
.nav-cta[href*='wa.me'],
.whatsapp-float[href*='wa.me'] {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 10px 24px rgba(18, 140, 126, 0.3);
}

.btn[href*='wa.me']:hover,
.nav-cta[href*='wa.me']:hover,
.whatsapp-float[href*='wa.me']:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.36);
  filter: saturate(1.06);
}

.btn-soft {
  color: #ffffff;
  background: rgba(198, 226, 255, 0.24);
}

.btn-soft:hover {
  background: rgba(220, 238, 255, 0.34);
  color: #ffffff;
}

#avaliacoes-google .section-head h2 {
  color: var(--text-soft);
}

.hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  border-radius: 14px;
  padding: 12px;
  border: 1px dashed rgba(224, 243, 255, 0.6);
  background: rgba(26, 102, 173, 0.34);
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ocean);
}

.badge-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.badge-item {
  padding: 14px;
  border-radius: 15px;
  background: rgba(8, 38, 78, 0.82);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-item i {
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(17, 135, 255, 0.22);
  color: #8fe5ff;
  display: grid;
  place-items: center;
}

.card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.passeio-card {
  background: linear-gradient(180deg, rgba(33, 105, 176, 0.24), rgba(17, 77, 137, 0.14));
  border: 1px solid rgba(216, 238, 255, 0.44);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(17, 64, 113, 0.15);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.passeio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 30px rgba(14, 62, 111, 0.24);
}

.passeio-image {
  aspect-ratio: 16 / 10;
  min-height: 190px;
  background-size: cover;
  background-position: center;
}

.passeio-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.passeio-content h3 {
  color: #ebf5ff;
}

.passeio-content p {
  margin: 10px 0 16px;
}

.passeio-content .cta-row {
  margin-top: auto;
  justify-content: flex-start;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(93, 224, 255, 0.2);
  color: #d7f8ff;
}

.gallery {
  columns: 4 200px;
  column-gap: 14px;
}

.gallery-item {
  border: 0;
  width: 100%;
  text-align: left;
  cursor: zoom-in;
  position: relative;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  break-inside: avoid;
  min-height: 150px;
  border: 1px solid rgba(220, 240, 255, 0.35);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 8px 24px rgba(6, 36, 72, 0.22);
}

.gallery-item:hover {
  border-color: rgba(93, 224, 255, 0.6);
  box-shadow: 0 16px 40px rgba(6, 36, 72, 0.35), 0 0 20px rgba(93, 224, 255, 0.12);
}

.gallery-item .gallery-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.gallery-item .gallery-bg-layer.fade-out {
  opacity: 0;
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(226, 246, 255, 0.95);
  outline-offset: 2px;
}

/* Gradient overlay at the bottom */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 18, 38, 0.78) 0%, rgba(4, 18, 38, 0.2) 40%, transparent 60%);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Cursor spotlight effect */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(93, 224, 255, 0.18), transparent 45%);
  mix-blend-mode: screen;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-item span::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(93, 224, 255, 0.7);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 224, 255, 0.15);
}

.gallery-item:hover::after {
  opacity: 0.7;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox .modal-dialog {
  padding: 0.5rem;
}

.gallery-lightbox-content {
  background: rgba(3, 14, 28, 0.96);
  border: 1px solid rgba(93, 224, 255, 0.2);
  border-radius: 20px;
  padding: 0.85rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(93, 224, 255, 0.06);
  backdrop-filter: blur(20px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  z-index: 5;
}

#galleryLightboxImage {
  width: 100%;
  max-height: min(76vh, 840px);
  object-fit: contain;
  border-radius: 12px;
  background: #041321;
}

#galleryLightboxCaption {
  margin: 0.72rem 0.2rem 0.2rem;
  color: #e9f6ff;
  font-weight: 600;
}

#avaliacoes-google {
  position: relative;
  border-top: 0;
  border-bottom: 0;
}

.google-reviews-shell {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(196, 231, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(154, 208, 255, 0.06));
}

.google-header-info {
  flex: 1;
  min-width: 180px;
}

.google-header-info h3 {
  font-size: 1.18rem;
  margin-bottom: 0.15rem;
}

.google-rating-number {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 0.3rem;
}

.google-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.google-write-btn {
  font-size: 0.88rem;
  padding: 9px 14px;
}

.google-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 194, 72, 0.22), rgba(255, 215, 100, 0.12));
  border: 1px solid rgba(255, 210, 80, 0.45);
  color: #ffe9a0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.google-award-badge i {
  font-size: 1.12rem;
  color: #ffd86c;
}

.google-reviews-body {
  position: relative;
  padding: 0.2rem 2.2rem;
}

.google-brand-logo-wrap {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.72rem;
  background: transparent;
  box-shadow: none;
}

.google-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.google-stars {
  color: #ffd86c;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin: 0.05rem 0 0.18rem;
}

.google-word {
  font-weight: 700;
}

.google-letter-blue {
  color: #4285f4 !important;
}

.google-letter-red {
  color: #ea4335 !important;
}

.google-letter-yellow {
  color: #fbbc05 !important;
}

.google-letter-green {
  color: #34a853 !important;
}

.google-total {
  color: var(--text-soft);
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
}



.google-comments-carousel {
  max-width: 100%;
}

.google-comments-carousel .carousel-inner {
  padding: 0.1rem 0.1rem;
  min-height: 210px;
}

.comments-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.review-card {
  border: 1px solid rgba(196, 231, 255, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(154, 208, 255, 0.08));
  box-shadow: 0 12px 24px rgba(6, 36, 72, 0.2);
  border-radius: 16px;
  padding: 0.92rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 244, 255, 0.65);
  box-shadow: 0 16px 30px rgba(8, 38, 72, 0.3);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  margin-bottom: 0.5rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 42px;
  border: 1px solid rgba(211, 237, 255, 0.56);
  box-shadow: 0 6px 14px rgba(8, 43, 83, 0.28);
  background: linear-gradient(150deg, rgba(225, 240, 255, 0.28), rgba(125, 185, 235, 0.16));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-fallback {
  color: #eaf8ff;
  font-size: 1.28rem;
  text-shadow: 0 5px 10px rgba(7, 38, 70, 0.36);
}

.review-name {
  font-size: 0.98rem;
  line-height: 1.3;
}

.review-stars {
  color: #ffd86c;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.review-text {
  color: #e8f5ff;
  line-height: 1.5;
  font-size: 0.95rem;
  flex: 1;
  overflow: hidden;
}

.review-text[data-expanded='false'] {
  position: relative;
}

.review-card.expanded .review-text {
  max-height: none;
  overflow-y: auto;
  padding-right: 4px;
}

.review-more-btn {
  margin-top: auto;
  padding-top: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
  padding-left: 0;
  padding-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.review-more-btn:hover {
  color: #ffffff;
}

.google-comments-carousel .carousel-control-prev,
.google-comments-carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
}

.google-comments-carousel .carousel-control-prev {
  left: -1.2rem;
}

.google-comments-carousel .carousel-control-next {
  right: -1.2rem;
}

.carousel-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 52, 96, 0.7);
  backdrop-filter: blur(10px);
  color: #e0f4ff;
  border: 1px solid rgba(93, 224, 255, 0.3);
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(4, 24, 48, 0.3);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-nav-icon:hover {
  background: rgba(16, 72, 130, 0.85);
  border-color: rgba(93, 224, 255, 0.6);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(4, 24, 48, 0.4), 0 0 12px rgba(93, 224, 255, 0.15);
}

.google-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(219, 241, 255, 0.5);
  background: linear-gradient(135deg, rgba(236, 248, 255, 0.14), rgba(184, 220, 250, 0.1));
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 26px rgba(15, 61, 108, 0.15);
}

.google-feature h3 {
  margin-top: 8px;
}

.google-feature p {
  margin-top: 8px;
}

.google-score {
  border: 1px solid rgba(219, 241, 255, 0.5);
  border-radius: 14px;
  background: rgba(235, 248, 255, 0.16);
  text-align: center;
  padding: 16px 12px;
}

.google-score strong {
  font-size: 2.4rem;
  line-height: 1;
  display: block;
}

.google-score p {
  margin: 5px 0 2px;
  font-size: 1rem;
  color: #f8e27d;
  letter-spacing: 0.12em;
}

.google-score small {
  color: #dcefff;
}

.trust-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  border: 1px solid rgba(219, 241, 255, 0.45);
  background: rgba(236, 248, 255, 0.12);
  border-radius: 14px;
  padding: 13px;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.google-review-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-review-card {
  border: 1px solid rgba(219, 241, 255, 0.45);
  background: linear-gradient(180deg, rgba(236, 248, 255, 0.14), rgba(175, 216, 251, 0.1));
  border-radius: 14px;
  padding: 14px;
}

.google-review-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.google-review-card i {
  color: #9fd0ff;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(8, 39, 79, 0.72);
  padding: 10px 14px;
  font-weight: 600;
  color: #d7eaff;
  transition: 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(153, 203, 255, 0.46);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}

.about-card {
  background: linear-gradient(180deg, rgba(34, 106, 177, 0.2), rgba(18, 78, 139, 0.1));
  border: 1px solid rgba(213, 236, 255, 0.44);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.service-item,
.about-card,
.review-pill {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.service-item:hover,
.about-card:hover,
.review-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(13, 56, 100, 0.22);
}

.about-card p {
  margin-top: 10px;
}

.benefits-list {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.benefits-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.benefits-list i {
  color: var(--accent-strong);
  margin-top: 4px;
}

.certificate-space {
  width: 100%;
  max-width: 761px;
  aspect-ratio: 761 / 537;
  border: 1px solid rgba(213, 236, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(24, 86, 156, 0.3), rgba(10, 43, 84, 0.74));
  box-shadow: 0 14px 26px rgba(8, 39, 79, 0.28);
}

.certificate-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.certificate-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #d9ecff;
}

.page-hero {
  padding: 120px 0 32px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(93, 224, 255, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(32, 196, 255, 0.06), transparent 50%),
    linear-gradient(160deg, rgba(15, 61, 115, 0.4), rgba(20, 82, 145, 0.2));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(93, 224, 255, 0.2);
  padding: 40px 36px;
  background: linear-gradient(130deg, rgba(35, 106, 177, 0.2), rgba(14, 56, 102, 0.15));
  box-shadow: 0 20px 50px rgba(4, 22, 46, 0.3), 0 0 30px rgba(93, 224, 255, 0.04);
  backdrop-filter: blur(10px);
}

.page-hero-inner .kicker {
  margin-bottom: 14px;
}

.page-hero-inner h1 {
  margin-bottom: 12px;
}

.page-hero-inner p {
  max-width: 62ch;
  font-size: 1.06rem;
}

.page-hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-radius: 14px;
  border: 1px solid rgba(93, 224, 255, 0.2);
  background: rgba(93, 224, 255, 0.06);
  min-width: 90px;
}

.page-hero-stat strong {
  font-size: 1.15rem;
  color: var(--accent-strong);
  line-height: 1.2;
}

.page-hero-stat span {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-badge {
  border: 1px solid rgba(213, 236, 255, 0.45);
  background: rgba(240, 250, 255, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e7f4ff;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: start;
}

.legal-index,
.legal-card {
  background: linear-gradient(180deg, rgba(34, 106, 177, 0.2), rgba(18, 78, 139, 0.1));
  border: 1px solid rgba(213, 236, 255, 0.44);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.legal-index h2,
.legal-card h2,
.legal-card h3 {
  margin-bottom: 8px;
}

.legal-index ul,
.legal-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.legal-index li,
.legal-list li {
  border: 1px solid rgba(213, 236, 255, 0.34);
  background: rgba(229, 245, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.legal-list li strong {
  display: block;
  color: #eff8ff;
  margin-bottom: 4px;
}

.legal-block {
  margin-top: 14px;
  border-top: 1px dashed rgba(218, 237, 255, 0.34);
  padding-top: 14px;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.faq-intro,
.faq-panel {
  background: linear-gradient(180deg, rgba(34, 106, 177, 0.2), rgba(18, 78, 139, 0.1));
  border: 1px solid rgba(213, 236, 255, 0.44);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.faq-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.faq-stat {
  border: 1px solid rgba(213, 236, 255, 0.34);
  background: rgba(240, 250, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.faq-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #eef8ff;
}

.faq-panel .accordion-item {
  background: rgba(234, 247, 255, 0.1);
  border: 1px solid rgba(213, 236, 255, 0.4);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-panel .accordion-button {
  background: rgba(225, 244, 255, 0.08);
  color: #f4f9ff;
  font-weight: 700;
  box-shadow: none;
}

.faq-panel .accordion-button:not(.collapsed) {
  background: rgba(225, 244, 255, 0.18);
  color: #ffffff;
}

.faq-panel .accordion-body {
  color: #dff1ff;
}

.faq-panel .accordion-button::after {
  filter: invert(1) brightness(2);
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-item {
  background: linear-gradient(180deg, rgba(35, 106, 177, 0.2), rgba(17, 76, 136, 0.12));
  border-radius: 16px;
  border: 1px solid rgba(213, 236, 255, 0.44);
  padding: 16px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-item h3 {
  margin-bottom: 6px;
}

.service-media {
  aspect-ratio: 16 / 10;
  min-height: 165px;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(213, 236, 255, 0.44);
  background-size: cover;
  background-position: center;
}

.service-item .btn {
  margin-top: auto;
  align-self: flex-start;
}

.category-premium {
  border-color: rgba(255, 221, 146, 0.55);
  background: linear-gradient(180deg, rgba(255, 209, 115, 0.18), rgba(192, 129, 46, 0.1));
}

.category-aventura {
  border-color: rgba(137, 255, 188, 0.48);
  background: linear-gradient(180deg, rgba(91, 214, 138, 0.2), rgba(43, 136, 82, 0.1));
}

.category-cultural {
  border-color: rgba(204, 186, 255, 0.52);
  background: linear-gradient(180deg, rgba(155, 130, 255, 0.2), rgba(92, 74, 181, 0.1));
}

.service-item p {
  margin: 8px 0 12px;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.timeline li {
  list-style: none;
  background: rgba(35, 107, 178, 0.26);
  border: 1px solid rgba(213, 236, 255, 0.4);
  border-radius: 11px;
  padding: 10px 12px;
}

.review-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-pill {
  background: linear-gradient(180deg, rgba(35, 106, 177, 0.2), rgba(17, 76, 136, 0.11));
  border: 1px solid rgba(213, 236, 255, 0.44);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.choose-us-section {
  position: relative;
}

.choose-us-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.choose-us-spotlight {
  border: 1px solid rgba(213, 236, 255, 0.5);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 12% 12%, rgba(97, 211, 255, 0.25), transparent 34%),
    linear-gradient(145deg, rgba(31, 103, 173, 0.36), rgba(14, 62, 116, 0.18));
  box-shadow: 0 18px 30px rgba(8, 39, 79, 0.28);
  backdrop-filter: blur(7px);
}

.choose-us-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(213, 236, 255, 0.48);
  background: rgba(10, 54, 102, 0.46);
  padding: 7px 12px;
  color: #def0ff;
  font-size: 0.85rem;
  font-weight: 700;
}

.choose-us-badge i {
  color: var(--sun);
}

.choose-us-spotlight h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.22;
}

.choose-us-spotlight p {
  margin-top: 10px;
  color: var(--text-soft);
}

.choose-us-metrics {
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-item {
  border-radius: 14px;
  border: 1px solid rgba(213, 236, 255, 0.45);
  background: rgba(8, 42, 84, 0.48);
  padding: 12px 10px;
  text-align: center;
}

.metric-item strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.metric-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choose-card {
  border-radius: 18px;
  border: 1px solid rgba(213, 236, 255, 0.42);
  padding: 18px;
  background: linear-gradient(180deg, rgba(35, 106, 177, 0.25), rgba(15, 70, 128, 0.13));
  box-shadow: 0 12px 24px rgba(8, 39, 79, 0.2);
  backdrop-filter: blur(6px);
}

.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(8, 39, 79, 0.28);
}

.choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid rgba(213, 236, 255, 0.45);
  background: rgba(17, 77, 140, 0.56);
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.choose-card h3 {
  font-size: 1.05rem;
}

.choose-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 50px;
  border-top: 1px solid rgba(223, 242, 255, 0.4);
  background: linear-gradient(180deg, rgba(28, 102, 173, 0.18), var(--footer-bg) 30%);
  overflow: hidden;
  position: relative;
}

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

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(223, 242, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 26px;
  background: linear-gradient(to bottom, rgba(208, 239, 255, 0.34), transparent);
  pointer-events: none;
}

/* Footer rising sparkle particles */
.footer-particle {
  position: absolute;
  bottom: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(180, 230, 255, 0.85);
  box-shadow: 0 0 6px 2px rgba(93, 224, 255, 0.5);
  pointer-events: none;
  animation: sparkleRise linear infinite;
  opacity: 0;
}

@keyframes sparkleRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.footer-wrap {
  padding: 22px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 18px;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: #dbeeff;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.footer-social a {
  border: 1px solid rgba(218, 237, 255, 0.34);
  background: rgba(240, 250, 255, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 243, 255, 0.26);
  padding: 14px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.google-rating {
  margin-top: 10px;
  border: 1px solid rgba(218, 237, 255, 0.32);
  background: rgba(240, 250, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.google-rating strong {
  font-size: 1.1rem;
}

.google-rating small {
  display: block;
  color: #dcefff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25d366, #0fa958);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(15, 169, 88, 0.38);
  font-size: 1.5rem;
  z-index: 1200;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.55s ease;
}

[data-reveal].show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .legal-grid,
  .faq-shell {
    grid-template-columns: 1fr;
  }

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

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

  .choose-us-layout {
    grid-template-columns: 1fr;
  }

  .google-feature,
  .trust-grid,
  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .comments-pair {
    grid-template-columns: 1fr;
  }

  .google-comments-carousel .carousel-control-prev {
    left: 0.25rem;
  }

  .google-comments-carousel .carousel-control-next {
    right: 0.25rem;
  }

  .google-comments-carousel .carousel-inner {
    min-height: auto;
  }

  .review-card.expanded .review-text {
    max-height: none;
  }

  .service-media,
  .passeio-image {
    aspect-ratio: 4 / 3;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    border: 1px solid rgba(213, 236, 255, 0.5);
    border-radius: 20px;
    background:
      radial-gradient(circle at 15% 15%, rgba(93, 224, 255, 0.22), transparent 35%),
      linear-gradient(160deg, rgba(16, 73, 132, 0.98), rgba(9, 48, 92, 0.98));
    box-shadow: 0 16px 32px rgba(5, 25, 54, 0.4);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1001;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(213, 236, 255, 0.26);
    background: rgba(210, 239, 255, 0.08);
    padding: 11px 14px;
    color: #f4fbff;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    transform: none;
    border-color: rgba(93, 224, 255, 0.8);
    background: linear-gradient(130deg, rgba(93, 224, 255, 0.23), rgba(40, 156, 220, 0.18));
  }

  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-btn {
    display: inline-flex;
    border-color: rgba(213, 236, 255, 0.55);
    background: linear-gradient(135deg, rgba(52, 137, 216, 0.82), rgba(19, 89, 157, 0.78));
  }

  .menu-btn[aria-expanded='true'] {
    border-color: rgba(93, 224, 255, 0.9);
    background: linear-gradient(135deg, rgba(93, 224, 255, 0.32), rgba(31, 143, 208, 0.3));
    transform: translateY(-1px);
  }

  .menu-btn[aria-expanded='true'] i {
    transform: rotate(90deg);
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 0;
  }

  .hero-content-minimal {
    padding: 60px 0 46px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    height: 100vh;
    height: 100svh;
  }

  .hero-icons {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .card-grid,
  .service-grid,
  .review-strip,
  .choose-us-grid,
  .trust-grid,
  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .choose-us-spotlight {
    padding: 20px;
  }

  .choose-us-metrics {
    grid-template-columns: 1fr;
  }

  .faq-stats {
    grid-template-columns: 1fr;
  }

  .google-reviews-body {
    padding: 0.2rem 0.5rem;
  }

  .review-card {
    padding: 0.9rem 0.82rem;
  }

  .google-comments-carousel .carousel-inner {
    min-height: auto;
  }

  .google-comments-carousel .carousel-control-prev,
  .google-comments-carousel .carousel-control-next {
    width: 30px;
    height: 30px;
  }

  .carousel-nav-icon {
    width: 30px;
    height: 30px;
    font-size: 1.02rem;
  }

  .gallery {
    columns: 2 140px;
  }

  .certificate-space {
    max-width: 100%;
  }
}

/* ─── Passeio detail: blurred fixed background ──────────────── */
body.passeio-detail {
  background: transparent;
}

.passeio-page-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(0.75) brightness(0.45);
  z-index: -1;
  animation: bgDrift 22s ease-in-out infinite alternate both;
}

@keyframes bgDrift {
  from { transform: scale(1.1); }
  to   { transform: scale(1.14) translate(0.6%, 0.3%); }
}

/* ─── Service card: CSS image slideshow ─────────────────────── */
.service-media--slideshow {
  position: relative;
  overflow: hidden;
}

.service-media--slideshow > div {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: cardSlideFade 22.5s infinite;
}

.service-media--slideshow > div:nth-child(1) { animation-delay: 0s; }
.service-media--slideshow > div:nth-child(2) { animation-delay: 7.5s; }
.service-media--slideshow > div:nth-child(3) { animation-delay: 15s; }

@keyframes cardSlideFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  30%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ─── Passeio detail page layout ────────────────────────────── */
.passeio-hero {
  padding: 110px 0 24px;
}

.passeio-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #c9e4ff;
  margin-bottom: 14px;
}

.passeio-breadcrumb a {
  color: #c9e4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.passeio-breadcrumb a:hover { color: #fff; }

.passeio-hero-content h1 { margin-top: 8px; }

.passeio-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(225, 245, 255, 0.14);
  border: 1px solid rgba(213, 236, 255, 0.44);
  font-size: 0.87rem;
  font-weight: 600;
  color: #e8f5ff;
  backdrop-filter: blur(6px);
}

.info-chip i { color: var(--accent-strong); }

.passeio-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  align-items: start;
}

.passeio-main,
.passeio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.passeio-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  padding: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(93, 224, 255, 0.4);
}

.passeio-timeline li {
  position: relative;
  padding: 0 0 18px 18px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.passeio-timeline li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 8px rgba(93, 224, 255, 0.55);
}

.passeio-timeline li > strong {
  display: block;
  color: #eef8ff;
  margin-bottom: 4px;
}

.passeio-timeline li p {
  font-size: 0.9rem;
  margin: 0;
}

/* ─── Gallery Slider ─────────────────────────────────────────── */
.passeio-gallery-wrap {
  position: relative;
  margin-top: 8px;
  padding: 0 28px;
}

.passeio-gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.passeio-gallery-track::-webkit-scrollbar { display: none; }

.passeio-gallery-item {
  flex: 0 0 calc(33.333% - 10px);
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(213, 236, 255, 0.44);
  box-shadow: 0 12px 24px rgba(8, 39, 79, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.passeio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.passeio-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px rgba(8, 39, 79, 0.36);
}

.passeio-gallery-item:hover img { transform: scale(1.06); }

.gallery-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(15, 61, 115, 0.85);
  border: 1px solid rgba(213, 236, 255, 0.5);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 1.4rem;
  transition: background 0.2s ease, opacity 0.3s ease;
  opacity: 0.8;
  padding: 0;
}

.gallery-arrow:hover {
  background: rgba(20, 90, 165, 0.98);
  opacity: 1;
}

.gallery-arrow[hidden] { display: none !important; }

.gallery-arrow-prev {
  left: -6px;
  animation: arrowBounceLeft 2.2s ease-in-out infinite;
}

.gallery-arrow-next {
  right: -6px;
  animation: arrowBounceRight 2.2s ease-in-out infinite;
}

@keyframes arrowBounceLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  45%       { transform: translateY(-50%) translateX(-6px); }
}

@keyframes arrowBounceRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  45%       { transform: translateY(-50%) translateX(6px); }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(213, 236, 255, 0.32);
  border: 1px solid rgba(213, 236, 255, 0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.gallery-dot.active {
  background: var(--accent-strong);
  transform: scale(1.35);
}

.passeio-cta-banner {
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(130deg, rgba(35, 106, 177, 0.28), rgba(18, 77, 137, 0.18));
  border: 1px solid rgba(213, 236, 255, 0.44);
  text-align: center;
  backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .passeio-grid { grid-template-columns: 1fr; }
  .passeio-gallery-item { flex: 0 0 calc(50% - 7px); }
}

@media (max-width: 620px) {
  .passeio-info-strip { gap: 8px; }
  .passeio-gallery-wrap { padding: 0 0; }
  .passeio-gallery-item { flex: 0 0 100%; }
  .gallery-arrow { display: none; }
}
