/* ========== COCO GOTHIC FONT ========== */
@font-face {
  font-family: "Coco Gothic";
  src: url("../fonts/CocoGothic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Coco Gothic";
  src: url("../fonts/CocoGothic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta Premium 2025 */
  --bg-light: #fdfaf5;
  --bg-warm: #fff9f0;
  --ink: #1a1614;
  --ink-soft: #3d3935;
  --muted: rgba(29, 26, 22, 0.68);

  /* Gradientes Mágicos */
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c42 100%);
  --gradient-magic: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
  --gradient-indigo: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
  --gradient-purple: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7e22ce 100%);
  --gradient-amber: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  --gradient-coral: linear-gradient(135deg, #fb7185 0%, #f43f5e 50%, #e11d48 100%);

  /* Glassmorphism Premium */
  --glass-premium: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

  /* Sombras em camadas */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  /* Animações */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Navigation height */
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Coco Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Background global - mantém em toda a página */
  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Prevent scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
}

/* Overlay escuro quando menu mobile está aberto */
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease;
  /* Permitir cliques passarem através do overlay */
  pointer-events: none;
}

/* Prevent horizontal scroll on all elements */
* {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* ========== NAVIGATION BAR ========== */

/* Added sticky navigation bar with modern design */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Modern glassmorphism with subtle gradient */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 100%);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s
    var(--transition-smooth);
}

.navbar--scrolled {
  /* Enhanced scrolled state with stronger blur */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  flex-shrink: 0;
  z-index: 2;
}

.navbar__logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s var(--transition-smooth);
}

.navbar__logo-img:hover {
  transform: scale(1.05);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  position: relative;
}

.navbar__toggle-icon {
  width: 100%;
  height: 3px;
  /* Modern gradient color for hamburger icon */
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 10px;
  transition: all 0.3s var(--transition-smooth);
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: block;
  padding: 8px 16px;
  font-family: "Coco Gothic", sans-serif;
  font-size: 15px;
  font-weight: 600;
  /* Modern dark gray color */
  color: #334155;
  text-decoration: none;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s var(--transition-smooth);
}

.navbar__link::before {
  /* Added modern background hover effect */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  /* Modern gradient underline */
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--transition-smooth);
}

.navbar__link:hover::before {
  opacity: 1;
}

.navbar__link:hover {
  /* Modern purple-pink gradient text on hover */
  color: #6366f1;
  transform: translateY(-2px);
}

.navbar__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__item--cta {
  margin-left: 8px;
}

.btn--nav {
  padding: 10px 24px;
  font-size: 14px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80%, 320px);
    /* Fundo 100% BRANCO SÓLIDO */
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(99, 102, 241, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s var(--transition-smooth);
    z-index: 1001;
    /* Garantir que os cliques funcionem */
    pointer-events: auto !important;
  }
  
  .navbar__menu--active {
    transform: translateX(0);
  }

  .navbar__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: auto !important;
  }

  .navbar__item--cta {
    margin-left: 0;
    margin-top: 24px;
    border-bottom: none;
  }

  .navbar__link {
    padding: 18px 16px;
    font-size: 17px;
    font-weight: 700;
    /* Texto PRETO e bem visível */
    color: #1a1a1a !important;
    display: block;
    position: relative;
    z-index: 10;
    cursor: pointer;
    /* Garantir que os cliques funcionem */
    pointer-events: auto !important;
  }
  
  .navbar__link::before,
  .navbar__link::after {
    display: none !important;
    content: none !important;
  }
  
  .navbar__link:hover,
  .navbar__link:active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1 !important;
  }

  .btn--nav {
    width: 100%;
    justify-content: center;
    font-weight: 700;
  }
}

/* ========== HERO SECTION ========== */

.soft-fade-edges {
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 90%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 60px);
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;

  background: radial-gradient(
      1400px 800px at 50% 55%,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 247, 235, 0.45) 35%,
      rgba(255, 235, 205, 0.25) 65%,
      rgba(0, 0, 0, 0.12) 100%
    ), linear-gradient(to bottom, rgba(255, 250, 240, 0.35), rgba(255, 245, 230, 0.75));
  backdrop-filter: brightness(1.05) saturate(1.3);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

