/* ============================================
   CALLADO MEDIA CO — REVOLUTIONARY UX EDITION
   Smooth scroll · Custom cursor · 3D tilt · Scroll motion
   Intro animation · Horizontal gallery · Page transitions
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playball&family=Pinyon+Script&family=Syncopate:wght@400;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #de6e27;
  /* main orange */
  --gold-hover: #c55a15;
  --gold-light: #e48a4d;
  --cream: #ebdcc9;
  /* light beige */
  --brown: #3c1e10;
  /* main brown */
  --brown-dark: #2a1005;
  --brown-darker: #3c1e10;
  /* Setting darkest brown to main brown to fit new layout */
  --teal: #2dd4bf;
  --white: #fff;
  --black: #111;
  --text-cream: #ebdcc9;
  --text-muted: rgba(235, 220, 201, 0.65);
  --border: rgba(222, 110, 39, 0.15);
  --border-hover: rgba(222, 110, 39, 0.35);
  --card-bg: rgba(222, 110, 39, 0.05);
  --card-bg-hover: rgba(222, 110, 39, 0.12);
  --font-serif: 'Plus Jakarta Sans', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-wide: 'Syncopate', sans-serif;
  --font-accent: 'Syne', sans-serif;
  --font-script: 'Pinyon Script', cursive;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.2s ease;
  --normal: 0.4s ease;
  --header-height: 80px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--brown-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-cream);
  background: var(--brown-darker);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--fast);
  cursor: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  cursor: none;
  font-family: inherit;
  background: none;
}

input,
select,
textarea {
  cursor: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.font-script {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.2em;
  /* relative to parent */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.font-sans,
.section-title strong {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
}

/* ====== READING PROGRESS BAR ====== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ====== NAVIGATION HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 2000;
  transition: transform 0.6s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s;
  display: flex;
  align-items: center;
}

.header--scrolled {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(222, 110, 39, 0.1);
  height: 70px;
}

.header--hidden {
  transform: translateY(-100%);
}

.header {
  display: none;
  /* Usuário não quer menu */
}

.header__logo-svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  stroke-width: 4;
  fill: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  font-family: var(--font-wide);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text-cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.65rem;
  font-family: var(--font-wide);
  letter-spacing: 1px;
}

/* ====== INTRO SCREEN REFINED ====== */
.intro {
  position: fixed;
  inset: 0;
  background: var(--brown-darker);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  clip-path: inset(0 0 0 0);
}

.intro.done {
  clip-path: inset(100% 0 0 0);
}

.intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.intro__logo {
  width: 100px;
  height: 100px;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  fill: none;
  animation: svgDraw 2.2s var(--ease) forwards;
}

@keyframes svgDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.intro__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: introFadeUp 1s var(--ease) 1s forwards;
}

.intro__brand {
  font-family: var(--font-wide);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.intro__progress {
  width: 200px;
  height: 1px;
  background: rgba(222, 110, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.intro__progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: progressFill 2.2s cubic-bezier(0.1, 0, 0.1, 1) forwards;
}

@keyframes svgDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes introFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressFill {
  to {
    transform: translateX(0);
  }
}

@keyframes intro-line {
  0% {
    width: 0;
  }

  100% {
    width: 120px;
  }
}

/* ============================
   CUSTOM CURSOR — DOT ONLY
   ============================ */
/* ====== CUSTOM CURSOR REFINED ====== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

.cursor--hover {
  width: 60px;
  height: 60px;
  background: rgba(222, 110, 39, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid var(--gold);
  mix-blend-mode: normal;
}

.cursor--expand {
  width: 100px;
  height: 100px;
}

.cursor__label {
  font-family: var(--font-wide);
  font-size: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.cursor--hover .cursor__label {
  opacity: 1;
}

.cursor__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
}


/* ============================
   FILM GRAIN OVERLAY
   ============================ */
.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.5s steps(6) infinite;
}

@keyframes grain-shift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  30% {
    transform: translate(3%, 2%);
  }

  50% {
    transform: translate(-1%, 4%);
  }

  70% {
    transform: translate(2%, -2%);
  }

  90% {
    transform: translate(-3%, 1%);
  }
}

