:root {
  --ink: #111111;
  --muted: #676767;
  --paper: #f6f5f0;
  --surface: #ffffff;
  --line: #e2dfd4;
  --black: #050505;
  --gold: #f3bb1b;
  --gold-soft: #ffe08a;
  --gold-dark: #a96f00;
  --green: #23c265;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --social-size: 64px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

main {
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

.presentation-panel {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(16px, 4vw, 42px);
  color: #ffffff;
  background: #18120a;
  border-bottom: 1px solid rgba(243, 187, 27, 0.45);
}

.presentation-panel[hidden] {
  display: none;
}

.presentation-panel strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.presentation-panel span {
  display: block;
  color: #d8c58b;
  font-size: 0.85rem;
}

.stage-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stage-controls button {
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.stage-controls button.is-active {
  color: #161004;
  background: var(--gold);
  border-color: var(--gold);
}

body[data-stage="1"] [data-phase="2"],
body[data-stage="1"] [data-phase="3"],
body[data-stage="1"] [data-phase="4"],
body[data-stage="2"] [data-phase="3"],
body[data-stage="2"] [data-phase="4"],
body[data-stage="3"] [data-phase="4"] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 70px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(243, 187, 27, 0.5);
}

.presentation-panel:not([hidden]) + .site-header {
  top: 55px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(243, 187, 27, 0.38);
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand em {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.social-link img {
  width: 16px;
  height: 16px;
  color: currentColor;
  filter: invert(1);
}

.primary-button,
.secondary-button,
.feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.primary-button {
  color: #171004;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(243, 187, 27, 0.22);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.75rem;
}

.mobile-label {
  display: none;
}

.secondary-button {
  color: #ffffff;
  background: #171717;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  min-height: 360px;
  padding: 26px clamp(18px, 6vw, 86px);
  overflow: hidden;
  color: #ffffff;
  background: #060606;
}

.hero-media,
.photo {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    url("./assets/hero.jpg");
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24)),
    url("./assets/hero.jpg");
  background-position: center 28%;
  filter: blur(0.8px) saturate(1.08);
  opacity: 0.72;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(circle at 20% 20%, rgba(243, 187, 27, 0.1), transparent 38%);
  content: "";
}

.hero-content,
.weather-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.05rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
}

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

.hero-actions-ad {
  max-width: 244px;
}

.hero-actions-ad .feature-button {
  width: 100%;
}

.feature-button {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.feature-button.accent {
  color: #161004;
  background: var(--gold);
  border-color: var(--gold);
}

.weather-card {
  align-self: center;
  padding: 18px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-weather-card {
  display: none;
}

.weather-card > span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 780;
  text-transform: uppercase;
}

.weather-now {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.weather-now strong {
  font-size: 2.1rem;
  line-height: 1;
}

.sun {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(243, 187, 27, 0.45);
}

.weather-card p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.8);
}

.weather-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}

.weather-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.weather-card dd {
  margin: 2px 0 0;
  font-weight: 850;
}

.weather-card a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.news-ticker {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 42px;
  padding: 0 clamp(18px, 6vw, 86px);
  overflow: hidden;
  color: #ffffff;
  background: #050505;
  border-top: 1px solid rgba(243, 187, 27, 0.36);
}

.news-ticker strong {
  flex: 0 0 auto;
  color: var(--gold);
  text-transform: uppercase;
}

.news-ticker span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.news-ticker span::before {
  margin-right: 18px;
  color: var(--gold);
  content: "•";
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 18px 40px;
}

.content-stack {
  display: grid;
  gap: 34px;
}

.section {
  min-width: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-heading h2,
.promo-card h2,
.instagram-card h2,
.roadmap h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.section-heading a {
  color: #171717;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.news-grid {
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-carousel {
  overflow: hidden;
}

.news-carousel-controls {
  display: none;
}

.story-card,
.business-card,
.event-card,
.promo-card,
.instagram-card,
.roadmap article {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(25, 22, 14, 0.1);
}

.story-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  color: #ffffff;
  background: #101010;
}

.story-card.instagram-post-card {
  min-height: auto;
  aspect-ratio: 852 / 1280;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.story-image {
  position: absolute;
  inset: 0;
  transition: transform 280ms ease;
}

.instagram-post-card .story-image {
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-card:hover .story-image {
  transform: scale(1.04);
}

.story-card.instagram-post-card:hover .story-image {
  transform: scale(1.018);
}

.story-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.86) 100%);
  content: "";
}

