/* =========================================================
   NOMAD ART INK — CINEMATIC DARK
   Mattoso — Tattoo Artist
   ========================================================= */

:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --bg-elevated: #121212;
  --surface: #171717;

  --text: #f2eee8;
  --text-soft: #c1bbb4;
  --text-muted: #85807a;
  --text-faint: #55514d;

  --line: rgba(242, 238, 232, 0.13);
  --line-soft: rgba(242, 238, 232, 0.07);

  --accent: #9f2929;
  --accent-bright: #c13a38;

  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;

  --container: 1240px;
  --radius: 2px;

  --transition: 0.35s cubic-bezier(.2,.65,.3,1);
}


/* =========================================================
   RESET
   ========================================================= */

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--text);
  color: var(--bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.035em;
}

p {
  color: var(--text-soft);
}

::selection {
  background: var(--text);
  color: var(--bg);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.88),
    rgba(8, 8, 8, 0)
  );
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-color: var(--line-soft);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 84px;
  width: min(100% - 48px, var(--container));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* Wordmark */

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;

  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.wordmark-main {
  color: var(--text);
}

.wordmark-accent {
  color: var(--accent-bright);
}


/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;

  color: rgba(242, 238, 232, 0.68);

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.09em;
  text-transform: uppercase;

  padding: 8px 0;

  transition: color var(--transition);
}

.main-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: var(--text);

  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--text);
}

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


/* Header CTA */

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;
  padding: 0 17px;

  border: 1px solid rgba(242, 238, 232, 0.22);

  color: var(--text);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.header-cta:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}


/* Mobile button */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  background: transparent;
  border: 1px solid var(--line);

  color: var(--text);
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 1px;

  background: currentColor;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

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

.menu-toggle.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #080808;
}


/* Background */

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 70% 35%,
      rgba(95, 95, 95, 0.14),
      transparent 34%
    ),
    linear-gradient(
      110deg,
      #070707 0%,
      #101010 48%,
      #090909 100%
    );
}

.hero-image-placeholder span {
  position: absolute;
  right: 8%;
  bottom: 13%;

  color: rgba(255, 255, 255, 0.18);

  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/*
  Quando o elemento receber uma imagem através
  de uma futura integração, ela ocupará todo o hero.
*/

.hero-image-placeholder img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Overlay cinematográfico */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.98) 0%,
      rgba(8, 8, 8, 0.78) 38%,
      rgba(8, 8, 8, 0.2) 75%,
      rgba(8, 8, 8, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.2),
      transparent 35%,
      rgba(8, 8, 8, 0.9) 100%
    );
}


/* Grain */

.hero-grain,
.final-cta-background::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  opacity: 0.045;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* Hero content */

.hero-content {
  position: relative;
  z-index: 2;

  min-height: 100svh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding-top: 145px;
  padding-bottom: 34px;
}


/* Topline */

.hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-line {
  width: 46px;
  height: 1px;
  background: var(--accent-bright);
}

.hero-location {
  color: rgba(242, 238, 232, 0.55);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.16em;
}


/* Hero main */

.hero-main {
  width: min(100%, 850px);
}

.hero-copy {
  max-width: 780px;
}

.hero-eyebrow {
  margin-bottom: 25px;

  color: var(--accent-bright);

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;

  color: var(--text);

  font-size: clamp(54px, 8vw, 112px);

  margin-bottom: 30px;
}

.hero h1 em {
  display: inline;
}

.hero-description {
  max-width: 540px;

  color: rgba(242, 238, 232, 0.66);

  font-size: 16px;
  line-height: 1.75;

  margin-bottom: 37px;
}


/* Hero actions */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  min-height: 52px;
  padding: 0 23px;

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-bright);
  color: #fff;
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
}

.btn-text {
  min-height: auto;
  padding: 0;

  color: rgba(242, 238, 232, 0.72);

  border-bottom: 1px solid rgba(242, 238, 232, 0.35);
}

.btn-text:hover {
  color: var(--text);
  border-color: var(--text);
}


/* Hero bottom */

.hero-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.hero-scroll,
.hero-year {
  color: rgba(242, 238, 232, 0.38);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  height: 1px;
  background: rgba(242, 238, 232, 0.15);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 150px 0;
  background: var(--bg);
}

.section-dark {
  padding: 150px 0;
  background: #0b0b0b;
}

