:root {
  --orange: #ff3d00;
  --orange-dark: #c72f00;
  --black: #0d0d0d;
  --black-soft: #151515;
  --gray-dark: #242424;
  --gray: #777777;
  --gray-light: #f4f4f4;
  --white: #ffffff;
  --text-light: #d7d7d7;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 105px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-title span,
.process-text > span,
.about-content > span,
.location-content > span,
.budget-content > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2,
.process-text h2,
.about-content h2,
.location-content h2,
.budget-content h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.section-title p,
.process-text p,
.about-content p,
.location-content p,
.budget-content p {
  margin-top: 18px;
  color: var(--text-light);
  font-size: 1.03rem;
  line-height: 1.8;
}

/* HEADER */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(255, 61, 0, 0.18));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  position: relative;
  color: #222222;
  font-size: 0.86rem;
  font-weight: 800;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-header,
.btn-primary,
.btn-secondary,
.hours-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
}

.btn-header,
.btn-primary,
.hours-card a {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 34px rgba(255, 61, 0, 0.26);
}

.btn-header:hover,
.btn-primary:hover,
.hours-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(255, 61, 0, 0.4);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  color: var(--black);
  background: var(--white);
  transform: translateY(-4px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #111111;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: var(--transition);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 95px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.7), rgba(0,0,0,0.35)),
    url("processo-1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 115px;
  right: -170px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.42), transparent 68%);
  filter: blur(12px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(transparent, var(--black));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.16), transparent 36%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.032) 0,
      rgba(255,255,255,0.032) 1px,
      transparent 1px,
      transparent 86px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeUp 1s ease forwards;
}

.tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 61, 0, 0.12);
  border: 1px solid rgba(255, 61, 0, 0.42);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -2px;
}

.hero p {
  max-width: 660px;
  margin: 25px 0 32px;
  color: #e2e2e2;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin-top: 52px;
  margin-bottom: 20px;
}

.hero-info div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.hero-info strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.28rem;
}

.hero-info span {
  color: #c8c8c8;
  font-size: 0.9rem;
}

/* SERVICES */

.services {
  background:
    radial-gradient(circle at top right, rgba(255, 61, 0, 0.14), transparent 35%),
    var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1d1d1d, #111111);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.18), transparent 48%);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 61, 0, 0.48);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 61, 0, 0.18), rgba(18, 18, 18, 1)),
    #151515;
  border-color: rgba(255, 61, 0, 0.5);
}

.service-icon,
.process-icon,
.differential-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 32px rgba(255, 61, 0, 0.25);
}

.service-icon svg,
.process-icon svg,
.differential-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
  font-size: 1.48rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: #c9c9c9;
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-card a {
  position: absolute;
  left: 36px;
  bottom: 32px;
  z-index: 1;
  color: var(--orange);
  font-weight: 900;
}

.service-card a:hover {
  color: var(--white);
}

/* PROCESS */

.process {
  background: var(--gray-light);
  color: var(--black);
}