.hero__content {
  width: min(1080px, 100%);
  text-align: center;
  padding: clamp(32px, 4vw, 56px);

  animation: fadeInUp 0.8s var(--transition-smooth) backwards;
  animation-delay: 0.3s;
}

.hero__logo-stack {
  width: min(68vw, 640px);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero__logo-underlay {
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;

  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: saturate(1.1) contrast(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  user-select: none;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
  animation: fadeInScale 1s var(--transition-bounce) 0.5s backwards;
  opacity: 0.85;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__actions {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 0.8s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Added scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease 1.2s backwards;
}

.hero__scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid var(--ink-soft);
  border-radius: 20px;
  position: relative;
}

.hero__scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero__scroll-indicator {
    display: none;
  }
}

/* ========== BUTTONS PREMIUM ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  /* Modern rounded corners instead of pill shape */
  border-radius: 16px;
  font-family: "Coco Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;

  transition: all 0.3s var(--transition-smooth);
  will-change: transform;
  user-select: none;
}

/* Modern shimmer effect on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 60%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

.btn:focus-visible {
  /* Modern focus ring color */
  outline: 3px solid rgba(99, 102, 241, 0.5);
  outline-offset: 4px;
}

/* Modern vibrant gradient button */
.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  background-size: 200% 200%;
  border: none;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(139, 92, 246, 0.3), inset 0 1px 0
    rgba(255, 255, 255, 0.3);
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn--primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5), 0 8px 20px rgba(139, 92, 246, 0.4), 0 4px 12px
    rgba(236, 72, 153, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--primary:active {
  transform: translateY(-2px) scale(1.01);
}

/* Modern glass morphism ghost button */
.btn--ghost {
  color: #334155;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.2), 0 6px 16px rgba(0, 0, 0, 0.1);
  color: #6366f1;
}

.btn--ghost:active {
  transform: translateY(-2px) scale(1.01);
}

.btn--large {
  padding: 18px 40px;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 18px;
}

/* ========== SECTIONS ========== */

.section {
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  position: relative;
}

/* Added reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section--sobre {
  background: linear-gradient(
    to bottom,
    rgba(255, 249, 240, 0.85) 0%,
    rgba(255, 245, 230, 0.9) 50%,
    rgba(255, 249, 240, 0.85) 100%
  );
}

.section--coracao {
  background: linear-gradient(
    to bottom,
    rgba(6, 182, 212, 0.08) 0%,
    rgba(8, 145, 178, 0.12) 50%,
    rgba(6, 182, 212, 0.08) 100%
  );
  position: relative;
}

.section--coracao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.section--publico {
  background: linear-gradient(
    to bottom,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(79, 70, 229, 0.1) 50%,
    rgba(99, 102, 241, 0.06) 100%
  );
  position: relative;
}

.section--publico::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.section__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  box-sizing: border-box;
}

.section__container--reverse {
  direction: rtl;
}

.section__container--reverse > * {
  direction: ltr;
}

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

.section__content {
  animation: fadeInLeft 0.8s var(--transition-smooth);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section__overline {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d97706;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 18px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 999px;
}

.section__overline--cyan {
  color: #0891b2;
  background: rgba(6, 182, 212, 0.12);
}

.section__overline--indigo {
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.12);
}

.section__overline--purple {
  color: #9333ea;
  background: rgba(168, 85, 247, 0.12);
}

.section__overline--amber {
  color: #d97706;
  background: rgba(245, 158, 11, 0.12);
}

.section__title {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: transparent;
  background: linear-gradient(135deg, #92400e 0%, #ea580c 50%, #fb923c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.section__title--cyan {
  background: var(--gradient-cyan);
  background-clip: text;
  -webkit-background-clip: text;
}

.section__title--indigo {
  background: var(--gradient-indigo);
  background-clip: text;
  -webkit-background-clip: text;
}

.section__title--purple {
  background: var(--gradient-purple);
  background-clip: text;
  -webkit-background-clip: text;
}

.section__title--amber {
  background: var(--gradient-amber);
  background-clip: text;
  -webkit-background-clip: text;
}

.section__text {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 400;
}

.section__text strong {
  color: var(--ink);
  font-weight: 600;
}

.section__header {
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.section__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 400;
}

.section__text--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s var(--transition-smooth);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.section__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.section__image-wrapper:hover .section__image {
  transform: scale(1.05);
}

/* Added lazy loading image effect */
.lazy-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/* ========== ATRAÇÕES SECTION ========== */

.section--atracoes {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(168, 85, 247, 0.08) 0%,
    rgba(147, 51, 234, 0.12) 50%,
    rgba(168, 85, 247, 0.08) 100%
  );
  overflow: hidden;
}