.story-card.instagram-post-card::after {
  display: none;
}

.story-card.client-visual::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
}

.story-card.client-visual .tag,
.story-card.client-visual h3,
.story-card.client-visual time {
  display: none;
}

.story-card .tag,
.story-card h3,
.story-card time {
  position: relative;
  z-index: 1;
}

.tag,
.partner-label {
  display: inline-flex;
  width: max-content;
  padding: 4px 8px;
  color: #171004;
  background: var(--gold);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 10px 0 8px;
  font-size: 1rem;
  line-height: 1.18;
}

.story-card time {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.story-card.news-visual {
  padding: 16px;
}

.story-card.news-visual::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 10%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.9) 100%);
}

.story-card.news-visual .tag {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.story-card.news-visual h3 {
  max-width: 9.5em;
  margin: 9px 0 8px;
  font-size: clamp(1.16rem, 1.25vw, 1.38rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.story-card.news-visual time {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.business-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
}

.business-image {
  height: 128px;
}

.business-card .partner-label {
  position: absolute;
  top: 10px;
  left: 10px;
}

.business-card h3,
.business-card p,
.business-links {
  margin-left: 12px;
  margin-right: 12px;
}

.business-card h3 {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.business-card p {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.business-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.business-links a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #171717;
  background: #f1eee5;
  border-radius: 50%;
}

.business-links img {
  display: block;
  width: 17px;
  height: 17px;
}

.experience-carousel {
  overflow: hidden;
}

.experience-grid {
  display: flex;
  gap: 14px;
  transition: transform 520ms ease;
  will-change: transform;
}

.experience-card {
  position: relative;
  display: flex;
  align-items: end;
  flex: 0 0 calc((100% - 56px) / 5);
  min-height: 128px;
  padding: 16px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
}

.experience-card::after,
.event-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
  content: "";
}

.event-card.client-visual::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.12));
}

.event-card.client-visual time,
.event-card.client-visual h3,
.event-card.client-visual p {
  display: none;
}

.experience-card.client-visual::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
}

.experience-card.catalog-visual {
  aspect-ratio: 1 / 1;
  min-height: auto;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: inset 0 0 0 1px rgba(243, 187, 27, 0.2);
}

.experience-card.catalog-visual::after,
.experience-card.catalog-visual span {
  display: none;
}

.experience-card span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 1.1;
}

.experience-card.client-visual span {
  display: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.carousel-controls.news-carousel-controls {
  display: none;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #171717;
  background: #f1eee5;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--gold);
  outline: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #d6d0c2;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 22px;
  background: var(--gold);
  border-radius: 999px;
}

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

.event-card {
  position: relative;
  display: block;
  min-height: 218px;
  padding: 16px;
  color: #ffffff;
}

.event-card time,
.event-card h3,
.event-card p {
  position: relative;
  z-index: 1;
}

.event-card time {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 54px;
  color: #111111;
  background: #ffffff;
  border-radius: 7px;
  text-transform: uppercase;
}

.event-card time strong,
.event-card time span {
  line-height: 1;
}

.event-card h3 {
  max-width: 210px;
  margin: 54px 0 5px;
  font-size: 1rem;
  line-height: 1.17;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.sidebar {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
}

#instagram,
#divulgue {
  scroll-margin-top: 86px;
}

.promo-card,
.instagram-card {
  padding: 18px;
}

.promo-dark {
  color: #ffffff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.82)),
    url("./assets/hero.jpg") center 16% / cover;
}

.promo-dark p,
.promo-dark strong {
  display: block;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-dark strong {
  color: var(--gold);
}

.promo-dark span {
  display: block;
  margin: 10px 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.35;
}

.promo-dark .primary-button,
.promo-gold .secondary-button,
.instagram-card .primary-button {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.86rem;
}

.promo-gold h2,
.instagram-card h2 {
  font-size: 1.38rem;
}

.promo-gold {
  color: #18110a;
  background: linear-gradient(160deg, #ffe79c, #f3bb1b);
}

.promo-gold ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 9px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.promo-gold li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-size: 0.76rem;
  line-height: 1.22;
  font-weight: 760;
}

.promo-gold li::before {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold);
  background: #17110a;
  border-radius: 50%;
  content: "+";
  font-size: 0.68rem;
  font-weight: 950;
}

.instagram-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(243, 187, 27, 0.1), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  border: 1px solid rgba(243, 187, 27, 0.34);
}

