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

:root {
  --primary: #0f6b68;
  --primary-dark: #073f46;
  --tech-dark: #08161d;
  --tech-panel: rgba(8, 22, 29, 0.72);
  --secondary: #ff9f43;
  --accent: #ffd166;
  --accent-soft: #fff1c4;
  --white: #ffffff;
  --text: #16313a;
  --gray: #59707d;
  --bg: #eef7f6;
  --bg-soft: #dff1ee;
  --light-green: #bde9dc;
  --soft-green: #74d4c3;
  --shadow: 0 18px 45px rgba(7, 63, 70, 0.12);
  --shadow-strong: 0 24px 60px rgba(7, 63, 70, 0.2);
  --shadow-soft: 0 18px 40px rgba(8, 22, 29, 0.08);
  --glow-cyan: rgba(124, 252, 255, 0.34);
  --glow-gold: rgba(255, 209, 102, 0.28);
  --radius: 22px;
  --container: 1200px;
}

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 196, 184, 0.22), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 196, 104, 0.2), transparent 20%),
    radial-gradient(circle at 50% 82%, rgba(22, 129, 145, 0.12), transparent 28%),
    linear-gradient(180deg, #f5fbfa 0%, #e9f6f4 48%, #fdfdf8 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.42), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(255, 213, 128, 0.14), transparent 16%),
    radial-gradient(circle at 72% 74%, rgba(88, 211, 194, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2605;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.scroll-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7cfcff, #ffd166 55%, #ff9f43);
  box-shadow:
    0 0 16px rgba(124, 252, 255, 0.5),
    0 0 28px rgba(255, 209, 102, 0.35);
  transition: width 0.12s linear;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.site-atmosphere::before,
.site-atmosphere::after {
  content: "";
  position: absolute;
  inset: -10%;
  opacity: 0.55;
}

.site-atmosphere::before {
  background:
    radial-gradient(circle at 16% 28%, rgba(111, 229, 212, 0.24), transparent 18%),
    radial-gradient(circle at 70% 16%, rgba(255, 205, 112, 0.16), transparent 16%),
    radial-gradient(circle at 78% 74%, rgba(16, 114, 126, 0.14), transparent 18%);
  animation: driftGlow 24s ease-in-out infinite alternate;
}

.site-atmosphere::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 28%, rgba(255, 244, 214, 0.08) 58%, transparent 82%);
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: shimmerFog 18s linear infinite;
}

.mist {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
}

.mist-1 {
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  top: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(93, 215, 198, 0.3) 0%, rgba(93, 215, 198, 0.08) 42%, transparent 72%);
  animation: driftMistA 32s ease-in-out infinite;
}

.mist-2 {
  width: 30vw;
  height: 30vw;
  min-width: 240px;
  min-height: 240px;
  top: 46%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 191, 94, 0.24) 0%, rgba(255, 191, 94, 0.08) 40%, transparent 72%);
  animation: driftMistB 28s ease-in-out infinite;
}

.mist-3 {
  width: 28vw;
  height: 28vw;
  min-width: 220px;
  min-height: 220px;
  bottom: 8%;
  left: 12%;
  background: radial-gradient(circle, rgba(10, 122, 140, 0.22) 0%, rgba(10, 122, 140, 0.06) 46%, transparent 72%);
  animation: driftMistC 34s ease-in-out infinite;
}

.mist-4 {
  width: 26vw;
  height: 26vw;
  min-width: 200px;
  min-height: 200px;
  top: 18%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 248, 228, 0.2) 0%, rgba(255, 248, 228, 0.05) 42%, transparent 70%);
  animation: driftMistD 26s ease-in-out infinite;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 159, 67, 0.95);
  outline-offset: 4px;
}

ul {
  list-style: none;
}

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

main > section > .container {
  position: relative;
}

section {
  padding: 90px 0;
  position: relative;
  scroll-margin-top: 110px;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 78%, rgba(8, 22, 29, 0.04)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.06));
  opacity: 0;
  transition: opacity 1s ease;
}

section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(88%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(124, 252, 255, 0.22), rgba(255, 209, 102, 0.18), transparent);
  opacity: 0.72;
  pointer-events: none;
}

section.section-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

section.section-in-view::before {
  opacity: 1;
}

main {
  display: block;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2600;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 107, 104, 0.12), rgba(255, 209, 102, 0.22));
  border: 1px solid rgba(15, 107, 104, 0.14);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 6px rgba(15, 107, 104, 0.08);
}

main > section:not(.hero):not(.logo-wall) .container {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(229, 244, 241, 0.84), rgba(241, 249, 247, 0.76));
  border: 1px solid rgba(109, 193, 183, 0.2);
  box-shadow:
    0 24px 70px rgba(8, 22, 29, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px);
}

main > section:not(.hero):not(.logo-wall) .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent 24%, transparent 70%, rgba(124, 252, 255, 0.08)),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.09), transparent 24%);
  opacity: 0.92;
}

.section-header h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2.45rem, 4vw, 4rem);
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-header p {
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-header::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.seo-intro {
  padding-top: 16px;
}

.seo-intro .container {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(5, 44, 49, 0.98), rgba(8, 70, 74, 0.96) 48%, rgba(109, 63, 24, 0.92));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 80px rgba(7, 63, 70, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.seo-intro .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(124, 252, 255, 0.1), transparent 24%),
    radial-gradient(circle at 85% 82%, rgba(255, 209, 102, 0.1), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.seo-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.seo-intro-copy {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(4, 28, 33, 0.46), rgba(4, 28, 33, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 46px rgba(0, 0, 0, 0.16);
}

.seo-intro-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 26%, transparent 72%, rgba(255, 209, 102, 0.08));
}

.seo-intro-copy h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.seo-intro-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
  line-height: 1.8;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.seo-intro .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.seo-intro .section-kicker::before {
  background: linear-gradient(135deg, var(--accent), #fff0ad);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.seo-intro-points {
  display: grid;
  gap: 16px;
}

.seo-point {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 39, 45, 0.84), rgba(10, 55, 58, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.16);
}

.seo-point::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.3));
}