/* ============================
   PAGE TRANSITION
   ============================ */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9997;
  background: var(--brown-darker);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.page-transition.active {
  transform: translateY(0);
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.40s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

.reveal-delay-7 {
  transition-delay: 0.56s;
}

.reveal-delay-8 {
  transition-delay: 0.64s;
}

/* Word-by-word text reveal */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal .word {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.7s var(--ease-out);
}

.text-reveal.visible .word {
  transform: translateY(0);
}

/* Gradient paint reveal for titles */
.gradient-reveal {
  background: linear-gradient(90deg, var(--cream) 50%, var(--text-muted) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1.5s var(--ease-out);
}

.gradient-reveal.visible {
  background-position: 0 0;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  }

  50% {
    box-shadow: 0 4px 35px rgba(201, 169, 110, 0.55);
  }
}

@keyframes scroll-glow {

  0%,
  100% {
    opacity: 0.4;
    filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.3));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(201, 169, 110, 0.6));
  }
}

/* ============================
   BUTTONS — Micro-interactions
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* Ripple effect container */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn--outline {
  border: 1px solid rgba(235, 220, 201, 0.2);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--brown-dark);
  border-color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn--small {
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
}

/* Animated underline for links */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.link-underline:hover::after {
  width: 100%;
}

/* ============================
   HERO
   ============================ */
.poster-hero {
  position: relative;
  height: 100vh;
  background-color: #0d0704;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster__box {
  transform-origin: center center;
  position: relative;
  transition: border-radius 0.3s ease;
  will-change: transform;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.poster__video {
  border-radius: inherit;
}

.hero__video-container iframe,
.hero__video-container video {
  width: 177.77vh;
  /* 16:9 relative to viewport height to ensure fill */
  height: 100vh;
  min-width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  opacity: 1.0;
}

#hero-native-video {
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(222, 110, 39, 0.15);
  z-index: 1;
  transition: opacity 0.5s ease;
}

.poster-hero__content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  text-align: center;
}

.poster {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.poster__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: -10px;
  /* Overlap the orange box */
  position: relative;
  z-index: 3;
}

.poster__welcome {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  color: #111;
  line-height: 1;
  letter-spacing: -0.5px;
  padding-left: 0.5rem;
  padding-bottom: 0.4rem;
  margin: 0;
}

.poster__hand-container {
  width: 100px;
  height: 80px;
  /* Espaço reservado para a mão recortada - opcional */
}

.poster__box {
  background: #E36C22;
  background: linear-gradient(145deg, #f07421, #d65814);
  width: 100%;
  height: clamp(180px, 35vh, 320px); /* REDUCED HEIGHT */
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.poster__box-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
}

.poster__script {
  position: absolute;
  bottom: 8%;
  left: 8%;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  color: #F8F6F0;
  line-height: 1;
  font-weight: 400;
  margin: 0;
}

.poster__arrow {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: clamp(20px, 5vw, 30px);
  height: clamp(20px, 5vw, 30px);
  color: #F8F6F0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.poster__bottom {
  margin-top: clamp(0.5rem, 2vh, 1.5rem);
  text-align: center;
  width: 100%;
}

.poster__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: 0.85;
  letter-spacing: -2px;
  color: #1A1A1A;
  margin: 0;
  text-transform: uppercase;
}

.poster__ctas {
  margin-top: 3rem; /* Space between logo and button */
  pointer-events: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.poster__ctas .btn {
  background: #111;
  color: #fff;
  border-color: #111;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(26, 15, 8, 0.3) 0%, rgba(42, 26, 16, 0.55) 50%, rgba(42, 26, 16, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  /* Class now purely for shared hero properties, layout handled by poster-hero__content above */
}

.intro__brand-img {
    width: 300px; /* MASSIVE */
    height: auto;
    margin-bottom: 0;
    object-fit: contain;
    /* Ultra-Neon Orange filter for #de6e27 */
    filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(3000%) hue-rotate(345deg) brightness(140%) contrast(120%);
}

.poster__title-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0 auto; /* Balanced now */
    display: block;
    position: relative;
    z-index: 10;
    filter: brightness(0) invert(1) sepia(1) saturate(1) hue-rotate(0deg) opacity(0.9) drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.receipt__logo-img {
    height: 45px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0); /* Make it black for the receipt */
}

.footer__logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* Neon Vibrance Orange filter for #de6e27 */
    filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(2000%) hue-rotate(345deg) brightness(130%) contrast(120%);
    margin-bottom: 1.5rem;
}

.footer__brand-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    text-align: center;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* ====== NEW HEADLINE TYPOGRAPHY ====== */
.hero-headline {
    width: 100%;
    margin-bottom: 1.5rem; /* Tighter grouping with logo */
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.85;
    text-align: center;
}