.instagram-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  content: "";
}

.instagram-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-card-head img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.instagram-card span {
  color: var(--muted);
}

.sidebar-ebook {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(25, 22, 14, 0.1);
}

.sidebar-ebook img {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-ebook:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 12px 0;
}

.instagram-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 7px;
}

.sponsors {
  padding: 26px 18px 30px;
  color: #ffffff;
  background: #060606;
  border-top: 3px solid var(--gold);
  text-align: center;
}

.sponsors p {
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsors p strong {
  color: var(--gold);
}

.sponsors div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.sponsors span {
  min-width: 120px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 18px;
}

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

.roadmap article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.roadmap article strong,
.roadmap article span {
  display: block;
}

.roadmap article strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.roadmap article span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(120px, 0.7fr) minmax(180px, 1fr) minmax(300px, 1fr);
  gap: 34px;
  position: relative;
  padding: 40px clamp(18px, 6vw, 86px) 34px;
  overflow: hidden;
  color: #ffffff;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-map-link img {
  width: 16px;
  height: 16px;
  filter: invert(79%) sepia(79%) saturate(1039%) hue-rotate(351deg) brightness(101%) contrast(91%);
}

.footer-socials {
  grid-column: 4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-height: var(--social-size);
}

.footer-social-button,
.whatsapp-footer-slot {
  display: grid;
  place-items: center;
  width: var(--social-size);
  height: var(--social-size);
  border-radius: 50%;
}

.footer-social-button {
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.footer-social-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-button {
  background: transparent;
}

.facebook-button {
  background: transparent;
}

.whatsapp-footer-slot {
  pointer-events: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: var(--social-size);
  height: var(--social-size);
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  transition:
    left 180ms ease,
    top 180ms ease,
    right 180ms ease,
    bottom 180ms ease,
    transform 180ms ease;
}

body.footer-socials-visible .whatsapp-float {
  right: 22px;
  bottom: 22px;
}

body.footer-socials-visible .footer-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  width: max-content;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-credit {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 2;
  width: min(340px, 72vw);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer .footer-credit p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 740;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: auto;
}

.site-footer .iara-heart {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(243, 187, 27, 0.45);
}

.site-footer .footer-credit .iara-signature {
  position: relative;
  display: inline-block;
  color: #35ff91;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(53, 255, 145, 0.65),
    0 0 18px rgba(53, 255, 145, 0.36);
  animation: iaraTextPulse 3.2s ease-in-out infinite;
}

.site-footer .footer-credit .iara-signature::before,
.site-footer .footer-credit .iara-signature::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-footer .footer-credit .iara-signature::before {
  left: 50%;
  top: calc(100% + 2px);
  width: 112%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 255, 145, 0.9), transparent);
  box-shadow: 0 0 14px rgba(53, 255, 145, 0.62);
  transform: translateX(-50%);
}

.site-footer .footer-credit .iara-signature::after {
  left: 50%;
  top: calc(100% + 3px);
  width: 9px;
  height: 9px;
  background: #35ff91;
  border-radius: 2px;
  box-shadow:
    0 0 12px rgba(53, 255, 145, 0.95),
    0 0 24px rgba(53, 255, 145, 0.48);
  transform: translateX(-50%);
  animation: iaraPadPulse 2.8s ease-in-out infinite;
}

.iara-network {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: min(225px, 52vw);
  max-width: none;
  height: auto;
  overflow: visible;
  color: #35ff91;
  opacity: 0.95;
  transform: translateX(-50%);
  pointer-events: none;
}

.pcb-base {
  stroke: rgba(53, 255, 145, 0.3);
  stroke-width: 2.4;
  filter: url("#iara-glow");
}

