/* =========================================================
   FEITO DONA FRAN CRIAÇÕES — STYLE.CSS 3.0
   Compatível com o index.html atualizado.
   ========================================================= */

/* =========================================================
   1. VARIÁVEIS
   ========================================================= */

:root {
  color-scheme: light;

  --font-display: "Anton", Impact, Haettenschweiler, sans-serif;
  --font-heading: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  --page-background: #f5f1e9;
  --page-background-alt: #ece5d8;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --surface-dark: #0a0a0c;
  --surface-dark-soft: #151518;

  --heading: #171513;
  --text: #423d37;
  --muted: #71695f;

  --white: #ffffff;
  --black: #09090b;

  --gold: #c9963c;
  --gold-light: #e1b963;
  --gold-dark: #805a1d;

  --green: #74a62f;
  --blue: #1f5f9d;
  --orange: #e99216;
  --red: #d83f3a;
  --teal: #0f7b82;
  --yellow: #eeb526;
  --whatsapp: #1ead56;
  --instagram: #c13584;

  --border: rgba(23, 21, 19, 0.13);
  --border-light: rgba(255, 255, 255, 0.15);

  --shadow-small:
    0 8px 24px rgba(28, 23, 17, 0.08);

  --shadow-medium:
    0 18px 50px rgba(28, 23, 17, 0.13);

  --shadow-large:
    0 30px 90px rgba(28, 23, 17, 0.18);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --radius-round: 999px;

  --container-width: 1180px;
  --header-height: 82px;

  --transition-fast: 160ms ease;
  --transition-normal: 240ms ease;
}

/* =========================================================
   2. NORMALIZAÇÃO E BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;

  color: var(--heading);
  background: var(--page-background);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:not(:disabled),
a[href] {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
  color: var(--text);
}

ul,
ol {
  margin-bottom: 0;
  padding: 0;
}

ul {
  list-style: none;
}

figure {
  margin-bottom: 0;
}

::selection {
  color: #111111;
  background: var(--gold-light);
}

:focus {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@supports selector(:focus-visible) {
  :focus {
    outline: none;
  }

  :focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
  }
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 3000;

  padding: 10px 15px;
  border-radius: var(--radius-small);

  color: var(--white);
  background: var(--black);

  font-weight: 700;

  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2,
h3,
.eyebrow,
.section-title span,
.segment-label,
.benefit-card strong,
.trust-item strong,
.step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* =========================================================
   3. CABEÇALHO E NAVEGAÇÃO
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: var(--header-height);

  border-bottom: 1px solid rgba(225, 185, 99, 0.18);

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 10, 0.99),
      rgba(10, 10, 12, 0.97)
    );

  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.20);

  transition:
    box-shadow var(--transition-normal),
    background-color var(--transition-normal);
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  .header {
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 10, 0.94),
        rgba(10, 10, 12, 0.91)
      );

    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }
}

.header.scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: var(--header-height);
  gap: 24px;
}

.logo-link {
  display: grid;
  flex: 0 0 72px;
  place-items: center;

  width: 72px;
  height: 72px;
  overflow: hidden;

  border: 2px solid rgba(225, 185, 99, 0.56);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.07),
      transparent 38%
    ),
    #08080a;

  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.02),
    0 12px 28px rgba(0, 0, 0, 0.34);
}

.logo {
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 50%;
  object-fit: contain;
}

.main-navigation {
  margin-left: auto;
}

.navigation-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 21px);
}

.navigation-link,
.navigation-cta {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navigation-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 44px;

  color: rgba(255, 255, 255, 0.91);

  font-size: 13px;
  white-space: nowrap;
}

.navigation-link::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;

  height: 2px;
  border-radius: var(--radius-round);

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-light)
    );

  transform: scaleX(0);
  transform-origin: center;

  transition: transform var(--transition-fast);
}

.navigation-link:hover::after,
.navigation-link:focus::after,
.navigation-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.navigation-cta-item {
  margin-left: 2px;
}

.navigation-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 23px;

  border: 1px solid var(--gold-light);
  border-radius: var(--radius-round);

  color: #111111;
  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

  font-weight: 700;
  line-height: 1.2;
  text-align: center;

  box-shadow: 0 16px 34px rgba(201, 150, 60, 0.24);

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    box-shadow var(--transition-fast);
}

.navigation-cta {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 12px;
}

.navigation-cta:hover,
.navigation-cta:focus,
.button:hover,
.button:focus {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(201, 150, 60, 0.31);
}

.navigation-cta:active,
.button:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 46px;
  height: 46px;
  gap: 5px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle-line {
  width: 21px;
  height: 2px;

  border-radius: var(--radius-round);
  background: currentColor;

  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   4. HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;

  min-height: 650px;
  overflow: hidden;
  padding: 104px 0 92px;

  background: #edf3f0;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -2;

  background-image: url("../assets/hero-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(246, 248, 246, 0.93) 0%,
      rgba(242, 247, 244, 0.79) 31%,
      rgba(238, 246, 242, 0.25) 63%,
      rgba(238, 246, 242, 0.02) 82%
    );
}

.hero-content {
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin-bottom: 18px;

  color: var(--gold-dark);

  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 34px;
  height: 3px;

  border-radius: var(--radius-round);

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-light)
    );
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;

  color: #103038;

  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.98;
}

.hero p {
  max-width: 640px;
  margin-bottom: 26px;

  color: #415156;

  font-size: clamp(17px, 2vw, 20px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 32px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;

  padding: 8px 13px;

  border: 1px solid transparent;
  border-radius: var(--radius-round);

  color: #17393e;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(20, 40, 40, 0.06);
}

@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .hero-highlights span {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.highlight-green {
  border-color: rgba(116, 166, 47, 0.34) !important;
  background: rgba(116, 166, 47, 0.17);
}

.highlight-blue {
  border-color: rgba(31, 95, 157, 0.32) !important;
  background: rgba(31, 95, 157, 0.16);
}

.highlight-orange {
  border-color: rgba(233, 146, 22, 0.34) !important;
  background: rgba(233, 146, 22, 0.17);
}

.highlight-yellow {
  border-color: rgba(238, 181, 38, 0.36) !important;
  background: rgba(238, 181, 38, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button.secondary {
  border-color: rgba(20, 54, 58, 0.25);

  color: #14363a;
  background: rgba(255, 255, 255, 0.72);

  box-shadow: 0 10px 28px rgba(17, 37, 39, 0.10);
}

/* =========================================================
   5. BENEFÍCIOS
   ========================================================= */