.section-border {
  border-top: 1px solid var(--line-soft);
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;
}

.intro-label,
.section-number {
  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intro-label span:first-child {
  color: var(--accent-bright);
}

.intro-text {
  max-width: 850px;
}

.intro-kicker {
  margin-bottom: 20px;

  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.intro-text h2 {
  max-width: 900px;

  margin-bottom: 34px;

  color: var(--text);

  font-size: clamp(42px, 5.6vw, 78px);
}

.intro-description {
  max-width: 580px;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background:
    linear-gradient(
      90deg,
      #080808 0%,
      #0b0b0b 100%
    );
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(60px, 10vw, 150px);

  align-items: center;
}

.about-media {
  position: relative;
}

.about-image {
  position: relative;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #161616,
      #090909
    );

  border: 1px solid var(--line-soft);
}

.about-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.65),
      transparent 45%
    );

  pointer-events: none;
}

.about-image img {
  height: 100%;
  object-fit: cover;

  transition: transform 1s cubic-bezier(.2,.65,.3,1);
}

.about-media:hover .about-image img {
  transform: scale(1.035);
}

.image-placeholder {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-media-caption {
  display: flex;
  justify-content: space-between;

  padding-top: 14px;

  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.13em;
}

.about-media-caption span:last-child {
  color: var(--text-soft);
}

.about-content {
  max-width: 650px;
}

.about-content .section-number {
  margin-bottom: 28px;
}

.about-content h2 {
  max-width: 620px;

  color: var(--text);

  font-size: clamp(43px, 5vw, 72px);

  margin-bottom: 40px;
}

.about-copy {
  max-width: 560px;
}

.about-copy p {
  margin-bottom: 20px;

  font-size: 16px;
  line-height: 1.85;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 34px;
}

.about-tags span {
  padding: 8px 13px;

  border: 1px solid var(--line);

  color: var(--text-muted);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   ESTILOS
   ========================================================= */

.section-intro {
  display: grid;
  grid-template-columns: 180px 1fr;

  gap: 70px;

  margin-bottom: 80px;
}

.section-intro h2 {
  max-width: 850px;

  color: var(--text);

  font-size: clamp(46px, 6vw, 84px);

  margin-bottom: 24px;
}

.section-intro p {
  max-width: 500px;
}


/* Style list */

.styles-list {
  border-top: 1px solid var(--line);
}

.style-item {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 40px;
  align-items: center;

  min-height: 185px;

  border-bottom: 1px solid var(--line);

  transition:
    padding var(--transition),
    background var(--transition);
}

.style-item:hover {
  padding-left: 20px;
  padding-right: 20px;

  background: rgba(255,255,255,.018);
}

.style-number {
  color: var(--accent-bright);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.style-content h3 {
  margin-bottom: 12px;

  color: var(--text);

  font-size: clamp(27px, 3vw, 42px);
}

.style-content p {
  max-width: 610px;

  font-size: 14px;
  line-height: 1.75;
}

.style-arrow {
  justify-self: end;

  color: var(--text-muted);

  font-size: 25px;

  transition:
    color var(--transition),
    transform var(--transition);
}

.style-item:hover .style-arrow {
  color: var(--text);
  transform: translate(4px, -4px);
}


/* =========================================================
   PORTFÓLIO
   ========================================================= */

.portfolio {
  background: #090909;
}

.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: end;

  margin-bottom: 70px;
}

.portfolio-header h2 {
  color: var(--text);

  font-size: clamp(52px, 7vw, 94px);

  margin-top: 25px;
}

.portfolio-header > p {
  max-width: 300px;

  font-size: 14px;
  line-height: 1.8;
}


/*
  Galeria alimentada pelo V8.
*/

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(12, 1fr);

  gap: 5px;

  width: 100%;
}


/*
  O Loader cria:
  <img class="v8-gallery-item">
*/

.gallery-grid .v8-gallery-item {
  width: 100%;
  height: 420px;

  object-fit: cover;

  background: var(--surface);

  filter: grayscale(8%);

  transition:
    transform .7s cubic-bezier(.2,.65,.3,1),
    filter .5s ease,
    opacity .5s ease;

  grid-column: span 4;
}


/* Composição assimétrica */

.gallery-grid .v8-gallery-item:nth-child(1) {
  grid-column: span 7;
  height: 560px;
}

.gallery-grid .v8-gallery-item:nth-child(2) {
  grid-column: span 5;
  height: 560px;
}

.gallery-grid .v8-gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-grid .v8-gallery-item:nth-child(4) {
  grid-column: span 4;
}

.gallery-grid .v8-gallery-item:nth-child(5) {
  grid-column: span 4;
}

.gallery-grid .v8-gallery-item:nth-child(n+6) {
  grid-column: span 3;
  height: 340px;
}

.gallery-grid .v8-gallery-item:hover {
  filter: grayscale(0%);
  transform: scale(.985);
}


/* Portfolio footer */

.portfolio-footer {
  display: flex;
  justify-content: space-between;

  margin-top: 18px;

  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.13em;
}


/* =========================================================
   PROCESSO
   ========================================================= */

.process {
  background: #080808;
}

.process-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;

  margin-bottom: 90px;
}

