:root {
  --background: #eef6fb;
  --background-soft: #f8fbff;
  --accent: #0f3557;
  --accent-deep: #071f34;
  --accent-muted: rgba(15, 53, 87, 0.72);
  --primary: #1f8fd1;
  --primary-soft: #8fd2ff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(27, 48, 34, 0.12);
  --glow: 0 18px 44px rgba(212, 175, 55, 0.24);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--accent);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100%;
  z-index: 999;
  border-radius: 999px;
  background: var(--primary);
  color: var(--accent);
  padding: 0.8rem 1rem;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-pad {
  padding: 5rem 0;
}

.compact-pad {
  padding-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: var(--accent);
  box-shadow: var(--glow);
}

.button-primary:hover {
  filter: brightness(1.06);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-outline {
  border: 1px solid rgba(27, 48, 34, 0.15);
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--primary);
  color: #a77f00;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 31, 52, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 31, 52, 0.92);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.site-header::before {
  display: none;
}

.brand {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.desktop-nav a,
.mobile-nav a:not(.button) {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  visibility: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  padding: 7rem 0 5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg, #0f3557 0%, #1f8fd1 48%, #071f34 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 31, 52, 0.12), rgba(7, 31, 52, 0.2)), url("imagens/713240360.jpg");
  background-size: cover;
  background-position: 72% center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(to bottom, rgba(7, 31, 52, 0.1), rgba(7, 31, 52, 0.18)), radial-gradient(circle at 50% 44%, rgba(31, 143, 209, 0.08), transparent 32%);
}

.hero-content {
  width: min(860px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(7, 31, 52, 0.84);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-top: 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  max-width: 100%;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--accent);
  padding: 0.65rem 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.profile-content h2,
.highlights h2,
.contact-card h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 1.08;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.hero-subtitle {
  max-width: 660px;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  line-height: 1.55;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  display: flex;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.scroll-hint i {
  width: 1.75rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  position: relative;
}

.scroll-hint i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.45rem;
  width: 0.38rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
  animation: float 1.5s ease-in-out infinite;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(15, 53, 87, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 4vw, 2.5rem);
}

.profile-avatar {
  width: 9rem;
  height: 9rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft), var(--accent));
  box-shadow: var(--glow);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-avatar.media-missing::after {
  border-radius: inherit;
}

.profile-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.profile-content h2 {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.profile-content p {
  max-width: 720px;
  margin: 0.8rem 0 0;
  color: var(--accent-muted);
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stats-grid div {
  border-radius: 1.25rem;
  background: var(--background);
  padding: 1.2rem 1rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 1.55rem;
}

.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(15, 53, 87, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-card {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(15, 53, 87, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(27, 48, 34, 0.08);
  padding: 1rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 28s linear infinite;
}

.marquee-card:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  position: relative;
  width: clamp(220px, 28vw, 260px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 1.6rem;
  background: transparent;
  padding: 0;
}

.marquee-item::before,
.video-poster::before,
.reel-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}

.marquee-item img,
.video-poster img,
.reel-media img,
.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marquee-item:hover img,
.video-poster:hover img,
.reel-card:hover img,
.footer-image:hover img {
  transform: scale(1.055);
}

.featured-video {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.centered {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 4vw, 3rem) 0;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.highlights h2,
.contact-card h2,
.site-footer h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
}

.section-heading p:not(.section-kicker),
.highlights p,
.contact-card p,
.site-footer p {
  max-width: 650px;
  margin: 1rem auto 0;
  color: var(--accent-muted);
  line-height: 1.8;
}

.section-heading.split p:not(.section-kicker) {
  margin: 0;
  max-width: 520px;
}

.video-poster {
  position: relative;
  display: block;
  width: calc(100% - clamp(2rem, 7vw, 6rem));
  aspect-ratio: 16 / 9;
  margin: 2rem auto clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 30px 60px rgba(27, 48, 34, 0.18);
  text-align: left;
}

.video-poster .play-circle {
  display: none;
}

.poster-badge,
.poster-copy,
.play-circle {
  position: absolute;
  z-index: 2;
}

.poster-badge {
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.play-circle {
  inset: 50% auto auto 50%;
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  transform: translate(-50%, -50%);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 1.6rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.video-poster:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.08);
}

.poster-copy {
  inset: auto 0 0;
  margin: clamp(1rem, 3vw, 1.4rem);
  border-radius: 1.25rem;
  background: rgba(7, 31, 52, 0.92);
  padding: clamp(1rem, 3vw, 1.35rem);
  backdrop-filter: blur(8px);
}

.poster-copy strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.18;
}

.poster-copy small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.instagram-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 85% 0%, rgba(31, 143, 209, 0.28), transparent 35%), linear-gradient(135deg, var(--accent), rgba(15, 53, 87, 0.92));
  color: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 5vw, 2.5rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(27, 48, 34, 0.16);
}

.instagram-card span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.instagram-card strong {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.instagram-card p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.instagram-card em {
  border-radius: 999px;
  background: var(--primary);
  color: var(--accent);
  padding: 0.85rem 1.2rem;
  font-style: normal;
  font-weight: 800;
}

.reels-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 1rem;
}

.reels-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
}