.seo-point h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-top: 14px;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.seo-point p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: linear-gradient(90deg, rgba(7, 63, 46, 0.9), rgba(120, 62, 28, 0.82), rgba(184, 134, 11, 0.72));
  border-bottom: 1px solid rgba(255, 240, 214, 0.22);
  box-shadow: 0 12px 35px rgba(7, 63, 46, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header .container {
  width: min(97%, 1560px);
}

.header.scrolled {
  background: linear-gradient(90deg, rgba(6, 52, 39, 0.96), rgba(106, 54, 24, 0.92), rgba(161, 116, 8, 0.88));
  box-shadow: 0 18px 40px rgba(7, 63, 46, 0.24);
  border-bottom-color: rgba(184, 237, 244, 0.24);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  gap: 14px;
  transition: min-height 0.35s ease;
}

.header.scrolled .nav {
  min-height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo {
  width: 128px;
  height: auto;
  display: block;
  padding: 6px 0;
}

.brand-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff5df;
  white-space: nowrap;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-menu a {
  font-weight: 600;
  color: #fff8eb;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-menu a:hover {
  text-shadow: 0 0 18px rgba(255, 224, 130, 0.22);
}

.nav-menu a.active {
  text-shadow:
    0 0 20px rgba(255, 224, 130, 0.2),
    0 0 28px rgba(124, 252, 255, 0.12);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffe082;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #fff5df;
  border-radius: 10px;
  display: block;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 128px 0 64px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: 12%;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.22) 0%, rgba(255, 209, 102, 0) 70%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(141, 224, 203, 0.22) 0%, rgba(141, 224, 203, 0) 72%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0b4c54;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
  transform: perspective(900px) rotateX(72deg) scale(1.4);
  transform-origin: center bottom;
  animation: heroGridDrift 16s linear infinite;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1.15s ease, transform 6s ease-out;
  pointer-events: none;
}

.hero-bg-image-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 63, 70, 0.94) 0%,
    rgba(15, 107, 104, 0.8) 46%,
    rgba(15, 107, 104, 0.28) 100%
  );
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.06), transparent 34%, rgba(6, 52, 39, 0.18));
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 28px;
}

.hero-content {
  color: var(--white);
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -26px;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.85), rgba(124, 252, 255, 0.45), transparent);
  opacity: 0.72;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(124, 252, 255, 0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 237, 244, 0.24);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  animation: badgePulse 4.8s ease-in-out infinite;
}

.hero h1 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.5vw, 3.55rem);
  line-height: 0.9;
  margin-bottom: 14px;
  font-weight: 800;
  max-width: none;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.electric-title-wrap {
  --electric-primary: rgba(124, 252, 255, 0.98);
  --electric-secondary: rgba(255, 209, 102, 0.96);
  --electric-shadow: rgba(76, 241, 255, 0.35);
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 12px;
  padding: clamp(14px, 1.2vw, 18px);
  border-radius: 38px;
  isolation: isolate;
}

.electric-title {
  margin-bottom: 0;
  max-width: none;
  position: relative;
  z-index: 2;
}

.electric-title-text {
  position: relative;
  display: inline;
  color: #f8feff;
  letter-spacing: -0.072em;
  text-shadow:
    0 0 10px rgba(162, 251, 255, 0.18),
    0 0 22px rgba(76, 241, 255, 0.14),
    0 0 40px rgba(255, 209, 102, 0.1);
}

.electric-title-text.typing-active::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 252, 255, 0.96), rgba(255, 209, 102, 0.92));
  box-shadow:
    0 0 10px rgba(124, 252, 255, 0.7),
    0 0 18px rgba(255, 209, 102, 0.35);
  animation: typingCaret 0.85s steps(1) infinite;
}

.typed-inline {
  position: relative;
  display: inline-block;
  min-width: 1ch;
}

.typed-inline.typing-active::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.95em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
  animation: typingCaret 0.85s steps(1) infinite;
}

.electric-title-wrap::before,
.electric-title-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.electric-title-wrap::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(7, 36, 50, 0.26);
  border: 1px solid rgba(190, 244, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 26px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.electric-title-wrap::after {
  inset: -14px;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 50%, rgba(76, 241, 255, 0.24), transparent 28%),
    radial-gradient(circle at 85% 50%, rgba(255, 209, 102, 0.18), transparent 22%);
  filter: blur(24px);
  opacity: 0.85;
}

.electric-title-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%),
    linear-gradient(140deg, rgba(76, 241, 255, 0.14), transparent 35%, transparent 65%, rgba(255, 209, 102, 0.12));
  mix-blend-mode: screen;
  opacity: 0.92;
}

.electric-title-orbit {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
}

.electric-title-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg 24deg,
      rgba(124, 252, 255, 0.14) 40deg,
      rgba(124, 252, 255, 1) 62deg,
      rgba(255, 255, 255, 0.98) 70deg,
      rgba(255, 209, 102, 0.9) 78deg,
      rgba(255, 209, 102, 0.12) 96deg,
      transparent 118deg 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 8px rgba(124, 252, 255, 0.9))
    drop-shadow(0 0 20px rgba(76, 241, 255, 0.55))
    drop-shadow(0 0 30px rgba(255, 209, 102, 0.26));
  opacity: 0.95;
}

.electric-title-orbit-a {
  animation: electricOrbit 6.5s linear infinite;
}

.electric-title-orbit-b {
  inset: -8px;
  opacity: 0.55;
  filter: blur(0.2px);
  animation: electricOrbitReverse 9.5s linear infinite;
}

.electric-title-orbit-b::before {
  padding: 1px;
  background:
    conic-gradient(
      from 180deg,
      transparent 0deg 188deg,
      rgba(124, 252, 255, 0.08) 210deg,
      rgba(124, 252, 255, 0.78) 226deg,
      rgba(255, 255, 255, 0.92) 236deg,
      rgba(255, 209, 102, 0.62) 242deg,
      transparent 264deg 360deg
    );
}

