@import url("https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");

:root {
  --background: #f7f6f1;
  --foreground: #203038;
  --card: #f7f5ef;
  --sand: #f1ede3;
  --sand-dark: #ddd4c4;
  --ocean: #295064;
  --ocean-light: #7eb8c2;
  --jungle: #5c8f7d;
  --coral: #f4a06f;
  --accent-pink: #f39a97;
  --accent-yellow: #f5c85a;
  --border: rgba(32, 48, 56, 0.1);
  --muted: rgba(32, 48, 56, 0.7);
  --muted-light: rgba(247, 246, 241, 0.8);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(34, 58, 66, 0.08);
  --radius: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reveal {
  --reveal-delay: 0s;
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.reveal[data-reveal="up"] {
  transform: translateY(20px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-30px);
}

.reveal[data-reveal="right"] {
  transform: translateX(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 880px;
}

.medium {
  max-width: 1040px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 239, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(18, 35, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand,
h1,
h2,
h3,
.price,
.guide-name {
  font-family: "Petrona", serif;
}

.brand {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 220ms ease;
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .site-nav a {
  color: var(--white);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .site-nav a {
  color: var(--foreground);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.92rem;
  transition: opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.desktop-nav a {
  opacity: 0.78;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0 20px;
  min-height: 46px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-flow {
  background: var(--accent-pink);
  color: var(--white);
}

.button-outline {
  border-color: rgba(248, 245, 239, 0.8);
  color: var(--white);
  background: transparent;
}

.button-outline:hover {
  background: rgba(248, 245, 239, 0.08);
}

.button-outline-light {
  border-color: rgba(248, 245, 239, 0.5);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover {
  background: rgba(248, 245, 239, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-header:not(.is-scrolled) .menu-toggle {
  color: var(--white);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--foreground);
}

.mobile-panel {
  display: none;
  background: rgba(248, 245, 239, 0.96);
  border-top: 1px solid var(--border);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel-inner {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 24px;
}

.mobile-panel-inner a {
  color: var(--foreground);
}

.mobile-cta {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(32, 48, 56, 0.34) 0%,
    rgba(32, 48, 56, 0.18) 40%,
    rgba(32, 48, 56, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding-top: 88px;
  padding-bottom: 76px;
}

.hero-intro {
  max-width: 760px;
  margin: 0 auto 34px;
}

.hero-meta,
.hero-byline,
.closing-meta {
  font-size: 0.95rem;
}

.hero-meta {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.6rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 span {
  font-style: italic;
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.9vw, 1.24rem);
  line-height: 1.82;
  text-wrap: balance;
}

.hero-note {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.95;
  font-style: italic;
  text-wrap: balance;
}

.hero-byline {
  margin: 0 0 32px;
  color: rgba(248, 245, 239, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions.centered {
  justify-content: center;
}

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

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(233, 223, 207, 0.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 1;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(233, 223, 207, 0.75);
  animation: float-dot 1.5s infinite;
}

@keyframes float-dot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-light {
  background: var(--background);
}

.section-sand {
  background: var(--sand);
}

.section-sand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(126, 184, 194, 0.12), transparent 18%),
    radial-gradient(circle at 92% 80%, rgba(244, 160, 111, 0.12), transparent 18%);
  pointer-events: none;
}

.section-primary {
  background: var(--ocean);
  color: var(--white);
}

.section-ocean {
  background: var(--ocean-light);
  color: var(--white);
}

.section h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  text-align: center;
  margin-bottom: 58px;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-primary h2,
.section-ocean h2 {
  color: var(--white);
}

.two-column,
.pedra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 64px;
}

h3 {
  margin-bottom: 24px;
  font-size: 2.05rem;
  line-height: 1.08;
}

.heading-jungle {
  color: var(--jungle);
}

.heading-coral {
  color: var(--coral);
}

.heading-ocean {
  color: var(--ocean);
}

.center {
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(35, 50, 58, 0.85);
  line-height: 1.7;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
  font-weight: 700;
}

.feature-list.positive li::before {
  content: "✓";
  color: var(--jungle);
}

.feature-list.negative li::before {
  content: "✕";
  color: var(--coral);
}

.includes-group + .includes-group {
  margin-top: 56px;
}

.card-grid,
.optional-grid {
  display: grid;
  gap: 24px;
}

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

.include-card,
.optional-card,
.pricing-card,
.faq-list details {
  box-shadow: var(--shadow);
}

.include-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 22px;
}

.journal-highlight {
  position: relative;
  grid-column: 1 / -1;
  gap: 0;
  padding: 30px 28px 26px;
  border: 1px solid rgba(126, 184, 194, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.88)),
    radial-gradient(circle at top right, rgba(244, 160, 111, 0.14), transparent 36%);
}

.journal-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(19, 111, 125, 0.1);
}

.journal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 111, 125, 0.09);
  color: var(--ocean);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-kicker {
  margin: 0;
  max-width: 34rem;
  color: rgba(35, 50, 58, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

.include-copy {
  display: grid;
  gap: 8px;
}

.include-copy strong {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.3;
}

.include-icon {
  width: 24px;
  min-width: 24px;
  color: var(--ocean-light);
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(2px);
}

.include-card span,
.optional-card,
.guide-copy,
.pedra-copy p,
.policy-copy p,
.faq-list p,
.timeline-content p,
.section-lead,
.pricing-copy,
.closing-copy {
  line-height: 1.72;
}

.optional-grid {
  max-width: 720px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.optional-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  padding: 22px 22px;
  text-align: left;
  color: rgba(35, 50, 58, 0.8);
}

.optional-card strong {
  color: var(--foreground);
  font-size: 1.02rem;
  line-height: 1.35;
}

.optional-card span,
.include-copy em {
  color: rgba(35, 50, 58, 0.76);
}

.include-copy em {
  font-style: italic;
}

.timeline-wrap {
  max-width: 760px;
}

.section-lead {
  max-width: 560px;
  margin: -28px auto 54px;
  text-align: center;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.experience-card {
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at top left, rgba(126, 184, 194, 0.12), transparent 42%);
  box-shadow: var(--shadow);
}

.experience-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: var(--ocean);
}

.experience-card p {
  margin: 0;
  color: rgba(35, 50, 58, 0.8);
  line-height: 1.72;
}

.timeline {
  position: relative;
  padding-left: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ocean-light);
  border: 4px solid var(--background);
  margin-top: 3px;
}

.section-sand .timeline-marker {
  border-color: var(--sand);
}

.timeline-content {
  padding-bottom: 8px;
}

.timeline-hour {
  display: block;
  margin-bottom: 6px;
  color: var(--ocean-light);
  font-size: 0.95rem;
  font-weight: 700;
}

.pedra-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.pedra-copy {
  align-self: center;
}

#pedra.section {
  padding: 84px 0;
}

.pedra-copy h2 {
  margin-bottom: 24px;
  text-align: left;
}

.pedra-copy p {
  margin: 0 0 18px;
  color: rgba(35, 50, 58, 0.82);
}

.quote {
  color: var(--muted);
  font-style: italic;
}

.guide-block {
  max-width: 720px;
  margin: 0 auto;
}

.guide-name {
  margin: 0 0 10px;
  color: var(--ocean);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.guide-copy {
  margin: 0 auto 16px;
  max-width: 680px;
  color: rgba(35, 50, 58, 0.8);
}

.primary-lead {
  color: rgba(248, 245, 239, 0.72);
}

.pricing-card {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 40px 32px;
  border: 1px solid rgba(248, 245, 239, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.booking-note {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.booking-note p {
  margin: 0;
  color: rgba(248, 245, 239, 0.84);
  line-height: 1.75;
  font-size: 0.98rem;
}

.pricing-label {
  margin: 0 0 8px;
  color: rgba(248, 245, 239, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.price {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
}

.pricing-copy {
  margin: 0 0 24px;
  color: rgba(248, 245, 239, 0.72);
}

.payment-details {
  max-width: 360px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 245, 239, 0.15);
  text-align: left;
}

.payment-details p {
  margin: 0 0 10px;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.95rem;
}

.payment-details strong {
  color: var(--white);
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 24px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px 22px 0;
  position: relative;
  color: var(--foreground);
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0 0 22px;
  color: rgba(35, 50, 58, 0.75);
}

.policy-wrap {
  max-width: 760px;
}

.policy-copy {
  max-width: 720px;
  margin: 0 auto;
}

.policy-copy p {
  margin: 0 0 18px;
  color: rgba(35, 50, 58, 0.8);
}

.policy-copy strong {
  color: var(--foreground);
}

.policy-note {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.closing-copy {
  max-width: 560px;
  margin: -24px auto 16px;
  color: rgba(248, 245, 239, 0.8);
  font-size: 1.12rem;
}

.closing-meta {
  margin: 0 0 36px;
  color: rgba(248, 245, 239, 0.6);
}

.site-footer {
  background: var(--foreground);
  color: rgba(248, 245, 239, 0.5);
  padding: 30px 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(248, 245, 239, 0.72);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .two-column,
  .pedra-grid,
  .card-grid,
  .optional-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .pedra-copy h2 {
    margin-bottom: 40px;
  }

  .timeline::before {
    left: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-meta {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-large {
    width: 100%;
  }

  .pricing-card {
    padding: 30px 22px;
  }

  .faq-list details {
    padding: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .scroll-dot,
  .button,
  .site-header {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