.pcb-pulse {
  stroke: #dffff0;
  stroke-width: 4.5;
  stroke-dasharray: 16 94;
  stroke-dashoffset: 110;
  filter: url("#iara-glow");
  opacity: 0;
  animation: iaraTraceSweep 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.pulse-left-a {
  animation-delay: 180ms;
}

.pulse-right-a {
  animation-delay: 260ms;
}

.pulse-left-b {
  animation-delay: 520ms;
}

.pulse-right-b {
  animation-delay: 620ms;
}

.pulse-bottom {
  animation-delay: 940ms;
}

.iara-pads rect {
  fill: rgba(26, 255, 124, 0.42);
  stroke: rgba(222, 255, 238, 0.7);
  stroke-width: 1;
  animation: iaraPadPulse 3.4s ease-in-out infinite;
}

.iara-pads rect:nth-child(2),
.iara-pads rect:nth-child(3) {
  animation-delay: 260ms;
}

.iara-pads rect:nth-child(4),
.iara-pads rect:nth-child(5) {
  animation-delay: 520ms;
}

.iara-pads rect:nth-child(6),
.iara-pads rect:nth-child(7) {
  animation-delay: 760ms;
}

.iara-pads rect:nth-child(8),
.iara-pads rect:nth-child(9) {
  animation-delay: 980ms;
}

@keyframes iaraTextPulse {
  0%,
  100% {
    text-shadow:
      0 0 7px rgba(53, 255, 145, 0.52),
      0 0 16px rgba(53, 255, 145, 0.24);
  }

  50% {
    text-shadow:
      0 0 11px rgba(53, 255, 145, 0.86),
      0 0 26px rgba(53, 255, 145, 0.48);
  }
}

@keyframes iaraTraceSweep {
  0% {
    opacity: 0;
    stroke-dashoffset: 110;
  }

  12%,
  58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -60;
  }
}

@keyframes iaraPadPulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.photo-harbor {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/transito-floripa.jpg");
  background-position: center 12%;
}

.photo-beach {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/praias-proprias-floripa.jpg");
  background-position: 38% 41%;
}

.photo-food {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/news-food.jpg");
  background-position: 48% 45%;
}

.photo-city {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/capital-mais-segura.jpg");
  background-position: 66% 42%;
}

.photo-restaurant {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    url("./assets/biz-restaurant.jpg");
  background-position: 10% 55%;
}

.photo-inn {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    url("./assets/biz-inn.jpg");
  background-position: 29% 55%;
}

.photo-club {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    url("./assets/biz-club.jpg");
  background-position: 47% 55%;
}

.photo-cafe {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    url("./assets/biz-cafe.jpg");
  background-position: 64% 55%;
}

.photo-boat {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/ilha-do-campeche.jpg");
  background-position: 31% 69%;
}

.photo-catalog-citytour {
  background-image: url("./assets/catalog/citytour-florianopolis-full.png");
}

.photo-catalog-balneario {
  background-image: url("./assets/catalog/balneario-camboriu-full.png");
}

.photo-catalog-blumenau {
  background-image: url("./assets/catalog/blumenau-full.png");
}

.photo-catalog-pomerode {
  background-image: url("./assets/catalog/pomerode-full.png");
}

.photo-mountain {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/serra-catarinense.jpg");
  background-position: 46% 69%;
}

.photo-event {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/beto-carrero-world.jpg");
  background-position: 60% 80%;
}

.photo-airport {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/transfer-aeroporto.jpg");
  background-position: 74% 69%;
}

.photo-private-transfer {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06)),
    url("./assets/client-gallery/transporte-privado.jpg");
  background-position: center;
}

.photo-staff-shuttle {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06)),
    url("./assets/client-gallery/fretamento-funcionarios.jpg");
  background-position: center;
}

.photo-event-logistics {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06)),
    url("./assets/client-gallery/logistica-eventos.jpg");
  background-position: center;
}

.photo-sunset {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/event-sunset.jpg");
  background-position: 11% 81%;
}

.experience-card.photo-city {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/client-gallery/city-tour-florianopolis.jpg");
}

.event-card.photo-food {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/event-food.jpg");
}

.event-card.photo-event {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    url("./assets/event-party.jpg");
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .hero,
  .page-shell,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .weather-card {
    max-width: 360px;
  }

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

  .experience-card {
    flex-basis: calc((100% - 28px) / 3);
  }

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

  .footer-socials {
    grid-column: 1 / -1;
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .page-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  }
}