.electric-title-sparks {
  position: absolute;
  inset: -12px;
  pointer-events: none;
  z-index: 3;
}

.electric-spark {
  position: absolute;
  width: var(--spark-size, 44px);
  height: 3px;
  border-radius: 999px;
  left: var(--spark-x, 0px);
  top: var(--spark-y, 0px);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%, var(--spark-color, var(--electric-primary)) 62%, transparent 100%);
  transform: translate(-50%, -50%) rotate(var(--spark-rotate, 0deg)) scaleX(var(--spark-scale, 0.9));
  transform-origin: center;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.85),
    0 0 18px var(--spark-glow, rgba(76, 241, 255, 0.6)),
    0 0 32px var(--spark-glow, rgba(76, 241, 255, 0.38));
  opacity: 0;
  animation: electricSpark var(--spark-duration, 1450ms) ease-in-out infinite;
  animation-delay: var(--spark-delay, 0ms);
}

.electric-spark::after {
  content: "";
  position: absolute;
  inset: -4px 22%;
  border-radius: inherit;
  background: inherit;
  filter: blur(8px);
  opacity: 0.8;
}

.hero-subtitle {
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-highlights a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 237, 244, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-highlights a:hover,
.hero-highlights a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(184, 237, 244, 0.36);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-highlights a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-width: 176px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #ff7f50);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 159, 67, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 36px rgba(7, 63, 70, 0.18);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow:
    0 20px 42px rgba(255, 159, 67, 0.32),
    0 0 24px rgba(255, 209, 102, 0.22);
  filter: saturate(1.06);
}

.btn-secondary:hover {
  box-shadow:
    0 18px 34px rgba(124, 252, 255, 0.12),
    0 0 20px rgba(124, 252, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 14px 14px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(184, 237, 244, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(8, 22, 29, 0.14);
}

.stat-inline {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-number,
.stat-plus {
  font-size: clamp(1.95rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  z-index: 2;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 12px;
}

.hero-image-container {
  position: relative;
  min-height: clamp(320px, 36vw, 430px);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(190, 244, 255, 0.2);
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 4.8s ease;
}

.hero-main-image-active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-image-container:hover .hero-main-image-active {
  transform: scale(1.1);
}

.hero-image-container:hover {
  box-shadow:
    0 28px 70px rgba(8, 22, 29, 0.22),
    0 0 26px rgba(124, 252, 255, 0.14);
}

.hero-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(7, 63, 70, 0.2) 100%);
  z-index: 1;
}

.hero-image-container::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(124, 252, 255, 0.12),
    0 0 24px rgba(124, 252, 255, 0.14);
  pointer-events: none;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(228, 244, 241, 0.96), rgba(210, 234, 229, 0.92));
  color: var(--primary-dark);
  border: 1px solid rgba(111, 196, 186, 0.28);
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 2;
  backdrop-filter: blur(12px);
  animation: floatBadge 3.8s ease-in-out infinite;
  text-align: center;
  width: max-content;
  max-width: calc(100% - 56px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  letter-spacing: 0.05em;
}

.hero-image-container:hover .floating-badge {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 18px 34px rgba(7, 63, 70, 0.18);
}

.hero-panel {
  margin-top: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(228, 244, 241, 0.94), rgba(211, 235, 230, 0.9));
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(111, 196, 186, 0.24);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.hero-panel,
.stat,
.logo-pill,
.destaque-card,
.feature,
.card,
.roteiro-card,
.planejamento-card,
.guia-card,
.cultura-item,
.evento-card,
.faq-item,
.video-card,
.info-item {
  position: relative;
}

.hero-panel::selection,
.stat::selection,
.logo-pill::selection {
  background: rgba(255, 209, 102, 0.35);
}

.hero-panel::before,
.destaque-card::before,
.feature::before,
.card::before,
.evento-card::before,
.faq-item::before,
.info-item::before,
.guia-card::before,
.cultura-item::before,
.sao-joao-copy::before,
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0.02) 0deg,
      rgba(255, 255, 255, 0.02) 210deg,
      rgba(124, 252, 255, 0.14) 235deg,
      rgba(124, 252, 255, 0.95) 255deg,
      rgba(255, 255, 255, 0.98) 264deg,
      rgba(255, 209, 102, 0.92) 273deg,
      rgba(255, 209, 102, 0.16) 292deg,
      rgba(255, 255, 255, 0.02) 320deg,
      rgba(255, 255, 255, 0.02) 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 8px rgba(124, 252, 255, 0.22))
    drop-shadow(0 0 14px rgba(255, 209, 102, 0.14));
  pointer-events: none;
  opacity: 0.95;
  animation: borderCircuit 5.5s linear infinite;
}

.hero-panel::after,
.destaque-card::after,
.feature::after,
.card::after,
.evento-card::after,
.faq-item::after,
.info-item::after,
.guia-card::after,
.cultura-item::after,
.sao-joao-copy::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 252, 255, 0.16), transparent 72%);
  filter: blur(16px);
  pointer-events: none;
  opacity: 0.75;
}

.hero-panel-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.16);
  color: #ab6300;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.22rem;
  margin-bottom: 10px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.hero-panel-festival {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(111, 196, 186, 0.18);
}

.hero-panel-festival img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.hero-panel-festival-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-panel-festival-copy strong {
  font-size: 1rem;
  line-height: 1.1;
  color: var(--primary-dark);
}

.hero-panel-festival-copy span {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 700;
}

.hero-panel p:last-child {
  color: var(--gray);
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(-8px) scale(1.04);
  }
}

@keyframes borderCircuit {
  from {
    transform: rotate(0deg);
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }

  to {
    transform: rotate(360deg);
    opacity: 0.92;
  }
}

@keyframes electricOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes electricOrbitReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes electricSpark {
  0%,
  100% {
    opacity: 0;
    filter: brightness(0.9);
  }

  18% {
    opacity: 0.95;
  }

  38% {
    opacity: 0.45;
  }

  58% {
    opacity: 1;
  }

  78% {
    opacity: 0.2;
  }
}