.hero-line {
    font-family: var(--font-accent);
    font-weight: 900;
    font-size: clamp(2.2rem, 9vw, 5.8rem); /* SLIGHTLY SMALLER to guarantee fit */
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.hero-line--solid-cream {
    color: var(--cream);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-line--solid-orange {
    color: var(--gold); /* Use the main brand orange */
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-line--outline-cream {
    color: transparent;
    -webkit-text-stroke: 2px var(--cream);
    text-shadow: 0 0 30px rgba(235, 220, 201, 0.2);
    filter: drop-shadow(0 0 8px rgba(235, 220, 201, 0.4));
}

.hero-line--outline-orange {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    text-shadow: 0 0 30px rgba(222, 110, 39, 0.2);
    filter: drop-shadow(0 0 8px rgba(222, 110, 39, 0.4));
}

.hero__monogram {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 14px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease-out) 0.2s;
}

.hero__monogram small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease-out) 0.5s;
}

.hero__title .highlight {
  color: var(--gold);
  opacity: 0.6;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-cream);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out) 0.8s;
}

.hero__note {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0;
  margin-bottom: 2.5rem;
  transition: opacity 0.8s var(--ease-out) 1s;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out) 1.1s;
}

/* Animate hero content after intro */
body.loaded .hero__monogram,
body.loaded .hero__title,
body.loaded .hero__subtitle,
body.loaded .hero__ctas {
  opacity: 1;
  transform: translateY(0);
}

body.loaded .hero__note {
  opacity: 0.6;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite, scroll-glow 3s infinite;
  cursor: none;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--cream);
  stroke-width: 2;
}

/* ====== FLOATING STARS ====== */
.floating-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Above overlay, below content */
  pointer-events: none;
  overflow: hidden;
}

.float-star {
  position: absolute;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  opacity: 0.15;
  will-change: transform;
}

.star-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation: float-rotate 25s linear infinite;
}

.star-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 5%;
  opacity: 0.1;
  animation: float-rotate-reverse 35s linear infinite;
}

.star-3 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -5%;
  opacity: 0.08;
  animation: float-rotate 40s linear infinite;
}

.star-4 {
  width: 60px;
  height: 60px;
  bottom: 15%;
  right: 20%;
  animation: float-rotate-reverse 20s linear infinite;
}

.star-5 {
  width: 150px;
  height: 150px;
  top: -5%;
  left: 45%;
  opacity: 0.05;
  animation: float-rotate 50s linear infinite;
}

