/* ==========================================================================
   SARB OFFICE — Landing Page
   Design tokens, layout, componentes e animações
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOKENS / RESET
   -------------------------------------------------------------------------- */
:root {
  /* Paleta extraída da identidade visual SARB Office */
  --navy: #0d1a2b;
  --navy-2: #142236;
  --navy-3: #1c2e46;
  --gold: #c9975e;
  --gold-light: #e0bd8c;
  --gold-dark: #a97a44;
  --ivory: #f7f2e9;
  --ivory-2: #efe6d4;
  --white: #ffffff;
  --ink: #12213a;
  --ink-soft: #5b6577;
  --line: rgba(13, 26, 43, 0.1);
  --line-light: rgba(247, 242, 233, 0.16);

  /* Tipografia */
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;

  /* Ritmo */
  --container: 1280px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 20px 60px -20px rgba(13, 26, 43, 0.25);
  --shadow-strong: 0 30px 80px -20px rgba(13, 26, 43, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

::selection { background: var(--gold); color: var(--navy); }

/* Foco visível para acessibilidade / navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Scrollbar refinada */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; border: 2px solid var(--ivory); }

/* --------------------------------------------------------------------------
   02. TIPOGRAFIA
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.on-dark .eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 0.9rem;
}
.on-dark .section-title { color: var(--ivory); }

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
}
.on-dark .section-lede { color: rgba(247, 242, 233, 0.72); }

.section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-head.center { align-items: center; text-align: center; }
.section-head.split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 780px) {
  .section-head.split { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   03. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  isolation: isolate;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.4s var(--ease); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 12px 30px -10px rgba(201, 151, 94, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(201, 151, 94, 0.7); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--navy);
}
.on-dark .btn-ghost, .btn-ghost.light { color: var(--ivory); }
.btn-ghost:hover { background: rgba(13, 26, 43, 0.06); transform: translateY(-3px); }
.on-dark .btn-ghost:hover, .btn-ghost.light:hover { background: rgba(247, 242, 233, 0.12); }

.btn-block { width: 100%; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-anim 0.65s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(3.2); opacity: 0; }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.text-link:hover { color: var(--gold-dark); border-color: var(--gold); gap: 0.8rem; }
.on-dark .text-link { color: var(--ivory); border-color: var(--line-light); }
.on-dark .text-link:hover { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   04. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9999;
}

/* --------------------------------------------------------------------------
   06. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding 0.5s var(--ease), background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-scrolled {
  padding: 1rem 0;
  background: rgba(247, 242, 233, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 40px -20px rgba(13, 26, 43, 0.25);
  border-bottom: 1px solid rgba(13, 26, 43, 0.06);
}

.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; transition: opacity 0.4s var(--ease); }
.logo-dark { display: none; }
.logo-light { display: block; }
.site-header.is-scrolled .logo-dark { display: block; }
.site-header.is-scrolled .logo-light { display: none; }

.nav-desktop { display: flex; align-items: center; gap: 2.4rem; }
.nav-desktop a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
  padding: 0.3rem 0;
  transition: color 0.35s var(--ease);
}
.site-header.is-scrolled .nav-desktop a { color: var(--navy); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a:hover { color: var(--gold-light); }
.site-header.is-scrolled .nav-desktop a:hover { color: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.08);
  align-items: center;
}
.site-header.is-scrolled .burger { border-color: var(--line); background: rgba(13, 26, 43, 0.05); }
.burger span { width: 18px; height: 1.5px; background: var(--ivory); transition: all 0.35s var(--ease); }
.site-header.is-scrolled .burger span { background: var(--navy); }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .header-actions .btn-primary { display: none; }
  .burger { display: flex; }
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 8vw, 4rem);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 1.8rem; right: clamp(1.25rem, 6vw, 3rem);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  color: var(--ivory);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}
.mobile-menu nav a span { display: inline-block; transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.mobile-menu nav a:hover span { transform: translateX(10px); color: var(--gold); }
.mobile-menu-foot {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.mobile-menu-foot .btn-primary { flex: 1; min-width: 200px; }

/* --------------------------------------------------------------------------
   07. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 6rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.12);
  animation: kenburns 12s ease-in-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12) translate(0, 0); }
  to { transform: scale(1.0) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 15%, rgba(13, 26, 43, 0.35), transparent 60%),
    linear-gradient(200deg, rgba(13, 26, 43, 0.94) 8%, rgba(13, 26, 43, 0.72) 40%, rgba(13, 26, 43, 0.55) 65%, rgba(13, 26, 43, 0.88) 100%);
  z-index: 1;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.hero-shape.s1 {
  width: 340px; height: 340px;
  top: -80px; right: 8%;
  border: 1px solid rgba(201, 151, 94, 0.35);
  filter: none;
}
.hero-shape.s2 {
  width: 10px; height: 10px;
  background: var(--gold);
  top: 30%; left: 6%;
  box-shadow: 0 0 40px 10px rgba(201, 151, 94, 0.5);
}
.hero-shape.s3 {
  width: 180px; height: 180px;
  border: 1px solid rgba(247, 242, 233, 0.14);
  bottom: 12%; left: 12%;
  filter: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-copy .eyebrow { color: var(--gold-light); margin-bottom: 1.4rem; }
.hero-title {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(115%); }
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  margin-top: 1.6rem;
  max-width: 46ch;
  color: rgba(247, 242, 233, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  opacity: 0;
}

.hero-ctas {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

.hero-meta {
  margin-top: 3.2rem;
  display: flex;
  gap: 2.4rem;
  opacity: 0;
}
.hero-meta div { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-light);
}
.hero-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, 0.55);
}

/* Floating video card no hero */
.hero-video-card {
  position: relative;
  justify-self: center;
  width: min(300px, 100%);
  aspect-ratio: 9 / 15.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.18);
  box-shadow: var(--shadow-strong);
  background: var(--navy-2);
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(1.2deg); }
  50% { transform: translateY(-18px) rotate(-1deg); }
}
.hero-video-card video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-card .glass-tag {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}
.hero-video-card .glass-tag i {
  width: 7px; height: 7px; border-radius: 50%; background: #ff5c5c;
  box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 92, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 92, 0); }
}
.hero-video-card .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.9);
  color: var(--navy);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.hero-video-card .play-btn svg { width: 20px; height: 20px; margin-left: 2px; }