.atracoes__title-icon {
  width: clamp(60px, 10vw, 120px);
  height: auto;
  display: block;
  margin: clamp(16px, 3vw, 24px) auto 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
  opacity: 0.95;
}

.atracoes__hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5%;
}

.atracoes__bg {
  width: min(90%, 500px);
  height: auto;
  opacity: 0.18;
  filter: blur(1px);
  object-fit: contain;
}

.atracoes__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.atracoes__wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section--atracoes .section__header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.atracoes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 0;
}

/* ========== ATRAÇÃO CARDS ========== */

.atracao-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 255, 0.9) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 32px);
  text-align: center;

  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s
    var(--transition-smooth);

  animation: fadeInUp 0.6s var(--transition-smooth) backwards;
  animation-delay: calc(var(--card-index, 0) * 0.05s);
}

.atracao-card:nth-child(1) {
  --card-index: 1;
}
.atracao-card:nth-child(2) {
  --card-index: 2;
}
.atracao-card:nth-child(3) {
  --card-index: 3;
}
.atracao-card:nth-child(4) {
  --card-index: 4;
}
.atracao-card:nth-child(5) {
  --card-index: 5;
}
.atracao-card:nth-child(6) {
  --card-index: 6;
}
.atracao-card:nth-child(7) {
  --card-index: 7;
}
.atracao-card:nth-child(8) {
  --card-index: 8;
}
.atracao-card:nth-child(9) {
  --card-index: 9;
}
.atracao-card:nth-child(10) {
  --card-index: 10;
}
.atracao-card:nth-child(11) {
  --card-index: 11;
}
.atracao-card:nth-child(12) {
  --card-index: 12;
}

.atracao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.25), 0 0 0 1px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.35);
}

.atracao-card__icon {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 16px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(168, 85, 247, 0.2));
}

.atracao-card__title {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}

.atracao-card__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ========== ESTRUTURA & LOCALIZAÇÃO SECTION ========== */

.section--estrutura {
  background: linear-gradient(
    to bottom,
    rgba(245, 158, 11, 0.06) 0%,
    rgba(217, 119, 6, 0.1) 50%,
    rgba(245, 158, 11, 0.06) 100%
  );
  position: relative;
}

.section--estrutura::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.mapa__wrapper {
  margin-top: clamp(40px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 252, 245, 0.9) 100%);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 3vw, 32px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245, 158, 11, 0.1);

  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);

  animation: fadeInScale 0.8s var(--transition-smooth) backwards;
}

.mapa__wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(245, 158, 11, 0.2), 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.mapa__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--transition-smooth);
}

.mapa__wrapper:hover .mapa__image {
  transform: scale(1.02);
}

/* ========== MARKETING & MARCAS SECTIONS (BG IMAGE) ========== */

.section--marketing,
.section--marcas {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.section--marketing .section__bg-image {
  opacity: 0.3;
}

.section--marcas .section__bg-image {
  opacity: 0.2;
}

.section--marketing {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.15) 0%, rgba(244, 63, 94, 0.08) 100%);
}

.section--marcas {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.9) 0%, rgba(225, 29, 72, 0.95) 100%);
}

