/* reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: #0d0d0d;
  color: #ffffff;
  overflow-x: hidden;
  cursor: none;
}

a,
button,
[role="button"] {
  cursor: none;
}

::selection {
  background: #ff6a00;
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

/* cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
}
.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ff6a00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
}
.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 106, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    width 0.3s,
    height 0.3s;
  animation: rgbBorder 3s linear infinite;
}
body.cursor-hover .cursor__dot {
  width: 10px;
  height: 10px;
}
body.cursor-hover .cursor__ring {
  width: 56px;
  height: 56px;
  box-shadow:
    0 0 15px rgba(255, 106, 0, 0.4),
    0 0 40px rgba(100, 50, 255, 0.15);
}

/* loader */
.loader {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  width: 130px;
  height: auto;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
.loader__bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}
.loader__bar {
  height: 100%;
  width: 0%;
  background: #ff6a00;
  border-radius: 9999px;
  animation: loaderBar 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.2s;
}
@keyframes loaderBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.loader__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(188, 188, 188, 0.5);
}

/* page transition */
.page-transition {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9997;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.page-transition.entering {
  opacity: 1;
  pointer-events: all;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition:
    background 0.4s,
    padding 0.4s;
}
.header.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 5%;
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}
.header__logo img {
  height: 100px;
  width: auto;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav a {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bcbcbc;
  position: relative;
  transition: color 0.2s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff6a00;
  transition: width 0.4s;
}
.header__nav a:hover,
.header__nav a.active {
  color: #ffffff;
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 6px 12px;
  color: #bcbcbc;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.4s;
}
.btn-lang img {
  width: 18px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.btn-lang:hover {
  border-color: #ff6a00;
  color: #ffffff;
}
.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff6a00;
  border: 1px solid #ff6a00;
  border-radius: 4px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.4s;
  animation: rgbPulse 4s linear infinite;
}
.btn-contact:hover {
  background: transparent;
  color: #ff6a00;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.header__hamburger span {
  display: block;
  height: 1.5px;
  background: #ffffff;
  transition: 0.4s;
}
.header__hamburger span:nth-child(1) {
  width: 100%;
}
.header__hamburger span:nth-child(2) {
  width: 70%;
}
.header__hamburger span:nth-child(3) {
  width: 50%;
}

/* menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #111111;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 4rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.menu-overlay.open {
  transform: translateX(0);
}
.menu-overlay__logo {
  margin-bottom: 2rem;
}
.menu-overlay__logo img {
  height: 60px;
  width: auto;
}
.menu-overlay__close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 8px;
  transition: 0.3s;
}
.menu-overlay__close:hover {
  color: #ff6a00;
  transform: rotate(90deg);
}
.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  height: 100%;
}
.menu-overlay__nav a {
  font-family: "Quintessential", cursive;
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: #ffffff;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    color 0.3s,
    opacity 0.5s,
    transform 0.5s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1rem;
}
.menu-overlay.open .menu-overlay__nav a {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay.open .menu-overlay__nav a:nth-child(1) {
  transition-delay: 0.15s;
}
.menu-overlay.open .menu-overlay__nav a:nth-child(2) {
  transition-delay: 0.25s;
}
.menu-overlay.open .menu-overlay__nav a:nth-child(3) {
  transition-delay: 0.35s;
}
.menu-overlay__nav a:hover {
  color: #ff6a00;
}
.menu-overlay__contacts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: auto;
}
.menu-overlay__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #bcbcbc;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    color 0.3s,
    opacity 0.5s,
    transform 0.5s;
}
.menu-overlay.open .menu-overlay__contact-item {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay.open .menu-overlay__contact-item:nth-child(1) {
  transition-delay: 0.4s;
}
.menu-overlay.open .menu-overlay__contact-item:nth-child(2) {
  transition-delay: 0.5s;
}
.menu-overlay.open .menu-overlay__contact-item:nth-child(3) {
  transition-delay: 0.6s;
}
.menu-overlay__contact-item:hover {
  color: #ffffff;
}
.menu-overlay__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #ff6a00;
}
.menu-overlay__address {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(188, 188, 188, 0.4);
  opacity: 0;
  transition: opacity 0.5s 0.7s;
}
.menu-overlay.open .menu-overlay__address {
  opacity: 1;
}
.menu-overlay__lang {
  margin-top: 1rem;
}

/* botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #ffffff;
}
.btn-primary:hover {
  background: transparent;
  color: #ff6a00;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.btn-outline:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}
.btn-arrow::after {
  content: "→";
  transition: transform 0.2s;
}
.btn-arrow:hover::after {
  transform: translateX(6px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  border: 1px solid #25d366;
  border-radius: 4px;
  padding: 14px 24px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  transition: 0.4s;
}
.btn-whatsapp:hover {
  background: transparent;
  color: #25d366;
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* seções */
.section {
  position: relative;
  padding: 6rem 5%;
}
.section--alt1 {
  background: #111111;
}
.section--alt2 {
  background: #141414;
}
.section--alt3 {
  background: #1a1a1a;
}
.section--dark {
  background: #0d0d0d;
}
.section--pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='rgba(255,106,0,0.04)' stroke-width='1'%3E%3Cpath d='M30 5 L30 55 M5 30 L55 30 M15 8 L45 52 M45 8 L15 52'/%3E%3Ccircle cx='30' cy='30' r='12' opacity='0.5'/%3E%3Cpath d='M20 20 L20 40 L40 40 L40 20 Z' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.section__eyebrow {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #ff6a00;
}
.section__title {
  font-family: "Quintessential", cursive;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-weight: 500;
  font-size: 1.125rem;
  color: #bcbcbc;
  max-width: 560px;
  line-height: 1.7;
}

/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0d0d0d;
}
.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s;
}
.hero__slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.hero__slide.leaving {
  opacity: 0;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.45);
}
.hero__slide.active .hero__bg {
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.2) 0%,
    rgba(13, 13, 13, 0.1) 40%,
    rgba(13, 13, 13, 0.6) 80%,
    rgba(13, 13, 13, 0.95) 100%
  );
  z-index: 1;
}
.hero__clip-overlay {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
  z-index: 3;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.hero__clip-overlay.transitioning {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero__clip-overlay.done {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  max-width: 900px;
}
.hero__eyebrow {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}
.hero__title {
  font-family: "Quintessential", cursive;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s,
    filter 0.7s ease 0.35s;
}
.hero__subtitle {
  font-weight: 500;
  font-size: 1.125rem;
  color: #bcbcbc;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.5s,
    transform 0.6s ease 0.5s;
}
.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.65s,
    transform 0.6s ease 0.65s;
}
.hero__slide.active .hero__eyebrow,
.hero__slide.active .hero__title,
.hero__slide.active .hero__subtitle,
.hero__slide.active .hero__cta {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero__nav {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.hero__dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #ff6a00;
  transition: width 0s;
}
.hero__dot.active {
  background: rgba(255, 255, 255, 0.1);
  width: 56px;
}
.hero__dot.active::after {
  width: 100%;
  transition: width 5s linear;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #bcbcbc;
}
.hero__scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #ff6a00, transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* sobre preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-preview__number {
  font-family: "Quintessential", cursive;
  font-size: clamp(6rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 106, 0, 0.4);
  line-height: 1;
  margin-bottom: 1rem;
}
.about-preview__years {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff6a00;
}
.about-preview__image {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.8s;
}
.about-preview__image:hover img {
  transform: scale(1.05);
}
.about-preview__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 106, 0, 0.2);
  pointer-events: none;
}

