/* ==========================================================================
   Old School Bar — design system
   ========================================================================== */

:root {
  --black: #0b0b0c;
  --black-soft: #141414;
  --gray-dark: #1c1c1e;
  --gray-mid: #2a2a2c;
  --ivory: #f6f4ef;
  --ivory-dim: #e8e4da;
  --gold: #c99a3c;
  --gold-light: #d4af37;
  --gold-pale: #e8cf8a;
  --text-muted: #a8a49c;
  --text-muted-dark: #6b665e;

  --font-display: "Ubuntu", sans-serif;
  --font-script: "Sacramento", cursive;
  --font-body: "Work Sans", sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
svg { width: 100%; height: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- typography helpers ---------- */

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.eyebrow--light { color: var(--gold-pale); }
.eyebrow--dark { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}
.section-title--dark { color: var(--black); }
.section-title--white { color: var(--ivory); }
.section-title--sm { font-size: clamp(2.6rem, 2.6vw, 2.1rem); }

.script {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.3em;
  font-weight: 400;
  text-transform: none;
  padding: 0 0.05em;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.mark--dark { border-color: var(--black); color: var(--black); }
.mark--gold { border-color: var(--gold); color: var(--gold); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn--filled {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--filled:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn--outline-light { border-color: var(--ivory-dim); }
.btn--outline-light:hover { background: var(--ivory); color: var(--black); border-color: var(--ivory); }
.btn--outline-dark { color: var(--black); }
.btn--outline-dark:hover, .footer__social a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- loader ---------- */

.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 0.3em;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,11,12,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,154,60,0.35);
  transition: background 0.4s ease, padding 0.4s ease;
}
.header.is-scrolled { background: rgba(11,11,12,0.92); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header__logo { display: block; height: 46px; margin-right: auto; }
.header__logo img { height: 100%; width: auto; }

.header__burger {
  display: none;
  position: relative;
  width: 26px; height: 18px; flex-direction: column; justify-content: space-between;
  z-index: 20;
}
.header__burger span {
  display: block; height: 1.5px; width: 100%; background: var(--gold-light);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.header__burger.is-active span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

.nav__list { display: flex; gap: 2.1rem; }
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold-light); transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
}

.hero__slider { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08) brightness(1);
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
video.hero__slide { width: 100%; height: 100%; object-fit: cover; background: var(--black); }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(11,11,12,0.2) 0%, rgba(11,11,12,0.55) 65%, rgba(11,11,12,0.8) 100%),
    linear-gradient(180deg, rgba(11,11,12,0.4) 0%, rgba(11,11,12,0.12) 30%, rgba(11,11,12,0.6) 100%);
}

.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

.hero__logo {
  width: clamp(200px, 30vw, 460px);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 55px rgba(201,154,60,0.4)) drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

.hero__textbox {
  background: rgba(11,11,12,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,154,60,0.35);
  border-bottom: 1px solid rgba(201,154,60,0.35);
  padding: 1.6rem clamp(1.5rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__tagline {
  max-width: 560px;
  color: var(--ivory);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 2.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232,207,138,0.5);
  color: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.slider-arrow svg { width: 18px; height: 18px; }
.slider-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.slider-arrow--prev { left: clamp(0.6rem, 2vw, 2.5rem); }
.slider-arrow--next { right: clamp(0.6rem, 2vw, 2.5rem); }
.slider-arrow--dark { border-color: rgba(11,11,12,0.35); color: var(--black); }
.slider-arrow--dark:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }

.hero__dots {
  position: absolute; bottom: 6.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 4;
}
.hero__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--gold-pale);
  transition: background 0.3s ease;
}
.hero__dots span.is-active { background: var(--gold-light); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================================================
   About / Quem Somos
   ========================================================================== */

.about {
  position: relative;
  background: var(--ivory);
  color: var(--black);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.about__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__text { color: var(--text-muted-dark); max-width: 480px; margin-bottom: 2rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}
.feature-card__icon {
  width: 42px; height: 42px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.feature-card p {
  color: var(--text-muted-dark);
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   Galeria
   ========================================================================== */

.gallery {
  position: relative;
  scroll-margin-top: 5rem;
  background: var(--black-soft);
  color: var(--ivory);
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.gallery__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.gallery__head .mark { margin-bottom: 0; }
.gallery__head .section-title { margin-bottom: 0; }

.gallery__stage {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gallery__arrow, .testimonials__arrow {
  position: static;
  flex-shrink: 0;
}

.gallery__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(4px, 0.6vw, 10px);
}

.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-dark);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(11,11,12,0);
  transition: background 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { background: rgba(11,11,12,0.25); }
.gallery__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-modal {
  position: fixed; inset: 0;
  z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-modal.is-open {
  opacity: 1; visibility: visible;
}
.gallery-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 6, 7, 0.9);
  backdrop-filter: blur(6px);
}
.gallery-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 960px);
  width: 100%;
}
.gallery-modal__content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}
.gallery-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.78);
  border: 1px solid rgba(201, 154, 60, 0.36);
  color: var(--ivory);
  font-size: 1.45rem;
  line-height: 1;
}
.gallery-modal__close:hover {
  background: rgba(201, 154, 60, 0.95);
  color: var(--black);
}