@keyframes typingCaret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes managementNameGlow {
  0%,
  100% {
    text-shadow:
      0 0 8px rgba(255, 216, 77, 0.22),
      0 0 16px rgba(255, 209, 102, 0.12);
  }

  50% {
    text-shadow:
      0 0 12px rgba(255, 216, 77, 0.38),
      0 0 22px rgba(255, 209, 102, 0.22);
  }
}

@keyframes driftGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(2%, -2%, 0) scale(1.05);
  }
}

@keyframes shimmerFog {
  0% {
    transform: translateX(-8%) translateY(0);
  }

  50% {
    transform: translateX(4%) translateY(1%);
  }

  100% {
    transform: translateX(10%) translateY(-1%);
  }
}

@keyframes driftMistA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12%, 8%, 0) scale(1.08);
  }
}

@keyframes driftMistB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-14%, -8%, 0) scale(1.1);
  }
}

@keyframes driftMistC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(10%, -12%, 0) scale(1.06);
  }
}

@keyframes driftMistD {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10%, 10%, 0) scale(1.08);
  }
}

/* GERAIS */
.sobre,
.video-destaque,
.eventos,
.faq,
.contato {
  background:
    linear-gradient(180deg, rgba(236, 248, 246, 0.95), rgba(245, 251, 251, 0.92)),
    var(--bg);
}

.sao-joao {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.2), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 127, 80, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.sao-joao::before,
.sao-joao::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.7;
}

.sao-joao::before {
  width: 260px;
  height: 260px;
  top: 60px;
  right: -70px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.24) 0%, rgba(255, 209, 102, 0) 72%);
}

.sao-joao::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(255, 127, 80, 0.16) 0%, rgba(255, 127, 80, 0) 72%);
}

.destaques {
  margin-top: -44px;
  padding-top: 0;
  z-index: 3;
}

.logo-wall {
  padding: 18px 0 14px;
  z-index: 4;
}

.logo-wall .container {
  position: relative;
}

.logo-wall-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.logo-wall-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
  font-weight: 800;
}

.logo-wall-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.logo-wall-intro p {
  max-width: 660px;
  color: var(--gray);
}

.logo-track {
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 12px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track-group {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  min-width: max-content;
  animation: logoMarquee 22s linear infinite;
}

.logo-track:hover .logo-track-group {
  animation-play-state: paused;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 16px 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(222, 242, 238, 0.96), rgba(205, 232, 227, 0.9));
  color: #0a4a50;
  border: 1px solid rgba(109, 193, 183, 0.32);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.logo-pill:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 42px rgba(8, 22, 29, 0.12),
    0 0 22px rgba(124, 252, 255, 0.12);
  border-color: rgba(124, 252, 255, 0.42);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 14px));
  }
}

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

.destaque-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(228, 244, 241, 0.96), rgba(212, 235, 231, 0.92));
  border: 1px solid rgba(111, 196, 186, 0.26);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.destaque-card:hover,
.feature:hover,
.card:hover,
.roteiro-card:hover,
.planejamento-card:hover,
.guia-card:hover,
.cultura-item:hover,
.evento-card:hover,
.faq-item:hover,
.info-item:hover,
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(8, 22, 29, 0.12);
  border-color: rgba(124, 252, 255, 0.36);
}

.destaque-card,
.feature,
.card,
.roteiro-card,
.planejamento-card,
.guia-card,
.cultura-item,
.evento-card,
.faq-item,
.video-card,
.info-item,
.galeria-item,
.hero-panel {
  transform-origin: center center;
}

.destaque-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ab6300;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destaque-card h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.destaque-card p {
  color: var(--gray);
}

.destaque-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 107, 104, 0.96), rgba(10, 90, 110, 0.96));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  box-shadow:
    0 12px 24px rgba(7, 63, 70, 0.16),
    0 0 0 1px rgba(124, 252, 255, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.destaque-link::after {
  content: "\2192";
  margin-left: 8px;
  font-size: 1rem;
  line-height: 1;
}

.destaque-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--secondary), #ff7f50);
  box-shadow:
    0 16px 30px rgba(255, 159, 67, 0.22),
    0 0 0 1px rgba(255, 209, 102, 0.12);
}

.sobre-content,
.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.sobre-image {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(124, 252, 255, 0.16), rgba(255, 209, 102, 0.16));
  box-shadow: var(--shadow);
}

.sobre-image img,
.contato-map iframe {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 0;
}

.sobre-image img {
  transition: transform 0.8s ease, filter 0.8s ease;
}

.sobre-image:hover img {
  transform: scale(1.08);
  filter: saturate(1.06);
}

.sobre-text p {
  margin-bottom: 16px;
  color: #374151;
}

.sobre-callout {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, rgba(255, 207, 120, 0.24), rgba(133, 211, 197, 0.24));
}

.sobre-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.sobre-callout p {
  color: #374151;
}

.sobre-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature,
.card,
.evento-card,
.faq-item,
.info-item,
.guia-card,
.cultura-item {
  background: linear-gradient(180deg, rgba(228, 244, 241, 0.94), rgba(212, 234, 230, 0.9));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(111, 196, 186, 0.24);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature {
  padding: 24px;
  text-align: center;
}

.feature:hover,
.card:hover,
.guia-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(8, 22, 29, 0.12);
  border-color: rgba(124, 252, 255, 0.36);
}

.feature img {
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.4), rgba(141, 224, 203, 0.4));
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ATRATIVOS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.roteiro-banner {
  margin-top: 32px;
  padding: 28px 30px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 22, 29, 0.92), rgba(15, 107, 104, 0.84)),
    var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 22px 48px rgba(8, 22, 29, 0.18);
  border: 1px solid rgba(184, 237, 244, 0.16);
  backdrop-filter: blur(14px);
}

.roteiro-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roteiro-banner h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.roteiros {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(236, 248, 246, 0.88), rgba(255, 255, 255, 0.98));
}