/* serviços */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff6a00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.04);
  transform: translateY(-6px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: 0.4s;
}
.service-card:hover .service-card__icon {
  background: rgba(255, 106, 0, 0.2);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: #ff6a00;
}
.service-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.875rem;
  color: #bcbcbc;
  line-height: 1.6;
}

/* galeria fullwidth */
.gallery-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.gallery-fullwidth .gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-fullwidth .gallery__item:nth-child(1) {
  grid-column: span 2;
  height: 500px;
}
.gallery-fullwidth .gallery__item:nth-child(2) {
  height: 500px;
}
.gallery-fullwidth .gallery__item:nth-child(3),
.gallery-fullwidth .gallery__item:nth-child(4),
.gallery-fullwidth .gallery__item:nth-child(5) {
  height: 320px;
}
.gallery-fullwidth .gallery__item:nth-child(6) {
  height: 500px;
}
.gallery-fullwidth .gallery__item:nth-child(7) {
  grid-column: span 2;
  height: 500px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: #141414;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s,
    filter 0.4s;
  filter: brightness(0.7);
}
.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 106, 0, 0.4) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  pointer-events: none;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.gallery__overlay-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  flex-direction: column;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 75vh;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.lightbox__info {
  margin-top: 1.5rem;
  text-align: center;
}
.lightbox__title {
  font-family: "Quintessential", cursive;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.lightbox__caption {
  font-size: 0.875rem;
  color: #bcbcbc;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
  z-index: 10;
  cursor: none;
}
.lightbox__close:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: none;
  z-index: 10;
}
.lightbox__prev {
  left: 1.5rem;
}
.lightbox__next {
  right: 1.5rem;
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 106, 0, 0.3);
  border-color: #ff6a00;
}
.lightbox__prev svg,
.lightbox__next svg {
  width: 20px;
  height: 20px;
}