@keyframes float-rotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(120deg);
  }

  66% {
    transform: translateY(15px) rotate(240deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes float-rotate-reverse {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(20px) rotate(-120deg);
  }

  66% {
    transform: translateY(-20px) rotate(-240deg);
  }

  100% {
    transform: translateY(0) rotate(-360deg);
  }
}

/* ====== PRINTER RECEIPT ====== */
.printer-section {
  height: 200vh;
  position: relative;
  background: var(--brown-darker);
  z-index: 5;
}

.printer-sticky {
  position: sticky;
  top: 15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.printer-slot {
  width: 420px;
  max-width: 90vw;
  height: 60px;
  background: linear-gradient(180deg, #e6e6e6 0%, #b8b8b8 100%);
  border-radius: 12px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    inset 0 3px 6px rgba(255, 255, 255, 0.9),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.printer-slit {
  width: 370px;
  max-width: 80vw;
  height: 6px;
  background: #0a0a0a;
  border-radius: 3px;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.9),
    0 1px 1px rgba(255, 255, 255, 0.4);
}

.receipt-wrapper {
  position: relative;
  z-index: 1;
  width: 360px;
  max-width: 78vw;
  margin-top: -30px;
  clip-path: inset(0px -100px -100px -100px);
}

.receipt {
  background: #fdfdfd;
  color: #111;
  padding: 3rem 2rem 1.5rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transform: translateY(-100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  background-image: linear-gradient(180deg, #fdfdfd 0%, #ececec 100%);
  backdrop-filter: blur(10px);
  will-change: transform;
}

.receipt-edge {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='15'%3E%3Cpolygon fill='%23ececec' points='0,0 20,0 10,15'/%3E%3C/svg%3E");
  background-size: 20px 15px;
  background-repeat: repeat-x;
}

.receipt__header {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  overflow-wrap: break-word;
}

.receipt__divider {
  border-top: 1.5px dashed #666;
  /* alterada cor e espessura da linha tracejada */
  margin: 1.2rem 0;
}

.receipt__title {
  font-family: var(--font-wide);
  font-weight: 800;
  font-size: clamp(1.5rem, 7vw, 2.4rem);
  /* Reduzindo mais para não vazar do papel */
  line-height: 1;
  color: #D36A29;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.receipt__title span {
  white-space: nowrap;
  display: block;
}

.receipt__list {
  list-style: none;
  font-size: clamp(0.85rem, 4vw, 1rem);
  /* Fonte ligeiramente maior nas listas */
  line-height: 1.3;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0;
  margin-top: 1.5rem;
  padding-left: 0;
}

.receipt__list li {
  margin-bottom: 0.2rem;
  word-wrap: break-word;
}

.receipt__text {
  font-size: clamp(1.1rem, 5vw, 1.4rem);
  /* Texto final com mais presença */
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  margin-bottom: 1.5rem;
}

.receipt__text .text-orange {
  color: #D36A29;
  font-weight: 800;
}

.receipt__barcode {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-top: 1rem;
}

.receipt__barcode-img {
  width: 100%;
  height: 80px;
  background: linear-gradient(to right,
      #111 0%, #111 3%, transparent 3%, transparent 5%, #111 5%, #111 6%, transparent 6%, transparent 8%,
      #111 8%, #111 12%, transparent 12%, transparent 14%, #111 14%, #111 16%, transparent 16%, transparent 17%,
      #111 17%, #111 22%, transparent 22%, transparent 24%, #111 24%, #111 25%, transparent 25%, transparent 29%,
      #111 29%, #111 32%, transparent 32%, transparent 34%, #111 34%, #111 36%, transparent 36%, transparent 37%,
      #111 37%, #111 41%, transparent 41%, transparent 44%, #111 44%, #111 46%, transparent 46%, transparent 48%,
      #111 48%, #111 53%, transparent 53%, transparent 55%, #111 55%, #111 58%, transparent 58%, transparent 60%,
      #111 60%, #111 62%, transparent 62%, transparent 64%, #111 64%, #111 66%, transparent 66%, transparent 67%,
      #111 67%, #111 72%, transparent 72%, transparent 74%, #111 74%, #111 77%, transparent 77%, transparent 79%,
      #111 79%, #111 83%, transparent 83%, transparent 84%, #111 84%, #111 86%, transparent 86%, transparent 88%,
      #111 88%, #111 91%, transparent 91%, transparent 93%, #111 93%, #111 95%, transparent 95%, transparent 98%,
      #111 98%, #111 100%);
}

/* ====== STATS ====== */
.stats {
  padding: 5rem 0;
  background: rgba(201, 169, 110, 0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-wide);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ====== TRUST BANNER ====== */
.trust {
  padding: 4rem 0;
  background: rgba(42, 26, 16, 0.6);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.trust__tracks-container {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.trust__track {
  display: flex;
  align-items: center;
  gap: 10rem;
  white-space: nowrap;
  position: relative;
}

/* Using negative margins for overlap since 'gap' doesn't support negative values */
.trust__track--ltr {
  z-index: 3;
  animation: marquee 45s linear infinite;
}

.trust__track--rtl {
  margin-top: -4rem;
  /* Adjusted for smaller logos to maintain 'almost touching' look */
  z-index: 2;
  animation: marquee-rtl 55s linear infinite;
}

.trust__track--ltr-slow {
  margin-top: -4rem;
  z-index: 1;
  animation: marquee 70s linear infinite;
}

.trust__item {
  flex-shrink: 0;
  opacity: 0.85;
  transition: all 0.4s var(--ease);
}

.trust__item:hover {
  opacity: 1;
  transform: scale(1.08);
  z-index: 10;
}

.trust__item img {
  max-height: 175px;
  width: auto;
  filter: grayscale(1) brightness(2.8) contrast(0.7);
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ====== SECTION HEADER ====== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: block;
}

.section-label::first-letter {
  font-family: var(--font-script);
  font-size: 2.5rem;
  margin-right: -4px;
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  transform: translateY(0.15em);
  /* Push down to baseline */
  text-transform: uppercase;
}

/* Drop-cap for titles, descriptions and quotes */
.section-title::first-letter,
.section-desc::first-letter,
.founder__quote::first-letter {
  font-family: var(--font-script);
  font-size: 1.8em;
  color: var(--gold);
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  transform: translateY(0.1em);
  /* Compensa a flutuação da fonte script */
  margin-right: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Handle opening quote for founder quote */
.founder__quote::first-letter {
  font-size: 2.2em;
  transform: translateY(0.15em);
}

.section-title {
  font-family: var(--font-wide);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.section-title .highlight {
  color: var(--gold);
  opacity: 0.5;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* ============================
   SERVICE CARDS (HOME) — PINNED HORIZONTAL SCROLL
   ============================ */
.services-home {
  /* Reduced spacing to bring sections closer */
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(42, 26, 16, 0.95), rgba(61, 43, 31, 0.95));
  z-index: 10;
}

.services-home__sticky {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  /* Let parent handle padding */
}

.services-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  /* Space for the large script letters and to avoid clipping */
}

/* Horizontal track */
.services-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 4rem 2rem;
  will-change: transform;
}

.services-track .service-card {
  min-width: 450px;
  max-width: 550px;
  height: 400px;
  flex-shrink: 0;
}

.services-home .services-hint {
  text-align: center;
  padding: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.5;
}

.services-home .services-hint span {
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}

/* Grid layout for "other services" section on service detail pages */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.5rem 1.8rem;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s, transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 800px;
  backdrop-filter: blur(8px);
  /* Efeito blur solicitado */
}

/* Texture Overlays to ensure readability + glassmorphism effect */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 16, 0.75);
  /* Aumentado o escurecimento para o blur não atrapalhar a legibilidade */
  z-index: 1;
  transition: background 0.4s var(--ease);
}

.service-card:hover::after {
  background: rgba(42, 26, 16, 0.45);
  /* Lighten slightly on hover */
}

/* Ensure content is above the overlay */
.service-card__glare,
.service-card__icon,
.service-card__title,
.service-card__desc,
.service-card__cta {
  position: relative;
  z-index: 2;
}

/* Specific Texture Assignments */
.card--wood {
  background-image: url('assets/images/textures/wood.png');
}

.card--concrete {
  background-image: url('assets/images/textures/concrete.png');
}

.card--baroque {
  background-image: url('assets/images/textures/baroque.png');
}

.card--paper {
  background-image: url('assets/images/textures/paper.png');
}

.card--stone {
  background-image: url('assets/images/textures/stone.png');
}

.card--metal {
  background-image: url('assets/images/textures/metal.png');
}

.card--plaster {
  background-image: url('assets/images/textures/plaster.png');
}

.card--wood-alt {
  background-image: url('assets/images/textures/wood.png');
  filter: brightness(0.8);
}


.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--normal);
}

/* Glare overlay for 3D tilt */
.service-card__glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 16px;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card__glare {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: float 4s ease-in-out infinite;
  transform: translateZ(30px);
  transition: transform 0.4s var(--ease);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.service-card:hover .service-card__icon {
  transform: translateZ(50px) scale(1.1);
  color: var(--gold-light);
}

.service-card__title {
  font-family: var(--font-wide);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 1rem;
  transform: translateZ(20px);
}

.service-card__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  transform: translateZ(10px);
}

.service-card__cta {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.4s var(--ease);
  transform: translateZ(15px);
}

.service-card:hover .service-card__cta {
  gap: 0.8rem;
}

/* ====== PORTFOLIO — HORIZONTAL SCROLL ====== */
.portfolio {
  padding: 6rem 0 2rem;
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.95), rgba(42, 26, 16, 0.98));
  overflow: hidden;
}

.portfolio__horizontal {
  position: relative;
}

.portfolio__track {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  transition: transform 0.1s linear;
  will-change: transform;
}

.case-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--normal);
  min-width: 380px;
  flex-shrink: 0;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.case-card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
}