.reels-head span {
  color: rgba(15, 53, 87, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.reel-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  overflow: hidden;
  border: 0;
  border-radius: 1.75rem;
  background: var(--white);
  color: var(--accent);
  padding: 0 0 1rem;
  text-align: left;
  box-shadow: 0 16px 44px rgba(27, 48, 34, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(27, 48, 34, 0.14);
}

.reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--accent-deep);
}

.reel-media i {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent);
  font-style: normal;
  font-size: 1.4rem;
}

.reel-card strong,
.reel-card small {
  padding-inline: 1rem;
}

.reel-card strong {
  margin-top: 0.7rem;
}

.reel-card small {
  color: rgba(15, 53, 87, 0.55);
}

.highlights,
.contact-band {
  background: var(--accent);
  color: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.highlights p,
.contact-card p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.76);
}

.highlight-list {
  display: grid;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  padding: 1.1rem;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.highlight-item span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.82rem;
}

.contact-band {
  padding: 0 0 5rem;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  backdrop-filter: blur(8px);
}

.contact-card p {
  margin-inline: auto;
}

.contact-card .button {
  margin-top: 1.4rem;
}

.site-footer {
  background: var(--accent-deep);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-image {
  position: relative;
  height: clamp(300px, 44vw, 420px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent), #6d561b);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.footer-image img {
  object-position: 72% center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.site-footer p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

address a {
  color: var(--primary);
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.credits {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.credits a {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.credits a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
  animation: pulseSoft 2.6s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(8, 12, 9, 0.86);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(900px, 100%);
  max-height: 82svh;
  display: grid;
  place-items: center;
}

.modal-content img,
.modal-content video {
  max-height: 82svh;
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.4);
}

.modal-title {
  margin: 1rem 0 0;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.media-fallback {
  position: relative;
}

.media-missing img {
  display: none;
}

.media-missing::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(31, 143, 209, 0.32), transparent 34%), linear-gradient(135deg, #0f3557, #1f8fd1);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  text-align: center;
  padding: 1rem;
}

.reel-card.media-missing::after {
  bottom: 4.5rem;
}

.video-poster.media-missing::after {
  z-index: 0;
}

.reveal-up,
.reveal-left {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-54px);
}

.reveal-up.is-visible,
.reveal-left.is-visible {
  opacity: 1;
  transform: translate(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.7rem);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: grid;
    visibility: hidden;
    gap: 0.35rem;
    max-height: calc(100svh - 96px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    background: rgba(7, 31, 52, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    padding: 1rem;
    opacity: 0;
    transform: translateY(-0.75rem);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    border-radius: 1rem;
    padding: 1rem;
  }

  .profile-card,
  .profile-topline,
  .section-heading.split,
  .highlights-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    text-align: center;
  }

  .profile-avatar {
    margin-inline: auto;
  }

  .profile-topline {
    display: grid;
  }

  .section-heading.split {
    align-items: start;
  }

  .section-heading.split p:not(.section-kicker) {
    margin-top: -1rem;
  }

  .reels-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    scroll-snap-type: x proximity;
  }

  .reel-card {
    min-width: 225px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.2rem, 1120px);
  }

  .section-pad {
    padding: 4rem 0;
  }

  .brand {
    max-width: 220px;
    letter-spacing: 0.16em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
    align-items: flex-start;
  }

  .hero-content {
    width: min(100% - 1.2rem, 860px);
    margin-top: 0;
    padding: 1.2rem 1rem;
    border-radius: 1.3rem;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .scroll-hint {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .video-poster {
    width: calc(100% - 1.2rem);
    aspect-ratio: 3 / 4;
    border-radius: 1.35rem;
  }

  .poster-copy {
    position: absolute;
    margin: 0.75rem;
    padding: 0.9rem;
  }

  .poster-copy strong {
    font-size: 1.1rem;
  }

  .poster-copy small {
    font-size: 0.82rem;
  }

  .poster-badge {
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .play-circle {
    width: 4rem;
    height: 4rem;
  }

  .reels-head {
    align-items: start;
    flex-direction: column;
  }

  .map-card iframe {
    height: 350px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