.hero-video-card:hover .play-btn { transform: scale(1.1); background: var(--gold); }
.hero-video-card figcaption {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-video-card figcaption small {
  display: block;
  font-weight: 400;
  font-size: 0.68rem;
  color: rgba(247, 242, 233, 0.65);
  margin-top: 0.15rem;
}
.hero-video-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 26, 43, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-video-card > * { position: relative; z-index: 2; }
.hero-video-card video { position: absolute; inset: 0; z-index: 0; }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(247, 242, 233, 0.6);
}
.scroll-cue span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; }
.scroll-cue .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(247, 242, 233, 0.45);
  border-radius: 20px;
  position: relative;
}
.scroll-cue .mouse::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 6px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 6px; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-video-card { width: min(220px, 60%); margin-top: 2.5rem; }
  .hero-meta { gap: 1.6rem; flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   08. GLASS CARD BASE
   -------------------------------------------------------------------------- */
.glass {
  background: rgba(247, 242, 233, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.glass-dark {
  background: rgba(20, 34, 54, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(247, 242, 233, 0.12);
}

/* --------------------------------------------------------------------------
   09. SECTIONS — genérico
   -------------------------------------------------------------------------- */
section { position: relative; }
.section-pad { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: var(--ivory); }
.bg-navy-grad { background: radial-gradient(120% 140% at 100% 0%, var(--navy-3), var(--navy) 60%); color: var(--ivory); }

.divider-svg { display: block; width: 100%; line-height: 0; }
.divider-svg svg { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   10. SERVIÇOS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: 2.6rem 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(201, 151, 94, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201, 151, 94, 0.4);
}
.service-card:hover::before { opacity: 1; }
.service-card .num {
  position: absolute; top: 1.6rem; right: 1.8rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ivory-2);
  z-index: 0;
}
.service-icon {
  position: relative; z-index: 1;
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-3));
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  transition: transform 0.5s var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }
.service-card h3 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.service-card p { position: relative; z-index: 1; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }
.service-card .text-link { position: relative; z-index: 1; margin-top: 1.6rem; }

/* --------------------------------------------------------------------------
   11. DIFERENCIAIS
   -------------------------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-item {
  background: var(--ivory);
  padding: 2.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: background 0.4s var(--ease);
}
.diff-item:hover { background: var(--white); }
.diff-item .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(201, 151, 94, 0.35);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.diff-item .ic svg { width: 20px; height: 20px; }
.diff-item:hover .ic { background: var(--navy); color: var(--gold-light); transform: translateY(-4px); }
.diff-item h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); }
.diff-item p { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.6; }

/* --------------------------------------------------------------------------
   12. GALERIA
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.filter-btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--ivory); }

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.8rem;
}
@media (max-width: 1180px) { .masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .masonry { grid-template-columns: repeat(2, 1fr); } }

.masonry-item {
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--navy);
  opacity: 0;
  transform: translateY(30px);
}
.masonry-item.is-hidden { display: none; }
.masonry-item img, .masonry-item video {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s ease;
}
.masonry-item:hover img,
.masonry-item:hover video { transform: scale(1.08); }
.masonry-item .m-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 26, 43, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  color: var(--ivory);
}
.masonry-item:hover .m-overlay { opacity: 1; }
.masonry-item .m-overlay span.tag {
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.masonry-item .m-overlay strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.masonry-item .zoom-ic {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.16);
  border: 1px solid rgba(247, 242, 233, 0.35);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s var(--ease);
}
.masonry-item .zoom-ic svg { width: 16px; height: 16px; }
.masonry-item:hover .zoom-ic { opacity: 1; transform: scale(1); }
.masonry-item .play-ic {
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(247, 242, 233, 0.92);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.masonry-item .play-ic svg { width: 18px; height: 18px; margin-left: 2px; }

/* --------------------------------------------------------------------------
   13. SOBRE
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }

.about-media { position: relative; }
.about-media .frame-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.about-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media .frame-float {
  position: absolute;
  width: 46%;
  bottom: -8%; left: -12%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/3.4;
}
.about-media .frame-float img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 560px) {
  .about-media .frame-float { width: 52%; left: -6%; bottom: -6%; }
}

.about-copy p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-top: 1.4rem;
}
.about-list { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.95rem; color: var(--ink);
}
.about-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }

/* --------------------------------------------------------------------------
   14. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testi-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 940px) { .testi-wrap { grid-template-columns: 1fr; } }

.testi-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/14;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(247, 242, 233, 0.14);
  background: var(--navy-2);
}
.testi-video video { width: 100%; height: 100%; object-fit: cover; }
.testi-video .play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 70px; height: 70px; border: 0; border-radius: 50%;
  background: rgba(247, 242, 233, 0.92);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background .4s var(--ease);
}
.testi-video .play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.testi-video .play-btn:hover { transform: scale(1.08); background: var(--gold); }
.testi-video.is-playing .play-btn { opacity: 0; pointer-events: none; }
.testi-video .mute-btn {
  position: absolute; bottom: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,26,43,0.55);
  border: 1px solid rgba(247,242,233,0.3);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.testi-video .mute-btn svg { width: 16px; height: 16px; }

.testi-copy .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}
.testi-copy p.big {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  color: var(--ivory);
  font-weight: 400;
}
.testi-copy p.big em { color: var(--gold-light); font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.testi-author .av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--navy);
}
.testi-author strong { display: block; color: var(--ivory); font-size: 0.98rem; }
.testi-author span { display: block; font-size: 0.78rem; color: rgba(247,242,233,0.6); margin-top: 0.15rem; }

/* --------------------------------------------------------------------------
   15. CTA
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 clamp(1rem, 4vw, 3rem);
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,26,43,0.92), rgba(13,26,43,0.85) 60%, rgba(13,26,43,0.96));
}
.cta-inner .section-title { max-width: 18ch; }
.cta-inner .section-lede { max-width: 52ch; text-align: center; }
.cta-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-inner .eyebrow::before, .cta-inner .eyebrow::after { background: var(--gold); }

/* --------------------------------------------------------------------------
   16. CONTATO
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2.2rem; }
.contact-info-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.contact-info-item .ic {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy), var(--navy-3));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .ic svg { width: 22px; height: 22px; }
.contact-info-item h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }
.contact-info-item a:hover { color: var(--gold-dark); }

.quick-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.quick-actions .btn { flex: 1; min-width: 165px; }

.contact-map-col { min-height: 420px; }
.map-frame {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  filter: grayscale(0.25) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(247, 242, 233, 0.7); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 242, 233, 0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: auto; height: 32px; object-fit: contain; margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 32ch; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(247, 242, 233, 0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

.footer-col h5 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col a:hover { color: var(--ivory); padding-left: 4px; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.6rem 0 2.2rem;
  font-size: 0.78rem;
  color: rgba(247, 242, 233, 0.45);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   18. FLOATING WHATSAPP + BACK TO TOP
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  border: none;
  transition: transform 0.4s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-whatsapp svg { width: 26px; height: 26px; }
.fab-top {
  background: var(--navy); color: var(--ivory);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.fab-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   19. LIGHTBOX (glightbox overrides sutis)
   -------------------------------------------------------------------------- */
.gscrollbar-fixer { --gutter: 0 !important; }
.glightbox-clean .gslide-description { background: var(--navy); }

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL UTILITIES (GSAP alvo)
   -------------------------------------------------------------------------- */
.reveal-up { opacity: 0; transform: translateY(48px); }
.reveal-fade { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(0.92); }
.reveal-left { opacity: 0; transform: translateX(-48px); }
.reveal-right { opacity: 0; transform: translateX(48px); }

/* fallback caso JS não carregue */
.no-js .reveal-up, .no-js .reveal-fade, .no-js .reveal-scale, .no-js .reveal-left, .no-js .reveal-right {
  opacity: 1; transform: none;
}

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