.section__container--split {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.section__title--coral {
  background: var(--gradient-coral);
  background-clip: text;
  -webkit-background-clip: text;
}

.section__title--white {
  color: #ffffff;
  background: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.section__subtitle--dark {
  color: var(--ink);
  font-weight: 500;
}

.section__subtitle--white {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* ========== FEATURES LIST ========== */

.features-list {
  list-style: none;
  margin: clamp(32px, 5vw, 48px) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}

.features-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 20px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(251, 113, 133, 0.2);
  box-shadow: var(--shadow-sm);

  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);

  animation: fadeInLeft 0.6s var(--transition-smooth) backwards;
  animation-delay: calc(var(--item-index, 0) * 0.08s);
}

.features-list__item:nth-child(1) {
  --item-index: 1;
}
.features-list__item:nth-child(2) {
  --item-index: 2;
}
.features-list__item:nth-child(3) {
  --item-index: 3;
}
.features-list__item:nth-child(4) {
  --item-index: 4;
}
.features-list__item:nth-child(5) {
  --item-index: 5;
}

.features-list__item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.features-list__icon {
  font-size: clamp(24px, 3vw, 28px);
  flex-shrink: 0;
  line-height: 1;
}

.features-list__text {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}

.features-list--white .features-list__item {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.features-list--white .features-list__text {
  color: #ffffff;
}

/* ========== CONTATO SECTION ========== */

.section--contato {
  position: relative;
  min-height: auto;
  background: linear-gradient(to bottom, rgba(8, 145, 178, 0.08) 0%, rgba(6, 182, 212, 0.12) 100%);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
}

.section--contato .section__container {
  position: relative;
  z-index: 1;
}

.section__content--contato {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 255, 0.9) 100%);
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(6, 182, 212, 0.2);
}

.section__text--featured {
  font-size: clamp(17px, 2.3vw, 20px);
  line-height: 1.8;
  text-align: center;
  margin: clamp(24px, 4vw, 32px) 0;
}

/* ========== GALERIA DE FOGOS ========== */

.fogos__galeria {
  margin: clamp(40px, 6vw, 64px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.fogos__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 255, 0.95) 100%);
  border: 2px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(6, 182, 212, 0.1);

  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);

  animation: fadeInScale 0.8s var(--transition-smooth) backwards;
}

.fogos__card:nth-child(1) {
  animation-delay: 0.1s;
}

.fogos__card:nth-child(2) {
  animation-delay: 0.2s;
}

.fogos__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.25), 0 0 0 2px rgba(6, 182, 212, 0.3);
}

.fogos__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.fogos__card:hover .fogos__image {
  transform: scale(1.08);
}

.fogos__caption {
  padding: clamp(16px, 2.5vw, 24px);
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  background: rgba(6, 182, 212, 0.05);
}

/* ========== CONTATO INFO & CTA ========== */

.contato__info {
  margin: clamp(40px, 6vw, 56px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
}

.contato__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--gradient-cyan);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contato__badge-year {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contato__badge-label {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  width: 100%;
}

.contato__link,
.contato__producer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2.2vw, 18px) clamp(20px, 3vw, 28px);
  background: rgba(6, 182, 212, 0.08);
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md);
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink);
  text-decoration: none;

  transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s
    var(--transition-smooth);
}

.contato__link:hover {
  transform: translateY(-2px);
  background: rgba(6, 182, 212, 0.12);
  box-shadow: var(--shadow-sm);
}

.contato__icon {
  font-size: clamp(20px, 2.5vw, 24px);
  flex-shrink: 0;
}