.case-card__body {
  padding: 1.5rem;
}

.case-card__cat {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.case-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.case-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.case-card__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.case-stat__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.case-stat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.case-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.case-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  color: var(--text-muted);
}

/* Horizontal scroll hint */
.portfolio__hint {
  text-align: center;
  padding: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.5;
}

.portfolio__hint span {
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}

/* ====== INSTAGRAM ====== */
.instagram {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.95), rgba(42, 26, 16, 0.98));
  position: relative;
  overflow: hidden;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.instagram__item {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: block;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(211, 106, 41, 0.85);
  /* var(--gold) with alpha */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.instagram__overlay span {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.instagram__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--gold);
}

.instagram__item:hover img {
  transform: scale(1.1);
}

.instagram__item:hover .instagram__overlay {
  opacity: 1;
}

.instagram__item:hover .instagram__overlay span {
  transform: translateY(0);
}

.instagram__footer {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.instagram__warning {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.4;
}

.instagram__warning span {
  color: var(--cream);
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ====== BLOG ====== */
.blog {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(42, 26, 16, 0.98), rgba(61, 43, 31, 0.95));
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--normal);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(61, 43, 31, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.blog-card__tags {
  display: flex;
  gap: 0.5rem;
}

.blog-card__tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 20px;
  color: var(--gold);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(240, 230, 214, 0.35);
}

.blog-card__read {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
}

/* ====== FOUNDER — PINNED ====== */
.founder {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(42, 26, 16, 0.98), rgba(61, 43, 31, 0.95));
}

