:root {
  --bg: #fff7ef;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #1d1d1f;
  --muted: #5e5a66;
  --primary: #ff6b35;
  --secondary: #155e75;
  --accent: #ffcf33;
  --line: rgba(29, 29, 31, 0.1);
  --shadow: 0 20px 50px rgba(34, 24, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 207, 51, 0.55), transparent 30%),
    radial-gradient(circle at top right, rgba(21, 94, 117, 0.2), transparent 28%),
    linear-gradient(180deg, #fff7ef 0%, #ffe4d6 100%);
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.motion-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.motion-blob,
.motion-vehicle {
  position: absolute;
  opacity: 0.9;
}

.motion-blob {
  filter: blur(24px);
  border-radius: 999px;
  animation: floatBlob 18s ease-in-out infinite;
}

.motion-blob-one {
  width: 260px;
  height: 260px;
  top: 10%;
  left: -4%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.18), transparent 70%);
}

.motion-blob-two {
  width: 300px;
  height: 300px;
  right: -5%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 70%);
  animation-duration: 22s;
}

.motion-vehicle {
  overflow: visible;
  filter: drop-shadow(0 18px 30px rgba(28, 22, 18, 0.08));
}

.motion-drift {
  top: 18%;
  left: -14%;
  width: 260px;
  height: 130px;
  animation: driftAcross 24s linear infinite;
}

.motion-yacht {
  top: 56%;
  right: -10%;
  width: 250px;
  height: 140px;
  animation: sailAcross 30s linear infinite;
}

.motion-retro {
  bottom: 12%;
  left: -18%;
  width: 280px;
  height: 140px;
  animation: cruiseAcross 34s linear infinite;
}

@keyframes driftAcross {
  0% {
    transform: translateX(0) translateY(0) rotate(-8deg);
  }
  35% {
    transform: translateX(42vw) translateY(16px) rotate(2deg);
  }
  65% {
    transform: translateX(78vw) translateY(-10px) rotate(-6deg);
  }
  100% {
    transform: translateX(122vw) translateY(18px) rotate(3deg);
  }
}

@keyframes sailAcross {
  0% {
    transform: translateX(0) translateY(0);
  }
  30% {
    transform: translateX(-28vw) translateY(-6px);
  }
  60% {
    transform: translateX(-56vw) translateY(8px);
  }
  100% {
    transform: translateX(-118vw) translateY(-4px);
  }
}

@keyframes cruiseAcross {
  0% {
    transform: translateX(0) translateY(0);
  }
  40% {
    transform: translateX(48vw) translateY(-4px);
  }
  75% {
    transform: translateX(92vw) translateY(10px);
  }
  100% {
    transform: translateX(126vw) translateY(0);
  }
}

@keyframes floatBlob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.06);
  }
}

.topbar,
.footer,
.intro-strip,
.story-band,
.contact-layout,
.detail-grid {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-width: 0;
}

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

.brand img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav a {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.95rem;
}

.lang-switcher {
  flex: 0 0 auto;
}

.lang-select {
  appearance: none;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, transparent 50%, var(--secondary) 50%),
    linear-gradient(135deg, var(--secondary) 50%, transparent 50%),
    rgba(255, 255, 255, 0.92);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px),
    0 0;
  background-size: 5px 5px, 5px 5px, 100% 100%;
  background-repeat: no-repeat;
  color: var(--muted);
  padding: 10px 30px 10px 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  min-width: 74px;
}

.hero,
.detail-hero,
.page-hero {
  margin-top: 28px;
  border-radius: 34px;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 18px;
  padding: 26px 28px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(255, 255, 255, 0.7)),
    #fff8f1;
  border: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: var(--shadow);
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1 {
  margin: 10px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  line-height: 0.98;
}

.hero-text,
.page-hero p,
.detail-hero p,
.tour-content p,
.info-card p,
.story-band p,
.contact-card,
.detail-list,
.timeline {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 760px;
  font-size: 0.98rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-content: center;
}