.roteiros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.roteiro-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(231, 245, 242, 0.96), rgba(216, 236, 232, 0.92));
  border: 1px solid rgba(111, 196, 186, 0.24);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(14px);
}

.roteiro-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), #5ec8b8);
}

.roteiro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 107, 104, 0.18);
}

.roteiro-card-featured {
  background:
    linear-gradient(160deg, rgba(7, 63, 70, 0.96), rgba(15, 107, 104, 0.92));
  color: var(--white);
}

.roteiro-card-featured h3,
.roteiro-card-featured p,
.roteiro-card-featured .roteiro-link,
.roteiro-card-featured .roteiro-lista li {
  color: var(--white);
}

.roteiro-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 207, 120, 0.28);
  color: #0b4b51;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roteiro-card-featured .roteiro-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.roteiro-card h3 {
  margin: 18px 0 12px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.roteiro-card p {
  color: var(--gray);
}

.roteiro-lista {
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.roteiro-lista li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.roteiro-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 5px rgba(255, 209, 102, 0.12);
}

.roteiro-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
}

.roteiro-link::after {
  content: "\2192";
  font-size: 1rem;
}

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

.planejamento-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 252, 252, 0.84));
  border: 1px solid rgba(180, 232, 228, 0.4);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.planejamento-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.planejamento-card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.15rem;
}

.planejamento-card p {
  color: var(--gray);
}

.card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-image {
  position: relative;
  padding: 10px 10px 0;
}

.card-image::before,
.galeria-item::before {
  content: "";
  position: absolute;
  inset: 10px 10px 0;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(124, 252, 255, 0.12), rgba(255, 209, 102, 0.14));
  pointer-events: none;
}

.card-image img {
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 10px 24px rgba(7, 63, 70, 0.12),
    0 0 0 1px rgba(124, 252, 255, 0.08);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.card:hover .card-image img,
.feature:hover img,
.guia-card:hover .guia-galeria img:first-child {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.card-content p {
  color: var(--gray);
  margin-bottom: 15px;
}

.card-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 107, 104, 0.12), rgba(255, 209, 102, 0.2));
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

/* GUIA */
.guia {
  background:
    radial-gradient(circle at right top, rgba(255, 209, 102, 0.13), transparent 18%),
    linear-gradient(180deg, #f9fcfc 0%, #f3fbfa 100%);
}

.guia-bloco {
  margin-bottom: 50px;
}

.guia-bloco:last-child {
  margin-bottom: 0;
}

.guia-dupla {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.guia-dupla .guia-bloco {
  margin-bottom: 0;
}

.guia-dupla .guia-grid {
  grid-template-columns: 1fr;
}

.guia-topo {
  margin-bottom: 20px;
}

.guia-topo h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.guia-topo p {
  color: var(--gray);
}

.guia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guia-card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.galeria-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(233, 245, 245, 0.9)),
    #f3f7fa;
}

.guia-galeria {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 50px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.guia-galeria::-webkit-scrollbar {
  display: none;
}

.guia-galeria img,
.guia-galeria video {
  min-width: 240px;
  width: 240px;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(7, 63, 70, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  outline: 1px solid rgba(124, 252, 255, 0.12);
  outline-offset: 3px;
}

.guia-galeria img:hover,
.guia-galeria video:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 30px rgba(7, 63, 70, 0.18);
  filter: saturate(1.08);
}

.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(7, 63, 70, 0.84);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.galeria-btn:hover {
  background: linear-gradient(135deg, var(--secondary), #ff7f50);
}

.galeria-btn-left {
  left: 10px;
}

.galeria-btn-right {
  right: 10px;
}

.guia-info {
  padding: 18px;
}

.guia-info h4 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.guia-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.guia-meta {
  border-top: 1px solid rgba(15, 107, 104, 0.12);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}

.guia-meta p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.5;
}

.guia-meta a {
  color: var(--primary);
  font-weight: 600;
}

.guia-meta a:hover {
  color: var(--secondary);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(10px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal[data-reveal-direction="left"] {
  transform: translate3d(-32px, 32px, 0) scale(0.985);
}

.reveal[data-reveal-direction="right"] {
  transform: translate3d(32px, 32px, 0) scale(0.985);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.guia-contato {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
  text-decoration: none;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.32);
  color: #ffffff !important;
}

/* CULTURA */
.cultura-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cultura-item {
  padding: 28px 22px;
  text-align: center;
}

.cultura-item span {
  min-width: 76px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.18);
  color: #ab6300;
  font-size: 0.86rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 12px;
}

.cultura-item h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.cultura-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ALDEIA */
.aldeia {
  background:
    radial-gradient(circle at top left, rgba(141, 224, 203, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(245, 251, 251, 0.85), rgba(255, 255, 255, 0.98));
}

.aldeia-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.aldeia-copy,
.aldeia-feature,
.aldeia-gallery img {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  border: 1px solid rgba(15, 107, 104, 0.12);
  box-shadow: 0 16px 38px rgba(7, 63, 70, 0.12);
  position: relative;
  overflow: hidden;
}

.aldeia-copy::before,
.aldeia-feature::before,
.aldeia-gallery img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%, rgba(255, 209, 102, 0.08));
  pointer-events: none;
}

.aldeia-copy {
  padding: 34px;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.aldeia-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ab6300;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aldeia-copy h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.95rem;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.aldeia-copy p {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.75;
}

.aldeia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.aldeia-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 107, 104, 0.1);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.aldeia-feature {
  min-height: 440px;
}

.aldeia-feature img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.aldeia-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.aldeia-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.aldeia-copy:hover,
.aldeia-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.aldeia-feature:hover img,
.aldeia-gallery img:hover {
  transform: scale(1.05);
  filter: saturate(1.08);
}

/* SAO JOAO */
.sao-joao-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.sao-joao-copy,
.sao-joao-feature,
.sao-joao-gallery img {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  border: 1px solid rgba(191, 117, 18, 0.14);
  box-shadow: 0 16px 38px rgba(120, 62, 28, 0.12);
  position: relative;
  overflow: hidden;
}

.sao-joao-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(255, 209, 102, 0.08));
  pointer-events: none;
}

