﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7f3ec;
  --bg-soft: #fffaf2;
  --text: #1a1f1c;
  --muted: #5c655f;
  --primary: #0b3d2e;
  --primary-dark: #072b20;
  --accent: #f5b01f;
  --accent-strong: #ff6b35;
  --card: #ffffff;
  --stroke: #e6ded0;
  --shadow: 0 20px 50px rgba(11, 61, 46, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

textarea {
  resize: vertical;
}

.bg-aurora {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 176, 31, 0.2), transparent 55%),
    radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.2), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(11, 61, 46, 0.18), transparent 40%),
    linear-gradient(120deg, #f9f4ea 0%, #f1e9d6 60%, #f7f3ec 100%);
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, #f7efe1 0%, #f1e0c4 100%);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
  gap: 24px;
}

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

.logo-image {
  height: clamp(72px, 10vw, 120px);
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: #3a2f1c;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #5b2db8;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.menu-btn {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 20px;
  padding: 8px 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11, 61, 46, 0.12);
}

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

.btn.secondary {
  background: var(--accent-strong);
  color: #fff;
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn.link {
  background: transparent;
  border: none;
  color: var(--accent-strong);
  padding: 0;
  font-weight: 600;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-banner .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.hero-banner .s1 {
  background-image: url('../img/banner-1.jpg');
  background-position: center 35%;
  background-size: cover;
  animation-delay: 0s;
}

.hero-banner .s2 {
  background-image: url('../img/banner-2.jpg');
  background-position: center 40%;
  background-size: cover;
  animation-delay: 6s;
}

.hero-banner .s3 {
  background-image: url('../img/banner-3.jpg');
  background-position: center 45%;
  background-size: cover;
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(247, 243, 236, 0.95), rgba(247, 243, 236, 0.82), rgba(247, 243, 236, 0.6));
}

@keyframes heroSlide {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.02);
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 20px 0 16px;
}