.process-header h2 {
  max-width: 850px;

  color: var(--text);

  font-size: clamp(48px, 6.2vw, 88px);
}

.process-list {
  margin-left: 250px;

  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;

  gap: 50px;

  padding: 38px 0;

  border-bottom: 1px solid var(--line);

  transition:
    padding var(--transition),
    background var(--transition);
}

.process-step:hover {
  padding-left: 20px;
  background: rgba(255,255,255,.012);
}

.process-index {
  color: var(--accent-bright);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.process-info {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 40px;
}

.process-info h3 {
  color: var(--text);
  font-size: 28px;
}

.process-info p {
  max-width: 500px;

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.reviews {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(130, 35, 35, .07),
      transparent 30%
    ),
    #0b0b0b;
}

.reviews-header {
  max-width: 800px;

  margin-bottom: 70px;
}

.reviews-header .section-number {
  margin-bottom: 28px;
}

.reviews-header h2 {
  color: var(--text);

  font-size: clamp(50px, 6vw, 86px);

  margin-bottom: 22px;
}

.reviews-header p {
  max-width: 450px;
}


/* V8 reviews */

.reviews-wrapper {
  width: 100%;
}

.v8-reviews-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;

  margin-bottom: 45px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--line);
}

.v8-reviews-stars {
  color: var(--accent-bright);

  font-size: 13px;
  letter-spacing: 2px;
}

.v8-reviews-rating {
  color: var(--text);

  font-family: var(--font-heading);
  font-size: 22px;
}

.v8-reviews-total {
  color: var(--text-muted);

  font-size: 12px;
}

.v8-reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 50px;
}

.v8-review-item {
  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.v8-review-author {
  margin-bottom: 5px;

  color: var(--text);

  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;

  letter-spacing: .04em;
}

.v8-review-stars {
  margin-bottom: 17px;

  color: var(--accent-bright);

  font-size: 11px;
  letter-spacing: 1px;
}

.v8-review-text {
  margin-bottom: 17px;

  color: var(--text-soft);

  font-size: 14px;
  line-height: 1.8;
}

.v8-review-time {
  color: var(--text-faint);

  font-size: 10px;
}


/* =========================================================
   CONTATO
   ========================================================= */

.contact {
  background: #080808;
  border-top: 1px solid var(--line-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(400px, 1.1fr);

  gap: clamp(70px, 12vw, 170px);

  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy .section-number {
  margin-bottom: 30px;
}

.contact-copy h2 {
  max-width: 620px;

  color: var(--text);

  font-size: clamp(48px, 5.8vw, 78px);

  margin-bottom: 28px;
}

.contact-copy > p {
  max-width: 500px;

  font-size: 15px;
  line-height: 1.85;

  margin-bottom: 35px;
}


/* WhatsApp link */

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  min-width: 245px;

  padding-bottom: 13px;

  border-bottom: 1px solid var(--text);

  color: var(--text);

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;

  letter-spacing: .1em;
  text-transform: uppercase;

  transition:
    color var(--transition),
    border-color var(--transition);
}

.contact-whatsapp:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}


/* Contact details */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-top: 55px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail > span:last-child {
  color: var(--text-soft);

  font-size: 13px;
}

.contact-detail a:hover {
  color: var(--text);
}


/* Form */

.contact-form-wrapper {
  padding: 42px;

  background: #101010;

  border: 1px solid var(--line-soft);
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading > span {
  display: block;

  margin-bottom: 8px;

  color: var(--text);

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;

  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-heading p {
  color: var(--text-faint);

  font-size: 12px;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.field {
  position: relative;
}

.field label {
  display: block;

  margin-bottom: 9px;

  color: var(--text-muted);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  display: block;

  width: 100%;

  background: transparent;

  border: 0;
  border-bottom: 1px solid var(--line);

  border-radius: 0;

  padding: 13px 0;

  color: var(--text);

  outline: none;

  font-family: var(--font-body);
  font-size: 14px;

  transition:
    border-color var(--transition);
}

.field textarea {
  resize: vertical;
  min-height: 125px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #45423f;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--text);
}


/* Submit */

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  min-height: 58px;

  margin-top: 10px;

  padding: 0 20px;

  background: var(--text);

  border: 1px solid var(--text);

  color: var(--bg);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;

  letter-spacing: .12em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.form-submit:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: #fff;
}

.form-submit span:last-child {
  font-size: 17px;
}

.form-status {
  min-height: 20px;

  margin-top: 5px;

  color: var(--text-muted);

  font-size: 12px;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #080808;
}

.final-cta-background {
  position: absolute;
  inset: 0;
}

.final-image-placeholder {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(100,100,100,.16),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #111,
      #070707 70%
    );
}

.final-image-placeholder span {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  color: rgba(255,255,255,.14);

  font-family: var(--font-heading);
  font-size: 9px;

  letter-spacing: .15em;
  text-transform: uppercase;
}

.final-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,.18),
      rgba(0,0,0,.88) 78%
    ),
    linear-gradient(
      to bottom,
      rgba(8,8,8,.5),
      rgba(8,8,8,.7)
    );
}