.gallery__dots, .testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.gallery__dots span, .testimonials__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  transition: background 0.3s ease;
}
.gallery__dots span.is-active { background: var(--gold); }

/* ==========================================================================
   Depoimentos
   ========================================================================== */

.testimonials {
  position: relative;
  scroll-margin-top: 5rem;
  background: var(--ivory);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 1px solid rgba(201,154,60,0.15);
}

.testimonials__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.6rem;
}
.testimonials__head .mark { margin-bottom: 1rem; }
.testimonials__head .eyebrow { margin-bottom: 0.6rem; }
.testimonials__head .section-title { margin-bottom: 0; }

.testimonials__stage {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.testimonials__track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.testimonial-card {
  background: var(--gray-dark);
  border: 1px solid rgba(201,154,60,0.18);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.testimonial-card__quote {
  width: 28px; height: 28px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.testimonial-card__stars {
  color: var(--gold-light);
  font-size: 1.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.testimonial-card__text {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin: 0 0 1.6rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: block;
  overflow: hidden;
  background: var(--black);
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__author strong {
  display: block;
  color: var(--ivory);
  font-size: 0.92rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.testimonial-card__author span { color: var(--text-muted); font-size: 0.78rem; }
.testimonials__dots span.is-active { background: var(--gold); }

/* ==========================================================================
   Serviços
   ========================================================================== */

.services {
  position: relative;
  background: var(--black);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.services__corner {
  position: absolute;
  left: 0; bottom: 0;
  width: clamp(140px, 16vw, 220px);
  z-index: 0;
  opacity: 0.22;
  filter: grayscale(0.3);
  mask-image: linear-gradient(135deg, black 20%, transparent 75%);
  -webkit-mask-image: linear-gradient(135deg, black 20%, transparent 75%);
  pointer-events: none;
}

.services__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.services__text { color: var(--text-muted); max-width: 480px; margin-bottom: 2rem; }

.services__right { display: flex; flex-direction: column; gap: 1.4rem; }

.service-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(201,154,60,0.25);
  border-radius: 8px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.service-item:hover { border-color: var(--gold); background: rgba(201,154,60,0.06); transform: translateX(6px); }
.service-item__img {
  width: 92px; height: 92px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
}
.service-item__img img { width: 100%; height: 100%; object-fit: cover; }
.service-item__info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 0.35rem;
}
.service-item__info span { color: var(--text-muted); font-size: 0.85rem; }

/* ==========================================================================
   CTA Orçamento
   ========================================================================== */

.cta {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.7);
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.88) 0%, rgba(11,11,12,0.94) 100%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 1.3rem;
}

.cta__text {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 560px;
  margin: 0 0 2.4rem;
}

.btn--xl {
  padding: 1.3rem 3rem;
  font-size: 1rem;
  gap: 0.8rem;
}
.btn--xl svg { width: 3rem; height: 3rem; }

.cta__contact-line {
  margin: 1.6rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Modal de orçamento
   ========================================================================== */

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,4,0.78);
  backdrop-filter: blur(10px);
}

.quote-modal__panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background:
    linear-gradient(145deg, rgba(26,26,28,0.98), rgba(10,10,11,0.98)),
    var(--black);
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 14px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.58);
  padding: clamp(1.35rem, 4vw, 2.6rem);
}

.quote-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,175,55,0.34);
  border-radius: 50%;
  color: var(--gold-pale);
  font-size: 1.55rem;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.quote-modal__close:hover {
  background: var(--gold);
  color: var(--black);
  transform: rotate(90deg);
}