.process-container,
.about-container,
.location-container,
.budget-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.process-text p,
.location-content p,
.budget-content p {
  color: #555555;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.process-item .process-icon {
  margin-bottom: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.process-item .process-icon svg {
  width: 25px;
  height: 25px;
}

.process-item h3 {
  margin-bottom: 6px;
  font-size: 1.03rem;
  color: var(--black);
}

.process-item p {
  margin: 0;
  color: #555555;
  line-height: 1.55;
  font-size: 0.94rem;
}

.process-media {
  height: 100%;
  min-height: 585px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.process-media video {
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
}

/* ABOUT */

.about {
  background: linear-gradient(180deg, #111111, #191919);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(255, 61, 0, 0.42);
  border-radius: 34px;
  transform: rotate(-3deg);
}

.about-image img {
  position: relative;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.about-highlights div {
  min-height: 150px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.11);
}

.about-highlights strong {
  display: block;
  color: var(--orange);
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 10px;
}

.about-highlights span {
  color: #d0d0d0;
  font-size: 0.9rem;
  line-height: 1.35;
}

/* DIFFERENTIALS */

.differentials {
  background:
    radial-gradient(circle at top left, rgba(255, 61, 0, 0.12), transparent 34%),
    var(--black);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.differential-card {
  min-height: 295px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.differential-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 61, 0, 0.18), rgba(255,255,255,0.035));
  border-color: rgba(255, 61, 0, 0.38);
}

.differential-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
}

.differential-icon svg {
  width: 26px;
  height: 26px;
}

.differential-card h3 {
  margin-bottom: 16px;
  font-size: 1.22rem;
}

.differential-card p {
  color: #c9c9c9;
  line-height: 1.72;
  font-size: 0.96rem;
}

/* GALLERY */

.gallery {
  background: var(--gray-light);
  color: var(--black);
}

.gallery .section-title p {
  color: #555555;
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 22px;
  break-inside: avoid;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  filter: contrast(1.08);
}

/* BUDGET FORM */

.budget {
  background:
    radial-gradient(circle at right, rgba(255, 61, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #111111, #171717);
}

.budget-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.budget-contact div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.1);
}

.budget-contact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.budget-contact a,
.budget-contact span {
  color: #eeeeee;
  font-weight: 800;
}

.budget-form {
  padding: 36px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dddddd;
  outline: none;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--black);
  background: #f7f7f7;
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 61, 0, 0.12);
}

.budget-form .btn-primary {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

/* LOCATION */

.location {
  background:
    radial-gradient(circle at left, rgba(255, 61, 0, 0.15), transparent 32%),
    #111111;
}

.location-content ul {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.location-content li {
  position: relative;
  padding-left: 26px;
  color: #e9e9e9;
}

.location-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.hours-card {
  padding: 44px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 61, 0, 0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.hours-card h3 {
  margin-bottom: 30px;
  font-size: 1.9rem;
}

.hours-card div {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.hours-card span {
  color: #cfcfcf;
}

.hours-card strong {
  font-size: 1.32rem;
}

/* FOOTER */

.footer {
  padding-top: 70px;
  background: #f4f4f4;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand img {
  width: 126px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
}

.footer-brand p,
.footer-links p,
.footer-links a {
  color: #444444;
  line-height: 1.7;
}

.footer-links h3 {
  margin-bottom: 18px;
  color: #111111;
  font-size: 1.1rem;

}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 55px;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: #8b8b8b;
  font-size: 0.9rem;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
  animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

/* LIGHTBOX */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.image-lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMAÇÕES */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.35;
    transform: scale(0.95);
  }

  to {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-menu a {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-container,
  .about-container,
  .location-container,
  .budget-container {
    grid-template-columns: 1fr;
  }

  .process-media {
    min-height: 470px;
  }

  .process-media video {
    min-height: 470px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: -100%;
    width: min(370px, 86%);
    height: calc(100vh - 82px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 32px;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 17px 0;
    font-size: 1rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 132px 0 78px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-info {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .section {
    padding: 78px 0;
  }

  .about-image img {
    height: 450px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .logo {
    width: 98px;
  }

  .header {
    padding: 12px 0;
  }

  .nav-menu {
    top: 74px;
    height: calc(100vh - 74px);
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .services-grid,
  .differentials-grid,
  .about-highlights,
  .budget-contact,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 30px;
  }

  .service-card a {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .process-item .process-icon {
    width: 50px;
    height: 50px;
  }

  .process-media {
    min-height: 360px;
    border-radius: 24px;
  }

  .process-media video {
    min-height: 360px;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    height: 360px;
    border-radius: 24px;
  }

  .about-highlights div {
    min-height: 130px;
  }

  .budget-form {
    padding: 26px;
    border-radius: 24px;
  }

  .hours-card {
    padding: 30px;
  }

  .hours-card h3 {
    font-size: 1.55rem;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.05rem;
  }

  .section-title h2,
  .process-text h2,
  .about-content h2,
  .location-content h2,
  .budget-content h2 {
    font-size: 1.85rem;
  }

  .service-card,
  .differential-card {
    padding: 26px;
  }

  .gallery-grid {
    columns: 1;
  }
}