.cta__actions {
  margin-top: clamp(32px, 5vw, 48px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */

/* Added professional footer */
.footer {
  background: linear-gradient(135deg, rgba(26, 22, 20, 0.95) 0%, rgba(61, 57, 53, 0.98) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px) clamp(32px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 48px);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
}

.footer__tagline {
  font-family: "Coco Gothic", sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), color 0.3s
    var(--transition-smooth);
}

.footer__social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.footer__bottom {
  width: 100%;
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========== BACK TO TOP BUTTON ========== */

/* Added back to top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: var(--gradient-gold);
  border: 2px solid rgba(255, 206, 120, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 170, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #1f1504;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: opacity 0.3s var(--transition-smooth), visibility 0.3s var(--transition-smooth), transform 0.3s
    var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 8px 32px rgba(255, 170, 0, 0.5), var(--shadow-glow);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

/* ========== RESPONSIVE ENHANCEMENTS ========== */

@media (max-width: 1024px) {
  .section__container {
    grid-template-columns: 1fr;
  }

  .section__container--reverse {
    direction: ltr;
  }

  .section__title {
    font-size: clamp(32px, 6vw, 48px);
  }

  .section__subtitle {
    font-size: clamp(16px, 3vw, 20px);
  }
}

@media (max-width: 768px) {
  /* Hero section */
  .hero {
    min-height: 100vh;
    padding: 20px;
  }

  .hero__content {
    padding: 24px 16px;
  }

  .hero__logo-stack {
    max-width: 85vw;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 16px 24px;
  }

  /* Section adjustments */
  .section {
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
  }

  .section__title {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.2;
  }

  .section__overline {
    font-size: 13px;
  }

  .section__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .section__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .section__image-wrapper {
    margin-top: 32px;
  }

  /* Atrações */
  .atracoes__title-icon {
    width: clamp(70px, 15vw, 100px);
    margin-top: 16px;
  }

  .atracoes__grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .atracao-card {
    padding: 24px 20px;
  }

  .atracao-card__icon {
    font-size: clamp(48px, 12vw, 64px);
  }

  .atracao-card__title {
    font-size: 18px;
  }

  .atracao-card__desc {
    font-size: 14px;
  }

  /* Estrutura section */
  .estrutura__grid {
    gap: 16px;
  }

  .estrutura__item {
    padding: 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 32px;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Fogos galeria */
  .fogos__galeria {
    flex-direction: column;
    gap: 24px;
  }

  /* Contato */
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .contato__details {
    width: 100%;
  }

  .contato__link,
  .contato__producer {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .contato__badge {
    padding: 16px 24px;
  }

  .contato__badge-year {
    font-size: 32px;
  }

  .contato__badge-label {
    font-size: 13px;
  }
}

/* Mobile Small - Extra adjustments for very small screens */
@media (max-width: 480px) {
  /* Hero */
  .hero {
    padding: 16px;
  }

  .hero__content {
    padding: 20px 12px;
  }

  .hero__logo-stack {
    max-width: 90vw;
  }

  .hero__actions .btn {
    font-size: 15px;
    padding: 14px 20px;
  }

  /* Sections */
  .section {
    padding: 32px 16px;
  }

  .section__title {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 12px;
  }

  .section__overline {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .section__subtitle {
    font-size: 15px;
    margin-top: 12px;
  }

  .section__text {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 14px 24px;
  }

  .btn--large {
    font-size: 15px;
    padding: 16px 28px;
  }

  /* Atrações */
  .atracoes__wrapper {
    padding: 0 16px;
  }

  .atracoes__title-icon {
    width: clamp(60px, 18vw, 90px);
  }

  .atracao-card {
    padding: 20px 16px;
  }

  .atracao-card__icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .atracao-card__title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .atracao-card__desc {
    font-size: 13px;
  }

  /* Estrutura cards */
  .estrutura__item {
    padding: 18px 16px;
  }

  .estrutura__number {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .estrutura__label {
    font-size: 13px;
  }

  /* Footer */
  .footer {
    padding: 32px 16px 24px;
  }

  .footer__logo {
    height: 32px;
  }

  .footer__text {
    font-size: 13px;
  }

  /* Back to top button */
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }

  /* Contato */
  .contato__info {
    gap: 20px;
  }

  .contato__badge {
    padding: 14px 20px;
  }

  .contato__badge-year {
    font-size: 28px;
  }

  .contato__badge-label {
    font-size: 12px;
  }

  .contato__link,
  .contato__producer {
    font-size: 13px;
    padding: 12px 16px;
  }

  /* Fogos images */
  .fogos__card {
    border-radius: 16px;
  }

  .fogos__image {
    border-radius: 16px;
  }

  .fogos__caption {
    font-size: 13px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__scroll-icon::before {
    animation: none;
  }
}