@media (max-width: 720px) {
  :root {
    --social-size: 56px;
  }

  body {
    padding-top: 104px;
    background: #050505;
  }

  .presentation-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .stage-controls {
    justify-content: flex-start;
  }

  .presentation-panel:not([hidden]) + .site-header {
    top: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: unset;
    gap: 9px 10px;
    padding: 10px 18px 8px;
  }

  .hero-media {
    background-position: center 8%;
  }

  .brand {
    grid-column: 1;
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand em {
    display: block;
    margin-top: 2px;
    font-size: 0.4rem;
  }

  .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .header-actions .social-link {
    display: none;
  }

  .header-actions .primary-button.small {
    display: grid;
    place-items: center;
    width: 96px;
    min-height: 32px;
    padding: 0;
    border-radius: 999px;
    box-shadow: none;
    gap: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: block;
    width: 100%;
    font-size: 0.68rem;
    line-height: 1;
    text-align: center;
    transform: translateX(-1px);
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
    gap: clamp(18px, 7vw, 30px);
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 0.72rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a[href="#inicio"] {
    order: 1;
    display: none;
  }

  .main-nav a[href="#noticias"] {
    order: 2;
  }

  .main-nav a[href="#parceiros"] {
    order: 3;
  }

  .main-nav a[href="#turismo"] {
    order: 4;
  }

  .main-nav a[href="#eventos"] {
    order: 5;
    display: none;
  }

  .main-nav a[href="#divulgue"] {
    order: 6;
    display: none;
  }

  .main-nav a[href="#instagram"] {
    order: 7;
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 26px 18px 24px;
  }

  .section,
  #inicio,
  #divulgue,
  #instagram {
    scroll-margin-top: 104px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.03;
  }

  .hero p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions-ad {
    grid-template-columns: 1fr;
    max-width: 218px;
  }

  .feature-button {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .desktop-weather-card {
    display: none;
  }

  .mobile-weather-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "place place temps"
      "now summary temps";
    align-items: center;
    gap: 4px 10px;
    width: 100%;
    margin-top: 14px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(243, 187, 27, 0.32);
    box-shadow: none;
  }

  .mobile-weather-card > span {
    grid-area: place;
    font-size: 0.65rem;
    line-height: 1;
  }

  .mobile-weather-card .weather-now {
    grid-area: now;
    gap: 7px;
    margin-top: 0;
  }

  .mobile-weather-card .sun {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 20px rgba(243, 187, 27, 0.42);
  }

  .mobile-weather-card .weather-now strong {
    font-size: 1.22rem;
  }

  .mobile-weather-card p {
    grid-area: summary;
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.15;
  }

  .mobile-weather-card dl {
    grid-area: temps;
    grid-template-columns: 1fr;
    gap: 3px;
    min-width: 62px;
  }

  .mobile-weather-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 6px;
  }

  .mobile-weather-card dt {
    font-size: 0.58rem;
  }

  .mobile-weather-card dd {
    margin: 0;
    font-size: 0.72rem;
  }

  .news-ticker {
    display: none;
  }

  .news-grid,
  .business-row,
  .events-grid,
  .roadmap-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .news-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .news-carousel::-webkit-scrollbar {
    display: none;
  }

  .news-grid {
    display: flex;
    gap: 14px;
  }

  .news-grid .instagram-post-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .carousel-controls.news-carousel-controls {
    display: flex;
  }

  .experience-card {
    flex-basis: 100%;
    min-height: clamp(270px, 84vw, 360px);
    background-position: center bottom;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .experience-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .experience-carousel::-webkit-scrollbar {
    display: none;
  }

  .experience-grid {
    transform: none !important;
    transition: none;
  }

  .site-footer {
    padding-bottom: 94px;
  }

  .footer-credit {
    bottom: 64px;
    width: min(286px, 88vw);
  }

  .site-footer .footer-credit p {
    font-size: 0.72rem;
  }

  .iara-network {
    top: calc(100% + 5px);
    width: min(260px, 82vw);
  }

  .footer-socials {
    display: none;
  }

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

  body.footer-socials-visible .whatsapp-float {
    left: auto;
    top: auto;
    right: 18px;
    bottom: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-heading a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    color: #171717;
    background: #eee9dc;
    border-radius: 999px;
    font-size: 0.76rem;
  }

  .story-card {
    min-height: 238px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  body.is-presenting .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-grid {
    transition: none;
  }

  .iara-signature,
  .pcb-pulse,
  .iara-pads rect {
    animation: none;
  }
}

@media (max-width: 380px) {
  .feature-button {
    font-size: 0.7rem;
  }
}