.sao-joao-copy {
  padding: 34px;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sao-joao-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #ab6300;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sao-joao-copy h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.sao-joao-copy p {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.75;
}

.sao-joao-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sao-joao-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.22), rgba(255, 127, 80, 0.14));
  color: #7d4300;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.sao-joao-tags span:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 159, 67, 0.24), rgba(255, 127, 80, 0.2));
  box-shadow: 0 12px 20px rgba(191, 117, 18, 0.12);
}

.sao-joao-feature {
  position: relative;
  padding: 10px;
  min-height: 460px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.sao-joao-slide {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  border-radius: 20px;
  background: #fffdf8;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.9s ease, transform 4.8s ease;
  box-shadow: 0 16px 34px rgba(120, 62, 28, 0.12);
}

.sao-joao-slide-active {
  opacity: 1;
  transform: scale(1.02);
}

.sao-joao-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sao-joao-gallery img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  padding: 10px;
  background: #fffdf8;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, filter 0.45s ease;
}

.sao-joao-copy:hover,
.sao-joao-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(120, 62, 28, 0.16);
  border-color: rgba(255, 159, 67, 0.2);
}

.hero-panel:hover,
.destaque-card:hover,
.evento-card:hover,
.faq-item:hover,
.info-item:hover,
.cultura-item:hover,
.video-card:hover,
.sao-joao-copy:hover {
  box-shadow:
    0 24px 48px rgba(7, 63, 70, 0.14),
    0 0 0 1px rgba(255, 209, 102, 0.08);
}

.sao-joao-gallery img:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 20px 40px rgba(120, 62, 28, 0.16);
  filter: saturate(1.05);
}

.sao-joao-feature::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 209, 102, 0.08),
    0 0 26px rgba(255, 209, 102, 0.08);
  pointer-events: none;
}

/* GALERIA */
.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 240px;
}

.galeria-item {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(124, 252, 255, 0.16), rgba(255, 209, 102, 0.14));
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.galeria-item.grande {
  grid-row: span 2;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(124, 252, 255, 0.08),
    0 12px 24px rgba(7, 63, 70, 0.12);
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.galeria-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.galeria-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(8, 22, 29, 0.14),
    0 0 20px rgba(124, 252, 255, 0.1);
}

/* EVENTOS */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.evento-card {
  padding: 26px;
}

.evento-data {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.15);
  color: #b96f00;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.evento-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.evento-card p {
  color: var(--gray);
  margin-bottom: 12px;
}

/* MATERIA FESTIVAL */
.materia-festival-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.materia-festival-media,
.materia-festival-copy {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 107, 104, 0.12);
  box-shadow: 0 18px 40px rgba(8, 22, 29, 0.1);
}

.materia-festival-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.materia-festival-copy {
  padding: 32px;
}

.materia-festival-copy p {
  color: var(--gray);
  font-size: 1.04rem;
  line-height: 1.8;
}

.materia-festival-copy p + p {
  margin-top: 16px;
}

.materia-festival-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.materia-festival-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 107, 104, 0.12);
  box-shadow: 0 14px 34px rgba(8, 22, 29, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.materia-festival-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 22, 29, 0.14);
  filter: saturate(1.04);
}

.article-page .header {
  position: sticky;
}

.article-hero {
  padding-top: 150px;
  padding-bottom: 28px;
}

.article-page main > section .container {
  border-radius: 34px;
}

.article-hero-festival .container,
.article-body .container {
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.95), rgba(246, 249, 244, 0.9)) !important;
  border: 1px solid rgba(15, 107, 104, 0.1) !important;
  box-shadow:
    0 24px 60px rgba(8, 22, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  gap: 36px;
  align-items: start;
}

.article-hero-copy {
  padding: 18px 10px 8px;
}

.article-eyebrow {
  margin: 12px 0 10px;
  color: #7c8e87;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-hero h1 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
  color: var(--primary-dark);
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.article-hero-copy p {
  max-width: 780px;
  color: #60756f;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-top: 18px;
}

.article-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-chip-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 107, 104, 0.12);
  color: #2d5b4e;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(8, 22, 29, 0.06);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 107, 104, 0.12);
  color: #6f817b;
  font-size: 0.95rem;
}

.article-meta-row span {
  position: relative;
}

.article-meta-row span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #e6a52c);
  vertical-align: middle;
}

.article-hero-poster {
  align-self: start;
  margin: 0;
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 243, 0.92));
  border: 1px solid rgba(15, 107, 104, 0.1);
  box-shadow:
    0 22px 50px rgba(8, 22, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.article-hero-poster img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 640px;
  object-fit: contain;
  border-radius: 24px;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 240, 0.96));
  box-shadow: 0 16px 32px rgba(8, 22, 29, 0.1);
}

.article-hero-poster figcaption {
  padding: 14px 6px 4px;
  color: #6f817b;
  font-size: 0.93rem;
  line-height: 1.55;
}

.article-body {
  padding-top: 10px;
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.article-story-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 107, 104, 0.1);
  box-shadow: 0 18px 44px rgba(8, 22, 29, 0.08);
}

.article-story-card p {
  color: #60756f;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.article-lead {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 107, 104, 0.08), rgba(255, 209, 102, 0.12));
  border: 1px solid rgba(15, 107, 104, 0.1);
  color: var(--primary-dark);
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 700;
}

.article-story-card h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 2rem;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
  margin: 6px 0 16px;
}

.article-inline-image {
  margin-top: 10px;
  margin-bottom: 24px;
}

