:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --white: #f4f3ef;
  --pure-white: #ffffff;
  --gray: #a5a5a0;
  --line: rgba(244, 243, 239, 0.2);
  --page-pad: clamp(1rem, 4vw, 4.5rem);
  --max-width: 1440px;
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  pointer-events: none;
  content: "";
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, var(--max-width));
  min-height: 7.25rem;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-side {
  min-width: 0;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.5rem 0;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-link-back {
  justify-self: start;
}

.header-link svg {
  width: 1.1rem;
  transition: transform 180ms ease;
}

.header-link:hover svg,
.header-link:focus-visible svg {
  transform: translateX(0.2rem);
}

.header-link-back:hover svg,
.header-link-back:focus-visible svg {
  transform: translateX(-0.2rem);
}

.home-main,
.info-main,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.quick-nav {
  padding: 3.25rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.section-intro h1,
.work-heading h2,
.info-title h1,
.info-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-intro h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 8.5vw, 5.5rem);
  line-height: 0.98;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gray);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-note {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--gray);
  font-size: 0.83rem;
  line-height: 1.55;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 2rem;
}

.quick-links a {
  display: flex;
  min-width: 0;
  min-height: 5.75rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(0.64rem, 2.8vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.quick-links svg {
  width: 1.15rem;
  height: 1.15rem;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.work-section {
  padding: 4rem 0 5rem;
}

.work-heading {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.work-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 8vw, 4.5rem);
  line-height: 1;
}

.carousel-hint {
  display: none;
  margin: 0;
  color: var(--gray);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-hint {
  display: none;
}

.carousel-shell {
  width: min(100%, 28rem);
  margin-inline: auto;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #171717;
  outline: none;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.carousel:active {
  cursor: grabbing;
}

.carousel:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
}

.carousel-track.is-animating {
  transition: transform 620ms cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
  width: 100%;
  height: 100%;
  margin: 0;
  flex: 0 0 100%;
  user-select: none;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-controls {
  display: grid;
  grid-template-columns: 3.25rem 1fr 3.25rem;
  align-items: center;
  margin-top: 0.8rem;
}

.carousel-button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  place-items: center;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.carousel-button:focus-visible,
.quick-links a:focus-visible,
.header-link:focus-visible,
.action-button:focus-visible,
.phone-number:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.slide-count {
  margin: 0;
  color: var(--gray);
  font-size: 0.69rem;
  letter-spacing: 0.13em;
  text-align: center;
}

.current-slide {
  color: var(--white);
}

.carousel-progress {
  position: relative;
  height: 1px;
  margin-top: 0.8rem;
  overflow: hidden;
  background: var(--line);
}

.progress-fill {
  display: block;
  width: calc(100% / 12);
  height: 100%;
  background: var(--white);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.77, 0, 0.18, 1);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 6.5rem;
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 1.5rem;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.site-footer > a:last-child {
  justify-self: end;
}

.footer-signature {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: none;
}

.footer-signature a {
  display: inline;
  min-height: 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease;
}

.footer-signature a:hover,
.footer-signature a:focus-visible {
  border-color: currentColor;
}

.site-footer a span {
  margin-left: 0.4rem;
}

/* Informações */
.info-title {
  padding: 3.5rem 0 3.25rem;
}

.info-title h1 {
  font-size: clamp(3.4rem, 15vw, 8.5rem);
  line-height: 0.86;
}

.info-title > p:last-child {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-sections {
  border-top: 1px solid var(--line);
}

.info-section {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.75rem;
  min-height: 25rem;
  padding: 2rem 0 4rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 1rem;
}

.section-number {
  color: var(--gray);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.info-section-content {
  min-width: 0;
}

.info-section h2 {
  margin-bottom: 3.25rem;
  font-size: clamp(2.8rem, 13vw, 6.5rem);
  line-height: 0.9;
}

.hours-line {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hours-line span {
    color: var(--gray);
    font-size: 1.73rem; /* ALTERA AQUI PARA O CELULAR */
    letter-spacing: 0.1em;
}

.hours-line strong {
    font-weight: 400;
    font-size: 1.29rem; /* ALTERA AQUI PARA O CELULAR */
    letter-spacing: 0.02em;
}

.phone-number,
.info-section address {
  display: block;
  max-width: 22ch;
  margin: 0 0 2.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 7vw, 3rem);
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.phone-number {
  width: fit-content;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2rem;
}

.action-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.action-button {
  display: flex;
  width: 100%;
  min-height: 3.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.action-button-primary,
.action-button:hover,
.action-button:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.action-button-primary:hover,
.action-button-primary:focus-visible {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

@media (min-width: 700px) {
  .header-inner {
    min-height: 8.5rem;
  }

  .brand {
    width: 7.5rem;
    height: 7.5rem;
  }

  .quick-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.9fr);
    gap: 4rem;
    padding: 5.5rem 0;
    align-items: end;
  }

  .quick-links {
    margin-top: 0;
  }

  .quick-links a {
    min-height: 8.5rem;
    padding: 1.15rem;
  }

  .carousel-hint {
    display: block;
  }

  .mobile-hint {
    display: none;
  }

  .desktop-hint {
    display: inline;
  }

  .work-section {
    display: grid;
    grid-template-columns: minmax(15rem, 1fr) minmax(24rem, 28rem);
    gap: clamp(3rem, 9vw, 9rem);
    padding: 6.5rem 0 8rem;
    align-items: start;
  }

  .work-heading {
    position: sticky;
    top: 3rem;
    display: block;
    margin: 0;
  }

  .carousel-hint {
    margin-top: 2.5rem;
  }

  .info-title {
    padding: 6rem 0 5rem;
  }

  .info-title > p:last-child {
    margin-left: auto;
  }

  .info-section {
    grid-template-columns: 4rem minmax(0, 1fr);
    min-height: 34rem;
    padding: 3rem 0 5rem;
  }

  .info-section-content {
    display: grid;
    grid-template-columns: minmax(15rem, 0.9fr) minmax(19rem, 1fr);
    column-gap: 5rem;
    align-content: start;
  }

  .info-section-content > .eyebrow,
  .info-section-content > h2 {
    grid-column: 1;
  }

  .info-section-content > h2 {
    margin-bottom: 0;
  }

  .hours-line,
  .phone-number,
  .info-section address {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin-top: 0;
  }

  .header-inner {
        min-height: 8.5rem;
    }

    .hours-line span {
        font-size: 1.73rem;
    }

    .hours-line strong {
        font-size: 1.29rem;
    }
}

  .action-group {
    grid-column: 2;
    margin-top: 2.5rem;
  }


@media (min-width: 1100px) {
  .info-section-content {
    grid-template-columns: minmax(22rem, 1fr) minmax(25rem, 0.85fr);
    column-gap: 8rem;
  }

  .action-group {
    flex-direction: row;
  }

  .action-button {
    max-width: 15rem;
  }
}

@media (max-width: 420px) {
  .site-footer {
    grid-template-columns: 1fr auto;
    padding-block: 1.25rem;
  }

  .footer-signature {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .header-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-link svg {
    width: 1.35rem;
    height: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