.hero-copy p {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(11, 61, 46, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-highlights strong {
  display: block;
  font-weight: 700;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pill {
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.tab-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 999px;
  background: var(--bg-soft);
  padding: 6px;
  margin-bottom: 16px;
  gap: 6px;
}

.tab {
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

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

.search-form {
  display: grid;
  gap: 16px;
}

.search-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.search-form input,
.search-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  font-family: inherit;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.brands {
  padding: 24px 0 10px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.marketplace {
  padding: 80px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 10px 0 8px;
}

.section-head p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent-strong);
  letter-spacing: 0.12em;
}

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

.featured-hero {
  padding: 10px 0 30px;
}

.featured-hero-slider {
  background: linear-gradient(120deg, rgba(7, 43, 32, 0.72), rgba(7, 43, 32, 0.35)),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 0 0 42px 42px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.2);
  box-shadow: 0 30px 70px rgba(11, 61, 46, 0.22);
  padding: clamp(28px, 7vw, 90px) clamp(16px, 6vw, 90px);
  display: grid;
  gap: 18px;
  position: relative;
}

.featured-track {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: clamp(360px, 55vh, 520px);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.featured-slide {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(18px, 4vw, 32px);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background: linear-gradient(120deg, rgba(6, 31, 22, 0.65), rgba(6, 31, 22, 0.35));
}

.featured-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.featured-media {
  border-radius: 24px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(11, 61, 46, 0.2);
}

.featured-media.f1 {
  background-image: url('../img/banner-1.jpg');
  background-position: center 40%;
}

.featured-media.f2 {
  background-image: url('../img/banner-2.jpg');
  background-position: center 40%;
}

.featured-media.f3 {
  background-image: url('../img/banner-3.jpg');
  background-position: center 45%;
}

.featured-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  margin: 12px 0 6px;
  color: #fff;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.featured-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.featured-btn {
  border: 1px solid var(--stroke);
  background: var(--bg-soft);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.featured-btn.side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(11, 61, 46, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-btn.side.prev {
  left: 20px;
}

.featured-btn.side.next {
  right: 20px;
}

.featured-hero-slider:hover .featured-btn.side {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1.03);
}

.featured-dots {
  display: flex;
  gap: 8px;
}

.featured-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.featured-dots .dot.is-active {
  background: var(--accent-strong);
}

.card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(11, 61, 46, 0.08);
  display: grid;
  grid-template-rows: 160px auto;
}

.card-media {
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.9), rgba(245, 176, 31, 0.9)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=60');
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-media.alt {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(11, 61, 46, 0.85)),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=900&q=60');
  background-size: cover;
  background-position: center;
}

.card-media.alt-two {
  background: linear-gradient(135deg, rgba(245, 176, 31, 0.8), rgba(11, 61, 46, 0.9)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=60');
  background-size: cover;
  background-position: center;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.rating {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 61, 46, 0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.card-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.filters {
  padding: 60px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.filter-card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.filter-tags button {
  border: 1px solid var(--stroke);
  background: var(--bg-soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.categories {
  padding: 80px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-grid article {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--stroke);
}

.category-grid h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  margin-bottom: 8px;
}

.how {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(11, 61, 46, 0.08), rgba(245, 176, 31, 0.08));
}

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

.step {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
}

.step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonials {
  padding: 70px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-grid article {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(11, 61, 46, 0.06);
}

.testimonial-grid p {
  color: var(--muted);
  margin-bottom: 12px;
}

.cta {
  padding: 70px 0 90px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
}

.cta-grid h2 {
  font-family: 'Sora', sans-serif;
  margin: 12px 0 14px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cta-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.cta-form h3 {
  font-family: 'Sora', sans-serif;
}

.cta-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 31, 23, 0.4);
  color: #fff;
  font-family: inherit;
}

.cta-form ::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.detail-hero {
  padding: 70px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.detail-media {
  height: 100%;
}

.detail-gallery {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  height: 100%;
}

.detail-main {
  width: 100%;
  flex: 1;
  min-height: 300px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 61, 46, 0.6), rgba(245, 176, 31, 0.4)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-thumbs .thumb {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.detail-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-thumbs .t1 {
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=600&q=60');
}

.detail-thumbs .t2 {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=600&q=60');
}

.detail-thumbs .t3 {
  background-image: url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=600&q=60');
}

.detail-info h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 12px 0 6px;
}

.detail-location {
  color: var(--muted);
  margin-bottom: 12px;
}

.detail-text {
  color: var(--muted);
  margin-bottom: 18px;
}

.detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-highlights span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--bg-soft);
  font-size: 12px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.availability {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(11, 61, 46, 0.08);
}

.availability-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.availability-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
}

.availability-head span {
  color: var(--muted);
  font-size: 12px;
}

.availability-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.availability-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.availability-legend .free {
  background: #2bb673;
}

.availability-legend .busy {
  background: #e25555;
}

.calendar {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--stroke);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-range-output {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.calendar-header strong {
  font-size: 14px;
}

.cal-btn {
  border: 1px solid var(--stroke);
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  text-align: center;
}

.calendar-grid span {
  color: var(--muted);
  font-weight: 600;
}

.day {
  border: none;
  padding: 8px 0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.day:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.day.free {
  background: rgba(43, 182, 115, 0.15);
  color: #1f7d4f;
  border: 1px solid rgba(43, 182, 115, 0.35);
}

.day.busy {
  background: rgba(226, 85, 85, 0.15);
  color: #b33c3c;
  border: 1px solid rgba(226, 85, 85, 0.35);
}

.day.muted {
  color: rgba(92, 101, 95, 0.6);
}

.day.in-range {
  background: rgba(43, 182, 115, 0.12);
  border: 1px dashed rgba(43, 182, 115, 0.35);
  color: #1f7d4f;
}

.day.busy.conflict {
  background: rgba(226, 85, 85, 0.3);
  border: 1px solid rgba(226, 85, 85, 0.6);
  color: #b33c3c;
}

.day.selected {
  background: #2bb673;
  color: #fff;
  border: 1px solid #2bb673;
}

.prelocacao {
  padding: 50px 0 80px;
}

.prelocacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.prelocacao-info {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.prelocacao-info strong {
  display: block;
}

.prelocacao-tips {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.tip-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(11, 61, 46, 0.08);
}

.tip-card strong {
  display: block;
}

.tip-card span {
  color: var(--muted);
  font-size: 13px;
}

.prelocacao-steps {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.prelocacao .cta-form {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.prelocacao .cta-form label {
  color: var(--muted);
}

.prelocacao .cta-form input,
.prelocacao .cta-form select,
.prelocacao .cta-form textarea {
  background: #fff;
  border: 1px solid var(--stroke);
  color: var(--text);
}

.prelocacao .cta-form ::placeholder {
  color: rgba(92, 101, 95, 0.8);
}

.prelocacao-form {
  padding: 26px;
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.form-head p {
  color: var(--muted);
  font-size: 13px;
}

.form-pill {
  background: rgba(245, 176, 31, 0.2);
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.faq {
  padding: 70px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.faq-grid details {
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
}

.footer {
  padding: 50px 0 20px;
  border-top: 1px solid var(--stroke);
  background: #f1eadb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  color: var(--muted);
}

.footer-grid h4 {
  color: var(--text);
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 30px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .featured-slide {
    gap: 20px;
  }

  .featured-meta {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .detail-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .header-grid {
    flex-wrap: wrap;
  }

  .nav {
    position: absolute;
    top: 74px;
    right: 5%;
    left: 5%;
    background: var(--card);
    border: 1px solid var(--stroke);
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }
  .logo-image {
    height: 72px;
    max-width: 320px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .featured-slide {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 240px;
  }

  .featured-btn.side {
    width: 38px;
    height: 38px;
  }

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

@media (max-width: 768px) {
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-grid,
  .filter-grid,
  .cta-grid,
  .detail-grid,
  .prelocacao-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: 2;
  }

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

  .featured-hero-slider {
    border-radius: 0 0 28px 28px;
  }

  .featured-track {
    min-height: 320px;
  }

  .card {
    grid-template-rows: 180px auto;
  }

  .availability-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-actions,
  .cta-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-card {
    padding: 22px;
  }

  .cta-grid {
    padding: 28px;
  }

  .container {
    width: min(1200px, 92%);
  }

  .header-grid {
    gap: 14px;
  }

  .hero-cta,
  .card-meta,
  .featured-meta,
  .filter-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .featured-hero-slider {
    padding: 28px 18px;
  }

  .featured-slide {
    padding: 20px;
  }

  .featured-media {
    min-height: 200px;
  }

  .detail-gallery {
    padding: 16px;
  }

  .detail-main {
    min-height: 220px;
  }

  .detail-thumbs .thumb {
    height: 70px;
  }

  .calendar-grid {
    gap: 4px;
  }

  .day {
    padding: 6px 0;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .btn.link {
    width: auto;
  }

  .hero-card,
  .cta-form,
  .filter-card,
  .availability,
  .detail-gallery {
    border-radius: 16px;
  }

  .featured-btn.side {
    display: none;
  }

  .search-form input,
  .search-form select,
  .cta-form input,
  .cta-form select,
  .cta-form textarea {
    padding: 11px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }
}