.quote-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 3rem 0.9rem 0;
  color: var(--ivory);
}

.quote-modal__text {
  max-width: 560px;
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__field span {
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(232,207,138,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.085);
  box-shadow: 0 0 0 3px rgba(201,154,60,0.14);
}

.quote-form input::placeholder {
  color: rgba(232,228,218,0.42);
}

.quote-form select option {
  background: var(--black);
  color: var(--ivory);
}

.quote-form__submit {
  align-self: flex-start;
  min-height: 3.35rem;
}

.quote-form__submit svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* ==========================================================================
   Reconhecimento
   ========================================================================== */

.recognition { background: var(--black-soft); padding: clamp(3.5rem, 6vw, 5rem) 0; border-top: 1px solid rgba(201,154,60,0.15); border-bottom: 1px solid rgba(201,154,60,0.15); }
.recognition__inner { text-align: center; }
.recognition__title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold-pale);
  margin: 0 0 2.6rem;
}
.recognition__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.recognition__badge {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.recognition__badge:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); }
.recognition__badge img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 50%;
  border: 1px solid var(--gold);
}
.recognition__badge span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.recognition__badge--stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  background: var(--black);
  padding-top: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.footer__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  filter: grayscale(0.4);
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.4), rgba(11,11,12,0.97));
}

.footer__grid {
  position: relative; z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(4rem, 10vw, 8rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,154,60,0.15);
  text-align: center;
}

.footer__col h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.footer__col a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.3s ease; }
.footer__col a:hover { color: var(--gold-pale); }

.footer__info-list li {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  color: var(--text-muted); font-size: 0.85rem;
}
.footer__info-list svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