.final-cta-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.final-cta-content .section-number {
  margin-bottom: 30px;
}

.final-cta h2 {
  color: var(--text);

  font-size: clamp(55px, 9vw, 130px);

  line-height: .92;

  margin-bottom: 45px;
}

.final-cta h2 em {
  color: var(--text);
}

.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  min-width: 255px;
  min-height: 58px;

  padding: 0 21px;

  border: 1px solid rgba(242,238,232,.35);

  color: var(--text);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.final-button:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.final-button span:last-child {
  font-size: 17px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #070707;

  padding: 60px 0 30px;

  border-top: 1px solid var(--line-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  gap: 40px;

  align-items: start;

  padding-bottom: 65px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;

  width: fit-content;

  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;

  letter-spacing: .1em;
  line-height: 1.05;
}

.footer-brand strong {
  color: var(--accent-bright);
  font-size: 11px;

  letter-spacing: .19em;
}

.footer-manifesto {
  max-width: 250px;

  color: var(--text-faint);

  font-size: 12px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-social a {
  color: var(--text-muted);

  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;

  letter-spacing: .1em;
  text-transform: uppercase;

  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding-top: 25px;

  border-top: 1px solid var(--line-soft);

  color: var(--text-faint);

  font-family: var(--font-heading);
  font-size: 9px;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--text-muted);

  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--text);
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-fab {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 90;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent);

  border: 1px solid rgba(255,255,255,.12);

  color: #fff;

  border-radius: 50%;

  box-shadow:
    0 12px 35px rgba(0,0,0,.45);

  transition:
    background var(--transition),
    transform var(--transition);
}

.whatsapp-fab:hover {
  background: var(--accent-bright);
  transform: translateY(-4px);
}

.whatsapp-fab svg {
  position: relative;
  z-index: 2;

  width: 25px;
  height: 25px;
}