.article-inline-image img {
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.article-quote {
  margin: 0 0 24px;
  padding: 24px 26px;
  border-left: 4px solid #e6a52c;
  border-radius: 0 22px 22px 0;
  background: rgba(255, 250, 238, 0.9);
  color: #335a52;
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 600;
}

.article-service-panel {
  position: sticky;
  top: 110px;
}

.article-service-card {
  padding: 24px 24px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #165438, #114d36);
  color: #f4f2e7;
  box-shadow: 0 24px 46px rgba(17, 77, 54, 0.28);
}

.article-service-card h3 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 2rem;
  color: #f2ead7;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.article-service-card p {
  color: rgba(255, 248, 232, 0.95);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.article-service-card strong {
  color: #ffd266;
}

.article-home-link {
  margin-top: 16px;
}

.article-back-link {
  white-space: nowrap;
}

.article-share-line {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 107, 104, 0.08);
  color: var(--primary-dark) !important;
  font-size: 0.96rem !important;
}

.article-body .materia-festival {
  margin-top: 28px;
}

.article-gallery-head {
  margin-bottom: 24px;
  text-align: center;
}

.article-gallery-head h2 {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--primary-dark);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.article-gallery-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #6b7f79;
  font-size: 1rem;
  line-height: 1.75;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 800;
  transition: transform 0.25s ease;
}

/* VIDEO DESTAQUE */
.video-destaque-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(180, 232, 228, 0.38);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}

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

.video-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 252, 0.84));
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(180, 232, 228, 0.42);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.video-card video,
.video-card iframe {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 16px 34px rgba(7, 63, 70, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.72);
  outline: 1px solid rgba(124, 252, 255, 0.12);
  outline-offset: 3px;
  min-height: 280px;
}

.video-card iframe {
  aspect-ratio: 16 / 9;
  min-height: 300px;
}

.video-card-wide video,
.video-card-wide iframe {
  min-height: 420px;
}

.video-legenda {
  margin-top: 18px;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* CONTATO */
.contato-info {
  display: grid;
  gap: 18px;
}

.contato-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.info-item {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  min-width: 58px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.24), rgba(141, 224, 203, 0.28));
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.info-item h4 {
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.info-item p {
  color: var(--gray);
  line-height: 1.75;
}

.gestao-publica {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.18), rgba(141, 224, 203, 0.18)),
    rgba(255, 255, 255, 0.86);
}

.gestao-publica strong {
  color: var(--primary-dark);
}

.contato-cta {
  background: linear-gradient(135deg, rgba(15, 107, 104, 0.92), rgba(7, 63, 70, 0.95));
  color: #fff;
  border-color: transparent;
}

.contato-map {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(124, 252, 255, 0.16), rgba(255, 209, 102, 0.16));
  box-shadow: var(--shadow);
}

.contato-cta h4,
.contato-cta p {
  color: #fff;
}

/* FOOTER */
.footer {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.12), transparent 20%),
    linear-gradient(135deg, #062b2f 0%, #0b4c54 100%);
  color: var(--white);
  padding: 48px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.footer-logo {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-column h4 {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  font-size: 0.96rem;
}

.footer-management {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.12), transparent 32%);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.management-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.management-head h4 {
  margin-bottom: 0;
}

.management-period {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-management .management-item {
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.2;
}

.footer-management .management-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-management .typed-inline {
  display: inline-block;
  color: #ffd84d;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  text-shadow:
    0 0 8px rgba(255, 216, 77, 0.28),
    0 0 18px rgba(255, 209, 102, 0.2);
}

.footer-management .typed-inline.typing-active {
  color: #ffea8c;
  text-shadow:
    0 0 12px rgba(255, 216, 77, 0.7),
    0 0 24px rgba(255, 209, 102, 0.42);
}

.footer-management .typed-inline.typed-highlight {
  animation: managementNameGlow 2.6s ease-in-out infinite;
}

.footer-management .typed-inline.typing-active::after {
  width: 0.1em;
  height: 0.9em;
  margin-left: 0.12em;
  background: linear-gradient(180deg, #fff4a6, #ffd84d);
  box-shadow:
    0 0 10px rgba(255, 244, 166, 0.65),
    0 0 18px rgba(255, 216, 77, 0.45);
}

.footer-contact-inline {
  grid-column: 1 / -1;
}

.footer-contact-inline p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  width: 100%;
}

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

.footer-social a {
  position: relative;
  min-width: 0;
  padding: 16px 12px 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.18), rgba(255, 127, 80, 0.18));
  border-color: rgba(255, 209, 102, 0.32);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.footer-social-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.24), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  color: #ffe59b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.14);
}

.footer-social-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.footer-social-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  min-width: 0;
}