.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.founder__text-wrapper {
  position: relative;
}

.founder__text h2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.founder__role {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.founder__text p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.founder__text p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.founder__quote {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(240, 230, 214, 0.8);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--card-bg);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}

.founder__stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
}

.founder__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.founder__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.founder__image-sticky {
  position: sticky;
  top: 6rem;
}

.founder__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder__image-placeholder {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
}

.founder__image-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(42, 26, 16, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: 6rem 0;
  background: var(--brown);
}

.testimonials__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__quote {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.testimonials__author {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

/* ====== CONTACT ====== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.95), rgba(42, 26, 16, 0.98));
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact__info h2 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact__info>p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.contact__value {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact__form-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact__form-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact__form-box>p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 230, 214, 0.25);
}

.form-group select {
  appearance: none;
}

.form-group select option {
  background: var(--brown);
  color: var(--cream);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group--full {
  grid-column: 1 / -1;
}

/* ====== FOOTER ====== */
/* ============================
   RODAPÉ EDITORIAL LUXURY
   ============================ */
.footer {
  background: var(--brown-darker);
  padding: 8rem 0 4rem;
  border-top: 1px solid rgba(222, 110, 39, 0.05);
  text-align: center;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer__brand-area {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold);
  font-family: var(--font-wide);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.footer__logo-svg {
  width: 45px;
  height: 45px;
  stroke: var(--gold);
  stroke-width: 4;
  fill: none;
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.8;
}

.footer__nav {
  display: flex;
  gap: 6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  min-width: 150px;
}

.footer__link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-cream);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}

.footer__link:hover {
  opacity: 1;
  transform: translateY(-3.5px);
  color: var(--gold);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(235, 220, 201, 0.05);
  margin: 4rem 0 3rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__copyright {
  font-family: var(--font-wide);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__legal-link:hover {
  color: var(--gold);
}

@media (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    gap: 4rem;
  }

  .footer__nav {
    gap: 3rem;
    flex-wrap: wrap;
  }
}


/* ====== EMAIL FLOAT ====== */
.email-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
  transition: all var(--normal);
  animation: pulse-glow 3s infinite;
}

.email-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
}

.email-float svg {
  width: 18px;
  height: 18px;
}

/* ============================
   SERVICE DETAIL PAGES
   ============================ */
.back-home {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity var(--fast);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: rgba(42, 26, 16, 0.6);
  backdrop-filter: blur(10px);
}

.back-home:hover {
  opacity: 1;
  color: var(--gold);
}

.back-home svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brown-dark), var(--brown));
}

.service-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.service-hero__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}

.service-hero__label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-hero__title .highlight {
  color: var(--gold);
  opacity: 0.5;
}

.service-hero__desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.service-detail {
  padding: 5rem 0;
}

.service-detail:nth-child(even) {
  background: linear-gradient(180deg, rgba(42, 26, 16, 0.98), rgba(61, 43, 31, 0.95));
}

.service-detail:nth-child(odd) {
  background: linear-gradient(180deg, rgba(61, 43, 31, 0.95), rgba(42, 26, 16, 0.98));
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.service-detail h2 .highlight {
  color: var(--gold);
  opacity: 0.5;
}

.service-detail p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-detail__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  transition: all var(--normal);
}

.feature-item:hover {
  border-color: var(--border-hover);
  background: var(--card-bg-hover);
  transform: translateY(-3px);
}

.feature-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-item__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.feature-item__desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  counter-increment: step;
}

.process-step__number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.process-step__content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.process-step__content p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.other-services {
  padding: 6rem 0;
  background: var(--brown-dark);
  border-top: 1px solid var(--border);
}