/* stats */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem;
  border: 1px solid rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  transition: 0.4s;
}
.stat-item:hover {
  border-color: rgba(255, 106, 0, 0.4);
}
.stat-item__number {
  font-family: "Quintessential", cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #ff6a00;
  line-height: 1;
}
.stat-item__label {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bcbcbc;
  margin-top: 0.5rem;
}

/* cta */
.cta-section {
  text-align: center;
  padding: 10rem 5%;
}
.cta-section__title {
  font-family: "Quintessential", cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.cta-section__title span {
  color: #ff6a00;
}

/* footer */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 106, 0, 0.08);
  padding: 6rem 5% 2rem;
  position: relative;
}
.footer__grid {
  display: flex;
  gap: 6rem;
  margin-bottom: 4rem;
}

.footer__logo img {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__tagline {
  font-size: 0.875rem;
  color: #bcbcbc;
  line-height: 1.6;
  max-width: 260px;
}
.footer__address {
  font-size: 0.75rem;
  color: rgba(188, 188, 188, 0.4);
  margin-top: 0.5rem;
  max-width: 260px;
}
.footer__col-title {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 1rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 0.875rem;
  color: #bcbcbc;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer__nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #bcbcbc;
  transition: color 0.2s;
}
.footer__contact-item:hover {
  color: #ffffff;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: #ff6a00;
  flex-shrink: 0;
}
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}
.footer__credits {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 0.75rem;
  color: rgba(188, 188, 188, 0.4);
}
.footer__ethos {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(188, 188, 188, 0.5);
  transition: color 0.2s;
  text-decoration: none;
  text-underline-offset: 3px;
}
.footer__ethos:hover {
  color: #bcbcbc;
}
.footer__ethos img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__ethos:hover img {
  opacity: 0.9;
}
.footer__ethos strong {
  font-weight: 700;
}
.footer__cols-row {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  background: #ff6a00;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.4s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #0d0d0d;
  border: 1px solid #ff6a00;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* formulário */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bcbcbc;
}
.form__input,
.form__select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 44px 14px 18px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF6A00' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__select:focus {
  outline: none;
  border-color: #FF6A00;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.25);
}
.form__select option {
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}
.form__select option[value=""][disabled] {
  color: rgba(188, 188, 188, 0.4);
}
.form__textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: 0.2s;
  width: 100%;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.25);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(188, 188, 188, 0.3);
}
.form__textarea {
  min-height: 140px;
  resize: vertical;
}
.form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form__message {
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 4px;
  display: none;
}
.form__message.success {
  display: block;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.form__message.error {
  display: block;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* mapa */
.map-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.15);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.7);
}
.map-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}
.contact-info__item:hover .contact-info__icon {
  background: rgba(255, 106, 0, 0.2);
}
.contact-info__icon svg {
  width: 18px;
  height: 18px;
  color: #ff6a00;
}
.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-info__value {
  font-size: 0.875rem;
  color: #bcbcbc;
  line-height: 1.5;
}