.footer-social-label {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.footer-social-subtitle {
  display: none;
  font-size: 0.72rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* LIGHTBOX */
.zoomable-image {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgba(4, 16, 21, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.lightbox-image {
  width: auto;
  max-width: min(92vw, 1280px);
  max-height: 82vh;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.lightbox-caption {
  max-width: min(92vw, 900px);
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.lightbox-close,
.lightbox-nav {
  border: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #ff7f50);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  z-index: 999;
}

.scroll-top.show {
  display: block;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

@keyframes heroGridDrift {
  from {
    transform: perspective(900px) rotateX(72deg) translateY(0) scale(1.4);
  }

  to {
    transform: perspective(900px) rotateX(72deg) translateY(40px) scale(1.4);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  50% {
    box-shadow:
      0 16px 32px rgba(0, 0, 0, 0.14),
      0 0 22px rgba(124, 252, 255, 0.12);
  }
}

::selection {
  background: rgba(255, 159, 67, 0.24);
  color: var(--primary-dark);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  main > section:not(.hero):not(.logo-wall) .container {
    padding: 24px;
    border-radius: 30px;
  }

  .logo-wall-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .sobre-content,
  .contato-content,
  .footer-content,
  .cards-grid,
  .roteiros-grid,
  .planejamento-strip,
  .eventos-grid,
  .materia-festival-grid,
  .article-hero-grid,
  .article-body-grid,
  .materia-festival-gallery,
  .cultura-grid,
  .aldeia-hero,
  .aldeia-gallery,
  .sao-joao-hero,
  .destaques-grid,
  .guia-dupla,
  .guia-grid {
    grid-template-columns: 1fr;
  }

  .sobre-features {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .sao-joao-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .aldeia-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .galeria-item.grande {
    grid-row: span 1;
    grid-column: span 2;
  }

  .hero h1 {
    font-size: 2.95rem;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    padding-top: 0;
  }

  .electric-title-wrap {
    border-radius: 28px;
  }

  .hero::before {
    width: 240px;
    height: 240px;
    right: -60px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
  }

  .hero-main-image {
    height: 100%;
  }

  .hero-image-container {
    min-height: 340px;
  }

  .roteiro-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 4%;
    background: rgba(255, 255, 255, 0.9);
    width: 270px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 107, 104, 0.08);
    backdrop-filter: blur(14px);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  main > section:not(.hero):not(.logo-wall) .container {
    padding: 20px;
    border-radius: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 72px;
  }

  .article-hero {
    padding-top: 124px;
  }

  .article-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .article-hero-copy p {
    font-size: 1rem;
  }

  .article-story-card {
    padding: 26px 20px;
  }

  .article-service-panel {
    position: static;
  }

  .article-hero-poster img,
  .article-inline-image img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
  }

  .article-hero-poster img {
    max-height: none;
  }

  .article-hero-poster {
    padding: 12px;
    border-radius: 24px;
  }

  .article-hero-poster figcaption {
    padding: 12px 4px 2px;
    font-size: 0.88rem;
  }

  .article-lead {
    padding: 18px;
    font-size: 1.02rem;
  }

  .article-story-card h2 {
    font-size: 1.55rem;
  }

  .article-quote {
    padding: 18px 18px 18px 20px;
    font-size: 1rem;
  }

  .article-service-card {
    padding: 20px 18px 14px;
    border-radius: 22px;
  }

  .article-service-card h3 {
    font-size: 1.65rem;
  }

  .article-gallery-head h2 {
    font-size: 1.75rem;
  }

  .materia-festival-gallery {
    gap: 14px;
  }

  .materia-festival-gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 18px;
  }

  .logo-wall {
    padding: 18px 0 8px;
  }

  .scroll-progress {
    height: 3px;
  }

  .logo-pill {
    min-width: 142px;
    padding: 13px 16px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .destaques {
    margin-top: -16px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .electric-title-wrap {
    width: 100%;
    padding: 16px;
    border-radius: 26px;
  }

  .electric-title-orbit-b {
    inset: -5px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights a {
    width: 100%;
    text-align: center;
  }


  .stat-number,
  .stat-plus {
    font-size: 2.8rem;
  }

  .stat {
    width: 100%;
    min-width: 0;
  }

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

  .sao-joao-copy {
    padding: 24px 20px;
  }

  .aldeia-copy {
    padding: 24px 20px;
  }

  .aldeia-copy h3 {
    font-size: 1.6rem;
  }

  .sao-joao-copy h3 {
    font-size: 1.6rem;
  }

  .sao-joao-gallery {
    grid-template-columns: 1fr;
  }

  .aldeia-gallery {
    grid-template-columns: 1fr;
  }

  .sao-joao-gallery img,
  .sao-joao-feature {
    height: 320px;
    min-height: 320px;
  }

  .aldeia-gallery img,
  .aldeia-feature,
  .aldeia-feature img {
    height: 320px;
    min-height: 320px;
  }

  .materia-festival-copy {
    padding: 24px 20px;
  }

  .materia-festival-media img {
    min-height: 320px;
  }

  .materia-festival-gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .galeria-item.grande {
    grid-column: span 1;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .destaque-card,
  .roteiro-banner,
  .roteiro-card,
  .planejamento-card {
    padding: 22px 18px;
  }

  .guia-topo h3 {
    font-size: 1.5rem;
  }

  .brand-text {
    display: none;
  }

  .logo {
    width: 115px;
  }

  .article-back-link {
    width: auto;
    padding-inline: 16px;
  }

  .article-chip-row {
    gap: 10px;
  }

  .article-meta-row {
    flex-direction: column;
    gap: 10px;
  }

  .article-chip-row span {
    width: 100%;
    text-align: center;
  }

  .article-home-link,
  .article-back-link {
    width: 100%;
    text-align: center;
  }

  .guia-galeria {
    padding: 12px 42px;
  }

  .guia-galeria img,
  .guia-galeria video {
    min-width: 180px;
    width: 180px;
    height: 150px;
  }

  .galeria-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

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

  .video-destaque-wrap {
    padding: 18px;
    border-radius: 24px;
  }

  .video-card {
    padding: 14px;
    border-radius: 22px;
  }

  .video-card video,
  .video-card iframe,
  .video-card-wide video,
  .video-card-wide iframe {
    min-height: auto;
  }

  .video-card iframe,
  .video-card-wide iframe {
    aspect-ratio: 16 / 9;
  }

  .video-legenda {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .seo-intro-grid {
    grid-template-columns: 1fr;
  }

  .seo-intro-copy h2 {
    font-size: 1.95rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 72px 16px 24px;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 18px;
  }

  .lightbox-prev {
    left: calc(50% - 70px);
  }

  .lightbox-next {
    right: calc(50% - 70px);
  }

  .lightbox-image {
    max-width: 94vw;
    max-height: 74vh;
  }

  .lightbox-caption {
    font-size: 0.92rem;
    padding: 0 10px 60px;
  }

  .footer {
    padding: 40px 0 18px;
  }

  .footer-management {
    padding: 18px 16px;
    border-radius: 20px;
  }

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

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

  .footer-social a {
    padding: 13px;
  }

  .footer-social-icon {
    width: 48px;
    height: 48px;
  }

  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-contact-inline p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  section,
  section::before,
  section::after,
  .logo-track-group {
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal.reveal-visible,
  .feature,
  .card,
  .guia-card,
  .btn,
  .site-atmosphere::before,
  .site-atmosphere::after,
  .mist,
  .hero-bg-image,
  .floating-badge,
  .electric-title-orbit,
  .electric-spark,
  .guia-galeria img,
  .lightbox-close,
  .lightbox-nav,
  .scroll-top {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .electric-title-sparks {
    display: none !important;
  }
}