.footer__brand {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2.2rem 0;
}
.footer__logo { height: 40px; width: auto; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,154,60,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-pale);
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__bottom {
  position: relative; z-index: 1;
  text-align: center;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bottom p { margin: 0; font-size: 0.78rem; color: var(--text-muted-dark); letter-spacing: 0.04em; }

/* ==========================================================================
   Scroll reveal base states (GSAP toggles these via inline transforms,
   these are just safe fallbacks / initial paint states)
   ========================================================================== */

[data-reveal], [data-reveal-delay], [data-reveal-stagger] {
  will-change: transform, opacity;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .about__grid, .services__grid { grid-template-columns: 1fr; }
  .about__right { margin-top: 1rem; }
  .services__right { margin-top: 1rem; }
  .testimonials__track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
    position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  }
  .header__inner { justify-content: center; }
  .header__logo { margin-right: 0; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(11,11,12,0.98);
    border-left: 1px solid rgba(201,154,60,0.3);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: flex; align-items: center;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 2rem; padding: 0 2.5rem; }
  .nav__link { font-size: 0.95rem; }

  .feature-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .recognition__row { gap: 2.2rem; }
  .services__corner { display: none; }
  .footer__brand { flex-direction: column; gap: 1.2rem; text-align: center; }

  .gallery__stage { gap: 0.5rem; }
  .gallery__arrow, .testimonials__arrow {
  width: 36px;
  height: 36px;
}
  .gallery__arrow svg, .testimonials__arrow svg, .slider-arrow svg {
  width: 14px;
  height: 14px;
}

  .testimonials__stage { gap: 0.5rem; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding: 5.25rem 0 5rem;
    align-items: center;
  }

  .hero__center {
    padding-top: 0;
    padding-bottom: 4.25rem;
  }

  .hero__logo {
    width: clamp(150px, 44vw, 190px);
    margin-bottom: 0.8rem;
  }

  .hero__textbox {
    width: min(100%, 320px);
    padding: 1.25rem 1rem 1.45rem;
  }

  .hero__tagline {
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    justify-content: center;
    width: 100%;
    min-height: 3.35rem;
    padding: 0.85rem 1rem;
  }

  .hero__dots {
    bottom: 4.45rem;
  }

  .scroll-cue {
    bottom: 1.2rem;
    font-size: 0.6rem;
    gap: 0.35rem;
  }

  .scroll-cue span {
    height: 22px;
  }

  .slider-arrow { width: 38px; height: 38px; }
  .footer__grid { flex-direction: column; align-items: center; gap: 2.5rem; }

  .gallery {
    padding-top: 4rem;
  }

  .gallery__head {
    justify-content: center;
    margin-bottom: 1.6rem;
  }

  .gallery__stage {
    position: relative;
    display: block;
    padding: 0 var(--gutter);
  }

  .gallery__grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .gallery__arrow {
    position: absolute;
    top: calc(100% + 1.6rem);
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(11,11,12,0.72);
    border-color: rgba(201,154,60,0.4);
    color: var(--gold-pale);
  }

  .gallery__arrow--prev {
    left: calc(50% - 5.1rem);
  }

  .gallery__arrow--next {
    right: calc(50% - 5.1rem);
  }

  .gallery__dots {
    min-height: 38px;
    align-items: center;
    margin-top: 0.6rem;
    padding: 0 4.8rem;
  }

  .gallery__dots span, .testimonials__dots span {
  width: 7px;
  height: 7px;
  }

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

  .testimonials {
    padding: 3.25rem 0 3rem;
  }

  .testimonials__head {
    margin-bottom: 1.4rem;
  }

  .testimonials__head .mark {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .testimonials__head .eyebrow {
    display: none;
  }

  .testimonials__head .section-title {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1;
  }

  .testimonials__stage {
    position: relative;
    display: block;
  }

  .testimonials__track {
    max-width: 330px;
    margin: 0 auto;
  }

  .testimonial-card {
    border-radius: 8px;
    padding: 1.25rem 1.2rem;
  }

  .testimonial-card__quote {
    width: 20px;
    height: 20px;
    margin-bottom: 0.65rem;
  }

  .testimonial-card__stars {
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
  }

  .testimonial-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .testimonial-card__author {
    gap: 0.7rem;
  }

  .testimonial-card__avatar {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .testimonial-card__author strong {
    font-size: 0.78rem;
  }

  .testimonial-card__author span {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .testimonials__arrow {
    position: absolute;
    top: calc(100% + 1.6rem);
    z-index: 2;
    width: 38px;
    height: 38px;
    background: var(--ivory);
    border-color: rgba(11,11,12,0.24);
    color: var(--gold);
  }

  .testimonials__arrow--prev {
    left: calc(50% - 5.1rem);
  }

  .testimonials__arrow--next {
    right: calc(50% - 5.1rem);
  }

  .testimonials__dots {
    min-height: 38px;
    align-items: center;
    margin-top: 0.7rem;
    padding: 4px;
  }

  .quote-modal {
    padding: 0.75rem;
    align-items: end;
  }

  .quote-modal__panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 14px 14px 0 0;
    padding: 1.35rem 1rem 1rem;
  }

  .quote-modal__title {
    margin-right: 2.6rem;
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .quote-modal__text {
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .quote-form input,
  .quote-form select {
    min-height: 3rem;
  }

  .quote-form__submit {
    width: 100%;
    justify-content: center;
  }
}