.benefits {
  padding: 38px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--surface-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;

  min-height: 190px;
  overflow: hidden;
  padding: 24px 24px 34px;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: var(--surface);
  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.benefit-card::after {
  content: "";

  position: absolute;
  bottom: 18px;
  left: 24px;

  width: 42px;
  height: 3px;
  border-radius: var(--radius-round);
}

.benefit-card:nth-child(1)::after {
  background: var(--green);
}

.benefit-card:nth-child(2)::after {
  background: var(--blue);
}

.benefit-card:nth-child(3)::after {
  background: var(--orange);
}

.benefit-card:nth-child(4)::after {
  background: var(--red);
}

.benefit-card strong {
  display: block;

  margin-bottom: 9px;

  color: var(--heading);

  font-size: 22px;
  line-height: 1.12;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
}

/* =========================================================
   6. SOBRE E TÍTULOS
   ========================================================= */

.about {
  padding: 80px 0;

  background:
    linear-gradient(
      180deg,
      var(--page-background),
      var(--surface-soft)
    );
}

.about-box,
.trust-box,
.contact-box {
  padding: clamp(28px, 5vw, 50px);

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background: var(--surface);
  box-shadow: var(--shadow-medium);
}

.about-box {
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: "DF";

  position: absolute;
  top: 50%;
  right: clamp(20px, 6vw, 70px);

  color: rgba(201, 150, 60, 0.10);

  font-family: var(--font-display);
  font-size: clamp(110px, 18vw, 230px);
  font-weight: 400;
  line-height: 1;

  transform: translateY(-50%);
}

.about-box h2,
.section-title h2,
.free-art h2,
.contact-box h2 {
  color: var(--heading);
}

.about-box h2 {
  position: relative;
  max-width: 760px;
  margin-bottom: 14px;

  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
}

.about-box p {
  position: relative;
  max-width: 880px;

  font-size: 18px;
}

.segments,
.process,
.trust {
  padding: 82px 0;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 44px;

  text-align: center;
}

.section-title span {
  color: var(--gold-dark);

  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h2 {
  margin-top: 8px;

  font-size: clamp(31px, 4.8vw, 53px);
  line-height: 1.05;
}

/* =========================================================
   7. GALERIAS DOS SEGMENTOS
   ========================================================= */

.segments {
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(201, 150, 60, 0.12),
      transparent 28%
    ),
    var(--page-background);
}

.gallery-section {
  --segment-color: var(--gold);
  --segment-color-soft: rgba(201, 150, 60, 0.14);
  --segment-color-border: rgba(201, 150, 60, 0.40);

  display: grid;
  grid-template-columns:
    minmax(250px, 0.82fr)
    minmax(0, 1.18fr);
  align-items: center;

  gap: clamp(26px, 4vw, 48px);

  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 40px);

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-medium);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .gallery-section {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

#agro {
  --segment-color: var(--green);
  --segment-color-soft: rgba(116, 166, 47, 0.14);
  --segment-color-border: rgba(116, 166, 47, 0.42);
}