.mini-card,
.tour-card,
.info-card,
.contact-card,
.detail-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px 20px;
}

.mini-card-link {
  display: block;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.mini-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(34, 24, 18, 0.16);
}

.mini-card span,
.tour-visual span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-strip {
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 10px;
}

.intro-strip > div,
.story-band > div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.section-heading {
  margin: 40px 0 20px;
}

.section-heading h2,
.info-card h2,
.contact-card h2,
.detail-card h2,
.story-band h2 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-card {
  overflow: hidden;
}

.tour-visual {
  min-height: 210px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-visual p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.tour-content {
  padding: 22px;
}

.tour-content h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  font-size: 0.95rem;
}

.page-content {
  margin-top: 28px;
}

.page-hero {
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

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

.info-card,
.contact-card,
.detail-card {
  padding: 24px;
}

.story-band,
.contact-layout,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.contact-list,
.detail-list,
.timeline {
  margin: 0;
  padding-left: 20px;
}

.form-card {
  display: grid;
  gap: 14px;
}

.social-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-button {
  min-width: 58px;
  min-height: 58px;
  padding: 0;
}

.social-brand,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.social-brand svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-brand-whatsapp {
  background: #25d366;
  color: #fff;
}

.social-brand-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #515bd4);
  border-color: transparent;
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-social {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.contact-disabled {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-disabled p {
  margin: 0;
}

.form-card label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  padding: 30px;
  color: #fff;
}

.detail-hero .eyebrow,
.theme-violet .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.price-panel {
  align-self: start;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.price-panel span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.price-panel strong {
  display: block;
  margin: 8px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.empty-state {
  padding: 48px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.footer {
  margin-top: 36px;
  padding: 20px 6px;
  color: var(--muted);
}

.footer-section {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(21, 94, 117, 0.12), rgba(255, 107, 53, 0.12)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 94, 117, 0.12);
  box-shadow: var(--shadow);
}

.footer-logo,
.footer-column h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  color: var(--text);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: lowercase;
}

.footer-logo-image {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 14px;
  object-fit: contain;
}

.footer-brand p,
.footer-column p {
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a {
  color: var(--muted);
  font-weight: 500;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.theme-sunset .tour-visual,
.theme-sunset.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(124, 58, 237, 0.3)),
    linear-gradient(135deg, #ff6b35, #db2777);
}

.theme-mint .tour-visual,
.theme-mint.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #14b8a6, #0f766e);
}

.theme-coral .tour-visual,
.theme-coral.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #fb7185, #f97316);
}

.theme-violet .tour-visual,
.theme-violet.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #4338ca, #7c3aed);
}

.theme-amber .tour-visual,
.theme-amber.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f59e0b, #ea580c);
}

.theme-sky .tour-visual,
.theme-sky.detail-hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #0ea5e9, #155e75);
}

@media (max-width: 920px) {
  .motion-vehicle {
    opacity: 0.55;
    transform: scale(0.8);
    transform-origin: center;
  }

  .hero,
  .tour-grid,
  .info-grid,
  .detail-hero,
  .intro-strip,
  .story-band,
  .contact-layout,
  .detail-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px 18px;
  }

  .topbar-actions {
    gap: 10px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 0.85rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    line-height: 1.02;
  }
}

@media (max-width: 640px) {
  .motion-vehicle {
    opacity: 0.34;
  }

  .motion-yacht,
  .motion-retro {
    display: none;
  }

  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .hero,
  .page-hero,
  .detail-hero,
  .tour-content,
  .info-card,
  .contact-card,
  .detail-card {
    padding: 18px;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .brand img {
    width: 106px;
    height: 106px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .lang-select {
    min-width: 64px;
    padding: 8px 26px 8px 10px;
  }

  .footer-logo-image {
    width: 96px;
    height: 96px;
  }

  .tour-meta {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-blob,
  .motion-vehicle,
  .mini-card-link {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