.other-services .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta-banner {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(42, 26, 16, 0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-banner h2 .highlight {
  color: var(--gold);
  opacity: 0.5;
}

.cta-banner p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__track {
    padding-left: 2rem;
  }
}

@media (max-width: 900px) {
  .founder__grid {
    grid-template-columns: 1fr;
  }

  .founder__image-sticky {
    position: relative;
    top: 0;
  }

  .founder__image {
    max-height: 400px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__monogram {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-detail__features {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-width: 280px;
  }

  /* Hide custom cursor on touch devices */
  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .founder__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================
   NEW SERVICE DETAIL LAYOUT
   ============================ */

.service-page {
  background: var(--brown-dark);
  color: var(--cream);
}

.service-page .container {
  max-width: 1200px;
}

/* HERO */
.service-hero-new {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 0;
  background: radial-gradient(circle at center, rgba(61, 43, 31, 0.5) 0%, var(--brown-dark) 100%);
  overflow: hidden;
}

.service-hero-new__label {
  font-family: var(--font-wide);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.service-hero-new__title {
  font-family: var(--font-wide);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  max-width: 1000px;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.service-hero-new__title span {
  color: var(--gold);
  background: linear-gradient(to right, var(--gold), #ff9a44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-new__desc {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 3rem;
}

/* INTRO SECTION */
.service-intro {
  padding: 8rem 0;
  background: var(--brown-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-intro__label {
  font-family: var(--font-wide);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: block;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.service-intro__title {
  font-family: var(--font-wide);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  text-transform: uppercase;
}

.service-intro__text p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* FEATURES GRID */
.service-features {
  padding: 8rem 0;
  background: var(--brown-dark);
}

.service-features__label {
  font-family: var(--font-wide);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4rem;
  display: block;
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  /* For the grid line effect */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card {
  background: var(--brown-dark);
  padding: 4rem 3rem;
  transition: background 0.4s var(--ease);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.footer__logo {
  margin-bottom: 0;
}

.feature-card__num {
  font-family: var(--font-wide);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  opacity: 0.5;
}

.feature-card__title {
  font-family: var(--font-wide);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-card__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* PROCESS LIST */
.service-process {
  padding: 8rem 0;
  background: var(--brown-darker);
}

.service-process__content {
  max-width: 900px;
  margin: 0 auto;
}

.service-process__header {
  text-align: center;
  margin-bottom: 5rem;
}

.service-process__title {
  font-family: var(--font-wide);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-process__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-item {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-item:last-child {
  border-bottom: none;
}

.process-item__num {
  font-family: var(--font-wide);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
}

.process-item__title {
  font-family: var(--font-wide);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.process-item__desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* BOTTOM CTA BANNER */
.service-bottom-cta {
  padding: 10rem 0;
  background: radial-gradient(circle at center, rgba(222, 110, 39, 0.15), transparent 70%), var(--brown-dark);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-bottom-cta__title {
  font-family: var(--font-wide);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.service-bottom-cta__title span {
  color: var(--gold);
}

.service-bottom-cta__desc {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-features__grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ==================== METHODOLOGY / COMPARISON ==================== */
.methodology {
  padding: 12rem 0;
  background: var(--color-bg);
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 8rem;
}

.step-card {
  background: #D36A29;
  padding: 4rem 3rem;
  border-radius: 4px;
  color: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.step-num {
  font-family: var(--font-wide);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  display: block;
  line-height: 1;
  margin-bottom: 2rem;
}

.step-title {
  font-family: var(--font-wide);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.step-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.compare-card {
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.compare-content {
  padding: 5rem 4rem;
  flex-grow: 1;
  border-radius: 8px 8px 0 0;
}

.compare-card--common .compare-content {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
}

.compare-card--callado .compare-content {
  background: #D36A29;
}

.compare-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.compare-headline {
  font-family: var(--font-wide);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4rem;
}

.compare-list {
  list-style: none;
}

.compare-list li {
  padding: 1.5rem 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.compare-card--common .compare-list li::before {
  content: "\2014";
  margin-right: 15px;
  color: #ff4444;
}

.compare-card--callado .compare-list li::before {
  content: "+";
  margin-right: 15px;
  color: #fff;
  font-weight: 800;
}

.compare-outcome {
  padding: 3rem 4rem;
  border-radius: 0 0 8px 8px;
}

.compare-card--common .compare-outcome {
  background: #000;
  color: #fff;
}

.compare-card--callado .compare-outcome {
  background: #fff;
  color: #111;
}

.outcome-label {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.compare-outcome p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .step-cards {
    grid-template-columns: 1fr;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .compare-content, .compare-outcome {
    padding: 3rem 2rem;
  }
  .compare-headline {
    font-size: 1.7rem;
  }
}

/* ==================== MOBILE REFINEMENTS ==================== */
@media (max-width: 768px) {
  /* General Layout */
  section:not(.printer-section):not(.hero) {
    padding: 5rem 0 !important;
  }

  .container {
    padding: 0 1.5rem !important;
  }

  /* Hero Optimization */
  .hero-line {
    font-size: clamp(2rem, 12vw, 3.5rem) !important;
    letter-spacing: -1px !important;
  }

  .poster-hero__content {
    padding-top: 2rem !important; /* Reduced to avoid gap at top */
  }

  .poster__title-img {
    max-width: 90% !important;
  }

  .hero__scroll {
    bottom: 1.5rem !important;
  }

  /* Section Typography */
  .section-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .section-desc {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* Stats Section */
  .stats__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }

  .stat__number {
    font-size: 2.5rem !important;
  }

  /* Services Track */
  .services-track {
    flex-direction: column !important;
    padding: 0 1rem !important;
    gap: 1.5rem !important;
  }

  .service-card {
    min-width: 100% !important;
    padding: 2.5rem 1.5rem !important;
  }

  /* Receipt Section Fixes */
  .printer-section {
    height: 110vh !important; /* Extremely tight to force next section up */
    display: block !important;
    background: #0d0704 !important;
    position: relative !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .printer-sticky {
    height: auto !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 2rem !important; /* Minimal top padding */
    position: sticky !important;
    top: 0 !important;
    background: radial-gradient(circle at center, rgba(61, 43, 31, 0.3) 0%, transparent 70%) !important;
  }

  .printer-slot {
    width: 90vw !important;
    max-width: 90vw !important;
    height: 40px !important;
    z-index: 10 !important;
    background: linear-gradient(180deg, #d1d1d1 0%, #a1a1a1 100%) !important;
    border-radius: 8px !important;
  }

  .printer-slit {
    width: 80vw !important;
    max-width: 80vw !important;
    height: 4px !important;
    background: #000 !important;
  }

  .receipt-wrapper {
    width: 80vw !important;
    max-width: 80vw !important;
    margin-top: -20px !important;
    z-index: 5 !important;
    clip-path: inset(0px -50px -2000px -50px) !important;
  }

  .receipt {
    width: 100% !important;
    padding: 2.5rem 1.2rem !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8) !important;
  }

  .receipt__title {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
  }

  .receipt__text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Comparison Grid */
  .compare-content {
    padding: 3rem 1.5rem !important;
  }

  .compare-headline {
    font-size: 1.8rem !important;
    margin-bottom: 2rem !important;
  }

  .compare-list li {
    font-size: 1rem !important;
    padding: 1rem 0 !important;
  }

  .compare-outcome {
    padding: 2rem 1.5rem !important;
  }

  /* Service Hero (Specific pages) */
  .service-hero-new {
    padding: 6rem 0 4rem !important;
    text-align: center !important;
  }

  .service-hero-new__title {
    font-size: 1.8rem !important;
  }

  .service-hero-new__desc {
    font-size: 1rem !important;
  }

  /* Trust Section Mobile */
  .trust__track {
    gap: 3rem !important;
  }

  .trust__track--rtl, .trust__track--ltr-slow {
    margin-top: -1rem !important;
  }

  .trust__item img {
    max-height: 60px !important;
  }

  /* Intro Animation Mobile */
  .intro__brand-img {
    width: 200px !important;
  }

  /* Founder Section Mobile */
  .founder__grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .founder__image-sticky {
    position: relative !important;
    top: 0 !important;
    order: -1 !important;
  }

  .founder__stats {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Contact Section Mobile */
  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer__top {
    flex-direction: column !important;
    gap: 3rem !important;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 2rem !important;
  }

  .footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  /* Fix for horizontal overflow */
  body, html {
    overflow-x: hidden !important;
    position: relative;
  }

  .back-home {
    top: 1rem !important;
    left: 1rem !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
  }

  /* Final Mobile Polish */
  .cursor {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }

  /* Adjust horizontal scroll sections to be vertical or properly hidden */
  .portfolio__track {
    flex-direction: column !important;
    align-items: center !important;
    transform: none !important;
    gap: 2rem !important;
  }

  .case-card {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .instagram__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }

  /* Additional Tweaks */
  .compare-card {
    min-height: auto !important;
  }

  .compare-headline {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
}