#caminhoneiros {
  --segment-color: var(--blue);
  --segment-color-soft: rgba(31, 95, 157, 0.13);
  --segment-color-border: rgba(31, 95, 157, 0.40);
}

#mineracao {
  --segment-color: var(--orange);
  --segment-color-soft: rgba(233, 146, 22, 0.14);
  --segment-color-border: rgba(233, 146, 22, 0.42);
}

#motoclubes {
  --segment-color: var(--red);
  --segment-color-soft: rgba(216, 63, 58, 0.13);
  --segment-color-border: rgba(216, 63, 58, 0.40);
}

#pescaria {
  --segment-color: var(--teal);
  --segment-color-soft: rgba(15, 123, 130, 0.13);
  --segment-color-border: rgba(15, 123, 130, 0.40);
}

.gallery-section:nth-of-type(even) .gallery-text {
  order: 2;
}

.gallery-section:nth-of-type(even) .gallery {
  order: 1;
}

.gallery-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-label {
  width: fit-content;
  padding: 7px 13px;

  border: 1px solid var(--segment-color-border);
  border-radius: var(--radius-round);

  color: var(--segment-color);
  background: var(--segment-color-soft);

  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-text h3 {
  color: var(--heading);

  font-size: clamp(27px, 3.7vw, 44px);
  line-height: 1.04;
}

.gallery {
  position: relative;

  min-width: 0;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: #101013;
  box-shadow: var(--shadow-medium);

  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: contain;
}

.gallery-main {
  display: block;

  width: 100%;
  min-height: 340px;
  aspect-ratio: 4 / 3;

  color: transparent;
  background: #111114;

  object-fit: contain;
  object-position: center;

  cursor: zoom-in;

  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
}

.gallery-main.is-changing {
  opacity: 0.25;
  transform: scale(0.995);
}

.gallery-main[role="button"]:focus {
  outline-offset: -5px;
}

.gallery-arrow,
.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;

  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;

  color: var(--white);
  background: rgba(8, 8, 9, 0.72);

  font-size: 34px;
  line-height: 1;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);

  transform: translateY(-50%);

  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .gallery-arrow,
  .carousel-arrow {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.gallery-arrow:hover,
.gallery-arrow:focus,
.carousel-arrow:hover,
.carousel-arrow:focus {
  background: rgba(201, 150, 60, 0.92);
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev,
.carousel-arrow.prev {
  left: 14px;
}

.gallery-arrow.next,
.carousel-arrow.next {
  right: 14px;
}

.gallery-counter {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 4;

  padding: 6px 11px;

  border-radius: var(--radius-round);

  color: var(--white);
  background: rgba(8, 8, 9, 0.76);

  font-size: 13px;
  font-weight: 700;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;

  padding: 10px;
  overflow-x: auto;

  background: #0d0d0f;

  scrollbar-width: thin;
  scrollbar-color: var(--gold) #1a1a1e;
}

.gallery-thumbs:empty {
  display: none;
}

.gallery-thumbs button,
.gallery-thumb {
  flex: 0 0 72px;

  width: 72px;
  height: 54px;
  padding: 0;
  overflow: hidden;

  border: 2px solid transparent;
  border-radius: 9px;

  background: #1a1a1e;
}

.gallery-thumbs button.is-active,
.gallery-thumb.is-active,
.gallery-thumbs button[aria-current="true"] {
  border-color: var(--segment-color);
}

.gallery-thumbs img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-button {
  justify-self: start;
  align-self: start;

  margin-top: 2px;
}

/* =========================================================
   8. CONFIANÇA
   ========================================================= */

.trust {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(201, 150, 60, 0.12),
      transparent 30%
    ),
    var(--surface-soft);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  min-height: 220px;
  padding: 26px;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background:
    linear-gradient(
      180deg,
      rgba(201, 150, 60, 0.10),
      transparent 65%
    ),
    var(--surface-soft);
}

.trust-item::before {
  content: "✓";

  display: inline-grid;
  place-items: center;

  width: 38px;
  height: 38px;
  margin-bottom: 16px;

  border-radius: 50%;

  color: #111111;
  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-bottom: 9px;

  font-size: 22px;
  line-height: 1.15;
}

/* =========================================================
   9. CHAMADA PARA ARTE
   ========================================================= */

.free-art {
  position: relative;
  overflow: hidden;

  padding: 78px 0;

  color: var(--white);

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(245, 189, 55, 0.20),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #050506,
      #151316
    );
}