/* free estimate */
.free-estimate {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.03);
  position: relative;
  overflow: hidden;
  animation: rgbBorderSolid 4s linear infinite;
}
@keyframes rgbBorderSolid {
  0% {
    border-color: rgba(255, 106, 0, 0.8);
  }
  33% {
    border-color: rgba(0, 180, 255, 0.4);
  }
  66% {
    border-color: rgba(150, 50, 255, 0.4);
  }
  100% {
    border-color: rgba(255, 106, 0, 0.8);
  }
}
.free-estimate__badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6a00;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 1rem;
}
.free-estimate__title {
  font-family: "Quintessential", cursive;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.free-estimate__desc {
  font-size: 0.875rem;
  color: #bcbcbc;
  margin-bottom: 2rem;
}

/* animações */
@keyframes rgbPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
  }
}
@keyframes rgbBorder {
  0% {
    border-color: rgba(255, 106, 0, 0.8);
  }
  33% {
    border-color: rgba(0, 180, 255, 0.8);
  }
  66% {
    border-color: rgba(150, 50, 255, 0.8);
  }
  100% {
    border-color: rgba(255, 106, 0, 0.8);
  }
}

/* entrada */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.animate-fade-in.visible {
  opacity: 1;
}
.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}

/* paralax */
[data-parallax] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-fade-up,
  .animate-fade-in,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* galeria assimétrica */
.gallery-asymmetric-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.gallery-asymmetric-fullwidth .g-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 4px;
}
.g-item-1 {
  grid-column: 1/6;
  grid-row: 1/3;
}
.g-item-2 {
  grid-column: 6/9;
  grid-row: 1/2;
}
.g-item-3 {
  grid-column: 9/13;
  grid-row: 1/2;
}
.g-item-4 {
  grid-column: 6/10;
  grid-row: 2/4;
}
.g-item-5 {
  grid-column: 10/13;
  grid-row: 2/4;
}
.g-item-6 {
  grid-column: 1/6;
  grid-row: 3/4;
}
.g-item {
  position: relative;
  overflow: hidden;
  background: #141414;
  cursor: none;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition:
    transform 0.8s,
    filter 0.4s;
}
.g-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.5);
}
.g-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 106, 0, 0.35) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.g-item:hover .g-item__overlay {
  opacity: 1;
}

/* contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-response {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 1rem;
  background: rgba(255, 106, 0, 0.05);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 4px;
  font-size: 0.875rem;
  color: #bcbcbc;
  margin-top: 1rem;
}
.contact-response svg {
  width: 16px;
  height: 16px;
  color: #ff6a00;
  flex-shrink: 0;
}
.contact-response strong {
  color: #ff6a00;
}
.contact-coverage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.875rem;
  color: #bcbcbc;
  margin-top: 0.5rem;
}
.contact-coverage svg {
  width: 16px;
  height: 16px;
  color: #ff6a00;
  flex-shrink: 0;
}
.contact-hours {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.contact-hours__title {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-hours__title svg {
  width: 14px;
  height: 14px;
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #bcbcbc;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-hours__row:last-child {
  border-bottom: none;
}
.contact-hours__row span:last-child {
  color: #ffffff;
}

/* sobre hero */
.hero-sobre {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}
.hero-sobre__text {
  padding: 0rem 5%;
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}
.hero-sobre__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6a00;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 2rem;
}
.hero-sobre__title {
  font-family: "Quintessential", cursive;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 2rem;
}
.hero-sobre__title .line {
  display: block;
  overflow: hidden;
}
.hero-sobre__title .line span {
  display: block;
  animation: textReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateY(100%);
}
.hero-sobre__title .line:nth-child(1) span {
  animation-delay: 0.3s;
}
.hero-sobre__title .line:nth-child(2) span {
  animation-delay: 0.5s;
}
.hero-sobre__title .line:nth-child(3) span {
  animation-delay: 0.7s;
}
@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sobre__desc {
  font-size: 1.125rem;
  color: #bcbcbc;
  line-height: 1.7;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.9s forwards;
  opacity: 0;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sobre__image {
  height: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.hero-sobre__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.hero-sobre__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #111111 0%, transparent 30%);
  z-index: 1;
}

/* timeline */
.timeline {
  position: relative;
  padding: 4rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 106, 0, 0.3) 10%,
    rgba(255, 106, 0, 0.3) 90%,
    transparent
  );
  transform: translateX(-50%);
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 4rem;
}
.timeline__dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  background: #ff6a00;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
  z-index: 1;
  flex-shrink: 0;
}
.timeline__dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 50%;
}
.timeline__content {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: 0.4s;
}
.timeline__content:hover {
  border-color: rgba(255, 106, 0, 0.2);
  background: rgba(255, 106, 0, 0.03);
}
.timeline__year {
  font-family: "Quintessential", cursive;
  font-size: 2rem;
  color: #ff6a00;
  margin-bottom: 4px;
}
.timeline__text {
  font-size: 0.875rem;
  color: #bcbcbc;
  line-height: 1.6;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  grid-row: 1;
}
.timeline__item:nth-child(even) .timeline__dot {
  grid-column: 2;
  grid-row: 1;
}
.timeline__item:nth-child(even) .timeline__empty {
  grid-column: 1;
  grid-row: 1;
}

/* missão */
.mission-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 5%;
}

.mission-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 120%;

  object-fit: cover;

  transform: scale(1.15);
  will-change: transform;
  filter: brightness(0.15) saturate(0.3);
}
.mission-content {
  position: relative;
  z-index: 2;
}
.mission-quote {
  font-family: "Quintessential", cursive;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 2rem;
}
.mission-quote span {
  color: #ff6a00;
}
.mission-author {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bcbcbc;
}

/* acordeão / serviços sobre */
.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-sobre-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: 0.4s;
}
.service-sobre-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.04);
  transform: translateY(-4px);
}
.service-sobre-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-sobre-card__icon svg {
  width: 22px;
  height: 22px;
  color: #ff6a00;
}
.service-sobre-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.service-sobre-card__desc {
  font-size: 0.875rem;
  color: #bcbcbc;
  line-height: 1.7;
}

/* contact hero */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
.contact-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.contact-hero__number {
  position: absolute;
  right: 5%;
  bottom: -0.1em;
  font-family: "Quintessential", cursive;
  font-size: clamp(6rem, 18vw, 16rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 106, 0, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.contact-hero__left {
  position: relative;
  z-index: 1;
}
.contact-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 1rem;
}
.contact-hero__tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #ff6a00;
}
.contact-hero__title {
  font-family: "Quintessential", cursive;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  color: #ffffff;
}
.contact-hero__title em {
  font-style: normal;
  color: #ff6a00;
  display: block;
  transform: translateX(clamp(1rem, 4vw, 4rem));
}
.contact-hero__right {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding-bottom: 0.5rem;
}
.contact-hero__desc {
  font-size: 1.125rem;
  color: #bcbcbc;
  line-height: 1.7;
  border-left: 1px solid rgba(255, 106, 0, 0.3);
  padding-left: 1rem;
}