.whatsapp-pulse {
  position: absolute;
  inset: -5px;

  border: 1px solid rgba(193,58,56,.35);

  border-radius: 50%;

  animation: whatsappPulse 2.5s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.9);
    opacity: .8;
  }

  70% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.65,.3,1);
}

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


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .main-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(52px, 8vw, 90px);
  }

  .intro-grid,
  .section-intro,
  .process-header {
    grid-template-columns: 120px 1fr;
    gap: 45px;
  }

  .process-list {
    margin-left: 165px;
  }

  .contact-grid {
    gap: 70px;
  }

  .portfolio-header {
    grid-template-columns: 1fr 280px;
  }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    width: min(100% - 40px, var(--container));
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }


  /* Mobile menu */

  .main-nav.open {
    position: fixed;

    inset: 84px 0 0 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    padding: 25px 30px;

    background: rgba(8,8,8,.98);

    border-top: 1px solid var(--line-soft);

    backdrop-filter: blur(20px);

    z-index: 95;
  }

  .main-nav.open a {
    width: 100%;

    padding: 17px 0;

    border-bottom: 1px solid var(--line-soft);

    font-size: 12px;
  }

  .main-nav.open a::after {
    display: none;
  }


  /* Hero */

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 76px);
  }

  .hero-description {
    font-size: 15px;
  }


  /* Intro */

  .intro-grid,
  .section-intro,
  .process-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .intro-text h2 {
    font-size: clamp(40px, 10vw, 65px);
  }


  /* About */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about-image {
    max-width: 600px;
  }


  /* Portfolio */

  .portfolio-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .portfolio-header h2 {
    font-size: clamp(50px, 12vw, 78px);
  }

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

  .gallery-grid .v8-gallery-item,
  .gallery-grid .v8-gallery-item:nth-child(n) {
    grid-column: span 1;
    height: 390px;
  }

  .gallery-grid .v8-gallery-item:nth-child(1),
  .gallery-grid .v8-gallery-item:nth-child(2) {
    height: 500px;
  }


  /* Process */

  .process-list {
    margin-left: 0;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 25px;
  }

  .process-info {
    grid-template-columns: 1fr;
    gap: 13px;
  }


  /* Reviews */

  .v8-reviews-list {
    grid-template-columns: 1fr;
    gap: 35px;
  }


  /* Contact */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .contact-copy {
    position: static;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }


  /* Footer */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    width: min(100% - 32px, var(--container));
    min-height: 72px;
  }

  .main-nav.open {
    inset: 72px 0 0 0;
  }


  /* Sections */

  .section,
  .section-dark {
    padding: 100px 0;
  }


  /* Hero */

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;

    padding-top: 115px;
    padding-bottom: 25px;
  }

  .hero-topline {
    margin-bottom: auto;
  }

  .hero-main {
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 66px);
    letter-spacing: -0.055em;
  }

  .hero-description {
    max-width: 400px;

    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 18px;
  }

  .btn-primary {
    min-height: 50px;
  }

  .hero-bottom {
    grid-template-columns: 1fr auto;
  }

  .hero-scroll-line {
    display: none;
  }


  /* Intro */

  .intro-text h2 {
    font-size: clamp(38px, 11vw, 57px);
  }

  .intro-description {
    font-size: 14px;
  }


  /* About */

  .about-content h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .about-copy p {
    font-size: 14px;
  }


  /* Styles */

  .section-intro h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .style-item {
    grid-template-columns: 45px 1fr 25px;
    gap: 15px;

    min-height: 175px;
  }

  .style-item:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .style-content h3 {
    font-size: 25px;
  }

  .style-content p {
    font-size: 13px;
  }

  .style-arrow {
    font-size: 20px;
  }


  /* Portfolio */

  .portfolio-header h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .gallery-grid .v8-gallery-item,
  .gallery-grid .v8-gallery-item:nth-child(n) {
    grid-column: span 1;
    height: 430px;
  }

  .gallery-grid .v8-gallery-item:nth-child(1),
  .gallery-grid .v8-gallery-item:nth-child(2) {
    height: 500px;
  }

  .portfolio-footer {
    flex-direction: column;
    gap: 7px;
  }


  /* Process */

  .process-header h2 {
    font-size: clamp(44px, 13vw, 67px);
  }

  .process-step {
    padding: 30px 0;
  }

  .process-step:hover {
    padding-left: 5px;
  }

  .process-info h3 {
    font-size: 25px;
  }


  /* Reviews */

  .reviews-header h2 {
    font-size: clamp(48px, 13vw, 70px);
  }


  /* Contact */

  .contact-copy h2 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .contact-form-wrapper {
    padding: 27px 20px;
  }


  /* Final CTA */

  .final-cta {
    min-height: 650px;
  }

  .final-cta h2 {
    font-size: clamp(52px, 14vw, 80px);
  }

  .final-button {
    min-width: 230px;
    gap: 35px;
  }


  /* Footer */

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;

    padding-bottom: 45px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }


  /* WhatsApp */

  .whatsapp-fab {
    right: 17px;
    bottom: 17px;

    width: 52px;
    height: 52px;
  }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }

}