.free-art-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.free-art h2 {
  margin-bottom: 14px;

  color: var(--white);

  font-size: clamp(35px, 5.2vw, 62px);
  line-height: 1;
}

.free-art p {
  max-width: 720px;

  color: rgba(255, 255, 255, 0.79);

  font-size: 18px;
}

/* =========================================================
   10. PROCESSO
   ========================================================= */

.process {
  background: var(--page-background);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  min-height: 230px;
  padding: 26px;

  border: 1px solid transparent;
  border-radius: var(--radius-medium);

  background: var(--surface);
  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.step:hover {
  border-color: rgba(201, 150, 60, 0.34);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.step > strong {
  display: inline-flex;

  margin-bottom: 24px;

  color: var(--gold);

  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.step h3 {
  margin-bottom: 9px;

  color: var(--heading);

  font-size: 23px;
  line-height: 1.16;
}

/* =========================================================
   11. CARROSSEL DE CLIENTES
   ========================================================= */

.gallery-carousel-section {
  padding: 82px 0;

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(201, 150, 60, 0.10),
      transparent 28%
    ),
    var(--surface-soft);
}

.carousel {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background: #111114;
  box-shadow: var(--shadow-medium);

  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: contain;
}

.carousel-track {
  position: relative;

  min-height: 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;

  background: #111114;
}

.carousel-slide {
  position: absolute;
  inset: 0;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 320ms ease,
    visibility 320ms ease;
}

.carousel-slide.is-active,
.carousel-slide:first-child:not([aria-hidden="true"]) {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-photo-card {
  isolation: isolate;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;

  background: #111114;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;

  min-height: 18px;
  padding: 16px;

  background: #111114;
}

.carousel-dots:empty {
  display: none;
}

.carousel-dot,
.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;

  background: transparent;

  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.carousel-dot.is-active,
.carousel-dots button.is-active,
.carousel-dots button[aria-current="true"] {
  border-color: var(--gold-light);
  background: var(--gold-light);
  transform: scale(1.15);
}

/* =========================================================
   12. CONTATO
   ========================================================= */

.contact {
  padding: 82px 0;

  background:
    linear-gradient(
      180deg,
      var(--page-background),
      var(--page-background-alt)
    );
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact-box h2 {
  max-width: 570px;
  margin-bottom: 12px;

  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.04;
}

.contact-box p {
  max-width: 690px;

  font-size: 18px;
}

.contact-box .button {
  flex: 0 0 auto;
}

/* =========================================================
   13. RODAPÉ E INSTAGRAM
   ========================================================= */

.footer {
  padding: 32px 0;

  color: rgba(255, 255, 255, 0.75);
  background: #09090b;

  text-align: center;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px 22px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-instagram a {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 42px;
  padding: 7px 12px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-round);

  color: var(--white);

  font-weight: 700;

  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-instagram a::before {
  content: "";

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 68% 68%,
      #ffdc80 0 18%,
      #fcaf45 19% 35%,
      #f77737 36% 51%,
      #e1306c 52% 68%,
      #c13584 69% 82%,
      #833ab4 83% 100%
    );
}

.footer-instagram a:hover,
.footer-instagram a:focus {
  border-color: rgba(225, 185, 99, 0.64);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

/* =========================================================
   14. BOTÃO FIXO DO WHATSAPP
   ========================================================= */

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1200;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 21px;

  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--radius-round);

  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #2bd46b,
      var(--whatsapp)
    );

  font-size: 14px;
  font-weight: 700;
  text-align: center;

  box-shadow: 0 16px 38px rgba(32, 185, 90, 0.34);

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    box-shadow var(--transition-fast);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  filter: brightness(1.04);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(32, 185, 90, 0.42);
}

/* =========================================================
   15. LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: none;
  align-items: center;
  justify-content: center;

  padding:
    max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));

  background: rgba(0, 0, 0, 0.91);

  overscroll-behavior: contain;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .lightbox {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.lightbox.active,
.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 86vh;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;

  background: #111114;

  object-fit: contain;

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

@supports (height: 1dvh) {
  .lightbox img {
    max-height: 86dvh;
  }
}

.lightbox-close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  right: max(24px, env(safe-area-inset-right));

  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border-radius: 50%;

  color: #111111;
  background: var(--gold-light);

  font-size: 30px;
  line-height: 1;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-close:focus {
  filter: brightness(1.05);
  transform: scale(1.05);
}

.noscript-message {
  margin: 0;
  padding: 12px;

  color: var(--white);
  background: #9b2c2c;

  text-align: center;
}

/* =========================================================
   16. ANIMAÇÕES
   ========================================================= */

.reveal-item {
  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   17. RESPONSIVIDADE
   ========================================================= */

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .logo-link {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: inline-flex;
  }

  .main-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 1001;

    visibility: hidden;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding:
      18px
      max(20px, env(safe-area-inset-right))
      24px
      max(20px, env(safe-area-inset-left));

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(10, 10, 12, 0.99);

    opacity: 0;
    transform: translateY(-12px);

    transition:
      opacity var(--transition-normal),
      transform var(--transition-normal),
      visibility var(--transition-normal);
  }

  @supports (height: 1dvh) {
    .main-navigation {
      max-height: calc(100dvh - var(--header-height));
    }
  }

  .main-navigation.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .navigation-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    width: min(100%, 620px);
    margin: 0 auto;
  }

  .navigation-link,
  .navigation-cta {
    width: 100%;
  }

  .navigation-link {
    justify-content: center;

    min-height: 48px;
    padding: 8px 12px;

    font-size: 15px;
  }

  .navigation-link::after {
    right: 30%;
    left: 30%;
  }

  .navigation-cta-item {
    margin-top: 8px;
    margin-left: 0;
  }

  .navigation-cta {
    min-height: 50px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 600px;
    padding: 86px 0 76px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(246, 248, 246, 0.96) 0%,
        rgba(242, 247, 244, 0.86) 54%,
        rgba(238, 246, 242, 0.34) 100%
      );
  }

  .gallery-section,
  .gallery-section:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .gallery-section:nth-of-type(even) .gallery-text,
  .gallery-section:nth-of-type(even) .gallery {
    order: initial;
  }

  .gallery-text {
    text-align: center;
  }

  .segment-label {
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-button {
    justify-self: stretch;
    width: 100%;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 0;
  }

  .free-art-box {
    grid-template-columns: 1fr;
  }

  .free-art .button {
    width: 100%;
  }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 30px);
  }

  .hero {
    min-height: 560px;
    padding: 70px 0 62px;
  }

  .hero::before {
    background-position: 66% center;
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(246, 248, 246, 0.93) 0%,
        rgba(242, 247, 244, 0.86) 62%,
        rgba(238, 246, 242, 0.76) 100%
      );
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .step {
    min-height: 0;
  }

  .about,
  .segments,
  .process,
  .trust,
  .gallery-carousel-section,
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-box,
  .gallery-section,
  .trust-box,
  .contact-box {
    padding: 24px;
    border-radius: 24px;
  }

  .gallery-main {
    min-height: 280px;
  }

  .gallery-arrow,
  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .gallery-arrow.prev,
  .carousel-arrow.prev {
    left: 9px;
  }

  .gallery-arrow.next,
  .carousel-arrow.next {
    right: 9px;
  }

  .gallery-button,
  .free-art .button,
  .contact-box .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 15px;

    width: auto;
  }

  .footer {
    padding-bottom: 96px;
  }

  .footer .container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero-highlights span {
    justify-content: center;
    width: 100%;
  }

  .gallery-section {
    padding: 18px;
  }

  .gallery {
    border-radius: 18px;
  }

  .gallery-main {
    min-height: 240px;
  }

  .gallery-counter {
    bottom: 10px;
    left: 10px;
  }

  .carousel-track {
    min-height: 250px;
  }

  .lightbox {
    padding:
      max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  .lightbox-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
  }
}

/* =========================================================
   18. PREFERÊNCIAS DE MOVIMENTO E IMPRESSÃO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .header,
  .menu-toggle,
  .gallery-arrow,
  .carousel-arrow,
  .floating-whatsapp,
  .lightbox,
  .hero-actions,
  .gallery-button,
  .free-art .button,
  .contact-box .button {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .hero,
  .benefits,
  .about,
  .segments,
  .trust,
  .free-art,
  .process,
  .gallery-carousel-section,
  .contact,
  .footer {
    color: #000000;
    background: #ffffff;
  }

  .gallery-section,
  .about-box,
  .trust-box,
  .contact-box,
  .benefit-card,
  .trust-item,
  .step,
  .carousel {
    box-shadow: none;
  }
}