/* ============ FONTES LOCAIS (self-hosted) ============ */
/* High Cruiser — títulos */
@font-face {
  font-family: 'High Cruiser';
  src: url('/fonts/HighCruiser.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Krub — textos, subtítulos e destaques */
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Krub';
  src: url('/fonts/Krub-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Primárias */
  --black: #0a0a0b;
  --orange: #c84c09;
  /* Secundárias */
  --butter: #fff8d2;
  --green: #2f5e2c;
  --blue: #1b2cc1;
  /* Grenadier scale for gradients */
  --g50: #fff8ed;
  --g100: #ffefd4;
  --g200: #ffdca9;
  --g300: #ffc272;
  --g400: #fe9d39;
  --g500: #fd8012;
  --g600: #ee6408;
  --g700: #c84c09;
  --g800: #9c3b10;
  --g900: #7e3310;
  --g950: #441706;
  /* Type */
  --display: 'High Cruiser', sans-serif;
  --body: 'Krub', sans-serif;
  --accent: 'Krub', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--butter);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  font-weight: 400;
}

/* ============ HEAVY GRAIN — global overlay ============ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.2 -0.6'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

/* ============ CUSTOM SUN CURSOR ============ */
.sun-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--g300), var(--orange) 60%, var(--g800));
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  box-shadow:
    0 0 18px rgba(200, 76, 9, 0.9),
    0 0 50px rgba(200, 76, 9, 0.35);
  will-change: transform;
}
.sun-cursor::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,76,9,0.25), transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}
.sun-cursor.hovering { width: 60px; height: 60px; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

/* ============ FIXED SKY BACKGROUND ============ */
/* The sun has a very specific look in the brand: */
/* deep saturated orange at top half → soft cream/butter at bottom half */
/* The "sky" itself behind is mostly black/very dark with subtle warmth */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #1a0a05;
}

/* ============ THE SUN — textured rotating orb ============ */
.sun-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.sun {
  position: absolute;
  left: 50%;
  top: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  transform: translate(-50%, 8vh) scale(1.7);
  transform-origin: top center;
  background:
    radial-gradient(circle at 50% 44%,
      var(--g200) 0%,
      var(--g400) 30%,
      var(--orange) 62%,
      var(--g800) 100%);
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
  box-shadow:
    0 0 50px 24px rgba(255, 140, 0, 0.82),
    -5px 0 10px 1px #ffb453 inset,
    15px 2px 40px 20px #bb6d01c5 inset,
    -24px -2px 50px 25px #ffa265c2 inset,
    150px 0 80px 35px #c55f00aa inset;
}
/* Grain cobrindo o sol inteiro — gira lentamente */
.sun::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch' seed='9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.95'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.9;
  pointer-events: none;
  animation: sunRotate 26s linear infinite;
}
.sun::after { display: none; }

@keyframes sunRotate {
  0%   { background-position: 0 0; }
  100% { background-position: 300px 0; }
}
@keyframes shadowPulse {
  0%, 100% {
    box-shadow:
      0 0 40px 20px rgba(255, 140, 0, 0.8),
      -5px 0 10px 1px #ffb453 inset,
      15px 2px 40px 20px #bb6d01c5 inset,
      -24px -2px 50px 25px #ffa265c2 inset,
      150px 0 80px 35px #c55f00aa inset;
  }
  50% {
    box-shadow:
      0 0 60px 30px rgba(255, 140, 0, 0.9),
      -5px 0 20px 5px #ffb453 inset,
      15px 2px 60px 30px #bb6d01c5 inset,
      -24px -2px 70px 35px #ffa265c2 inset,
      150px 0 100px 45px #c55f00aa inset;
  }
}

/* ============ STAR FIELD — estrelas piscando em todo o site ============ */
.star-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.star { position: absolute; }
.star .cc-row { display: flex; }
.star .cc-bl, .star .cc-br, .star .cc-tl, .star .cc-tr {
  width: 4px;
  height: 5px;
  overflow: hidden;
  position: relative;
}
.star .cc-bl::before, .star .cc-br::before,
.star .cc-tl::before, .star .cc-tr::before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  border-radius: 50%;
}
.star .cc-bl::before { bottom: 0; left: 0;  box-shadow: -5px 5px 0 0 var(--butter); }
.star .cc-br::before { bottom: 0; right: 0; box-shadow: 5px 5px 0 0 var(--butter); }
.star .cc-tl::before { top: 0; left: 0;  box-shadow: -5px -5px 0 0 var(--butter); }
.star .cc-tr::before { top: 0; right: 0; box-shadow: 5px -5px 0 0 var(--butter); }
@keyframes twinkling {
  0%, 100% { opacity: 0.1; }
  50%      { opacity: 1; }
}

.horizon-line {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  height: 35vh;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.5) 40%, var(--black) 100%);
  pointer-events: none;
  opacity: 0;
}

/* Content veil */
.content-veil {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    rgba(10, 10, 11, 0.35);
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
nav.scrolled { padding: 14px 48px; }
nav .brand-spacer { width: 1px; }
nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  pointer-events: auto;
}
nav .nav-links a {
  font-family: var(--accent);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--butter);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 4px rgba(0,0,0,0.4);
}
nav .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
nav .nav-links a:hover { color: var(--orange); }
nav .nav-links a:hover::after { width: 100%; }

/* ============ MORPHING LOGO ============ */
.hero-logo-wrap {
  position: fixed;
  top: var(--logo-top, 50vh);
  left: var(--logo-left, 48px);
  width: var(--logo-width, clamp(320px, 50vw, 680px));
  z-index: 60;
  pointer-events: none;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
  will-change: top, left, width;
}
@media (max-width: 768px) {
  .hero-logo-wrap {
    /* JS sets the left value via CSS var, but on mobile we use a different default */
  }
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ SECTIONS ============ */
section { position: relative; z-index: 2; width: 100%; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
}
.hero-meta {
  position: absolute;
  bottom: 8vh;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
  align-items: flex-end;
}
.hero-meta .coord {
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--butter);
  opacity: 0.85;
  text-transform: uppercase;
}
.hero-meta .ornament {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--butter), transparent);
  opacity: 0.6;
}

/* Tagline mark — bottom of hero, centered */
.hero-mark {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--butter);
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 92vw;
  line-height: 1.5;
}
.hero-mark .accent { color: var(--orange); }

/* ============ SECTION SHARED ============ */
.section-label {
  font-family: var(--accent);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.section-num {
  font-family: var(--accent);
  font-size: 11px;
  color: var(--orange);
  opacity: 0.7;
}

/* ============ ABOUT ============ */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 18vh 48px 12vh;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}
.about-heading {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--butter);
  margin-top: 12px;
  text-transform: uppercase;
}
.about-heading .accent { color: var(--orange); display: block; }

.about-body {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--butter);
  max-width: 640px;
}
.about-body p + p { margin-top: 1.3em; }
.about-body strong {
  font-weight: 700;
  color: var(--butter);
}
.about-body em {
  font-style: italic;
  font-weight: 500;
  color: var(--g200);
}

.about-tagline {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 3em;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 210, 0.18);
  line-height: 1.3;
}

/* ============ FOUNDERS ============ */
.founders {
  padding: 14vh 48px 14vh;
  position: relative;
}
.founders::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.founders-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.founders-heading {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--butter);
  text-transform: uppercase;
  margin: 16px 0 48px;
}
.founders-heading .accent { color: var(--orange); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.founder-card {
  border: 1px solid rgba(255, 248, 210, 0.15);
  border-radius: 24px;
  padding: 32px;
  background: rgba(10, 10, 11, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' seed='4'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.founder-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0.03em;
  color: var(--butter);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.founder-name .accent { color: var(--orange); }
.founder-role {
  font-family: var(--accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--orange);
  margin-top: 12px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.founder-name-origin {
  font-family: var(--body);
  font-size: 14px;
  color: var(--g200);
  margin-top: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============ SERVICES ============ */
.services {
  min-height: 100vh;
  padding: 12vh 48px 14vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.services-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  text-align: center;
}
.services-header .section-label { justify-content: center; }
.services-heading {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--butter);
  margin-top: 16px;
  text-transform: uppercase;
}
.services-heading .accent { color: var(--orange); }

/* ============ SERVICES — STATIC CARDS ============ */
.svc-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.svc-ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 1300px;
}
.svc-card {
  position: relative;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 290px;
  height: 340px;
  border: 2px solid rgba(var(--c), 0.9);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(var(--c), 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 44px rgba(var(--c), 0.42);
}
.svc-card-img {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,
    rgba(var(--c), 0.18) 0%,
    rgba(var(--c), 0.55) 72%,
    rgba(var(--c), 0.92) 100%);
}
.svc-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 7px;
  background: linear-gradient(to top,
    rgba(10, 10, 11, 0.94) 0%,
    rgba(10, 10, 11, 0.55) 50%,
    transparent 100%);
}
.svc-card-num {
  font-family: var(--accent);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--c));
}
.svc-card-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--butter);
}
.svc-card-sub {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 248, 210, 0.8);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--butter);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.svc-card:hover::after { opacity: 0.16; }

@media (max-width: 768px) {
  .svc-card { height: 300px; max-width: none; flex-basis: 100%; }
  .svc-card-name { font-size: 1.2rem; }
  .svc-card-body { padding: 18px; }
}

/* ============ FOOTER ============ */
.footer {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14vh 48px 32px;
  position: relative;
}
.footer-cta { max-width: 1400px; margin: 0 auto; width: 100%; }
.footer-statement {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--butter);
  max-width: 1200px;
  text-transform: uppercase;
}
.footer-statement .accent { color: var(--orange); }
.footer-sub {
  font-family: var(--body);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--butter);
  opacity: 0.85;
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.5;
}
.footer-cta .cta-button { margin-top: 32px; }
.footer-meta {
  max-width: 1400px;
  margin: 8vh auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 248, 210, 0.15);
}
.footer-meta div { display: flex; flex-direction: column; gap: 6px; }
.footer-meta .k {
  font-family: var(--accent);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-transform: uppercase;
}
.footer-meta .v {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--butter);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-meta .v.small {
  font-family: var(--body);
  text-transform: none;
  font-size: 16px;
  letter-spacing: normal;
}
.footer-meta a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-meta a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--butter);
  opacity: 0.6;
  text-transform: uppercase;
}

/* ============ MOBILE ============ */
/* ============ TABLET ============ */
@media (max-width: 1024px) {
  .hero { padding-left: 32px; padding-right: 32px; }
  /* Symmetric safe-zone on tablet for centered layout */
  .about, .founders, .services, .footer { padding-left: 32px; padding-right: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .sun-cursor { display: none; }

  /* NAV */
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  nav .nav-links { gap: 14px; }
  nav .nav-links a {
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  /* Sections base */
  .hero, .about, .founders, .services, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* SUN — escala reduzida no mobile é controlada pelo sunset.js */

  /* HERO */
  .hero { min-height: 100vh; }
  .hero-meta {
    bottom: 14vh;
    right: 20px;
    gap: 10px;
  }
  .hero-meta .coord { font-size: 9px; letter-spacing: 0.2em; }
  .hero-meta .ornament { height: 36px; }
  .hero-mark {
    bottom: 5vh;
    font-size: 10px;
    letter-spacing: 0.15em;
    white-space: normal;
    max-width: 88%;
    line-height: 1.5;
  }
  .hero-mark span { display: inline; }

  /* ABOUT */
  .about {
    padding-top: 16vh;
    padding-bottom: 10vh;
    min-height: auto;
  }
  .about-grid { gap: 28px; }
  .about-heading {
    font-size: 38px;
    line-height: 1;
  }
  .about-body { font-size: 16px; line-height: 1.6; }
  .about-body p + p { margin-top: 1.1em; }
  .about-tagline {
    font-size: 15px;
    margin-top: 2em;
    padding-top: 18px;
    letter-spacing: 0.06em;
  }

  /* FOUNDERS */
  .founders { padding: 10vh 20px; }
  .founders-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .founder-card {
    padding: 24px;
    border-radius: 18px;
  }
  .founder-name { font-size: 22px; }
  .founder-role { font-size: 11px; margin-top: 10px; }
  .founder-name-origin { font-size: 13px; margin-top: 14px; }

  /* SERVICES */
  .services {
    padding-top: 10vh;
    padding-bottom: 12vh;
    min-height: auto;
  }
  .services-header { margin-bottom: 48px; }
  .services-heading {
    font-size: 44px;
    line-height: 1;
  }
  /* FOOTER */
  .footer {
    padding-top: 12vh;
    padding-bottom: 28px;
    min-height: auto;
  }
  .footer-statement {
    font-size: 44px;
    line-height: 1;
  }
  .footer-sub {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 18px;
  }
  .footer-meta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 32px;
    margin-top: 6vh;
  }
  .footer-meta .k { font-size: 9px; }
  .footer-meta .v { font-size: 18px; }
  .footer-meta .v.small { font-size: 15px; word-break: break-word; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 9px;
    margin-top: 32px;
  }

  /* Section labels smaller */
  .section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
  }

  /* Logo morph adjustments on mobile — nav size should be tighter */
  .hero-logo-wrap {
    /* JS will handle positioning, but ensure max width is sane */
  }
}

/* ============ SMALL MOBILE ============ */
@media (max-width: 380px) {
  nav { padding: 14px 16px; }
  nav .nav-links { gap: 12px; }
  nav .nav-links a { font-size: 9px; letter-spacing: 0.12em; }
  .hero, .about, .founders, .services, .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-heading { font-size: 32px; }
  .founders-heading { font-size: 28px; }
  .services-heading { font-size: 36px; }
  .footer-statement { font-size: 36px; }
}
/* ============ SERVICE PAGE LAYOUT ============ */
/* Adicionado para multi-page: páginas /captacao-de-conteudo, /social-media, etc. */

body.service .hero-logo-wrap {
  /* Logo fixa no canto da nav, sem morph */
  position: fixed;
  top: 24px;
  left: 28px;
  width: 90px;
  opacity: 1;
  transform: none;
  z-index: 100;
  pointer-events: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@media (min-width: 769px) {
  body.service .hero-logo-wrap {
    top: 28px;
    left: 48px;
    width: 120px;
  }
}

body.service nav {
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Page header (substitui o hero nas páginas de serviço) */
.service-page-header {
  position: relative;
  z-index: 2;
  padding: 200px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-page-header {
    padding: 160px 24px 80px;
  }
}

.service-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 210, 0.5);
  margin-bottom: 32px;
}

.service-page-breadcrumb a {
  color: rgba(255, 248, 210, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.service-page-breadcrumb a:hover {
  color: var(--g400);
}

.service-page-breadcrumb .sep {
  opacity: 0.4;
}

.service-page-number {
  display: block;
  font-family: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 24px;
}

.service-page-heading {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--butter);
  margin-bottom: 32px;
  max-width: 900px;
}

.service-page-heading .accent {
  color: var(--g400);
  font-style: italic;
}

.service-page-lead {
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 248, 210, 0.82);
  max-width: 680px;
  margin-bottom: 0;
}

/* Body sections inside service pages */
.service-page-body {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-page-body {
    padding: 60px 24px;
  }
}

.service-page-body h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--butter);
  margin-bottom: 32px;
}

.service-page-body h2 .accent {
  color: var(--g400);
  font-style: italic;
}

.service-page-body p {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 248, 210, 0.78);
  margin-bottom: 20px;
  max-width: 720px;
}

.service-page-body p strong {
  color: var(--butter);
  font-weight: 600;
}

.service-page-body p em {
  color: var(--g300);
  font-style: italic;
}

/* Detail grid (what's included) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.service-detail {
  padding: 28px;
  background: rgba(255, 248, 210, 0.04);
  border: 1px solid rgba(255, 248, 210, 0.08);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.service-detail h3 {
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 12px;
}

.service-detail p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 248, 210, 0.8);
  margin: 0;
}

/* CTA at bottom of service page */
.service-page-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 48px 140px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-page-cta {
    padding: 60px 24px 100px;
  }
}

.service-page-cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--butter);
  margin-bottom: 24px;
}

.service-page-cta h2 .accent {
  color: var(--g400);
  font-style: italic;
}

.service-page-cta p {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 248, 210, 0.75);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Botão 3D "pressionável" */
.cta-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--butter);
  background: var(--orange);
  border: 2px solid var(--g400);
  border-radius: 0.7em;
  padding: 1.1em 2.2em;
  margin-bottom: 0.8em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    background 150ms cubic-bezier(0, 0, 0.58, 1);
}
.cta-button::before {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--g900);
  border-radius: inherit;
  box-shadow: 0 0 0 2px var(--g950);
  transform: translate3d(0, 0.7em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1),
    box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
.cta-button:hover {
  background: var(--g600);
  transform: translate(0, 0.2em);
}
.cta-button:hover::before {
  transform: translate3d(0, 0.5em, -1em);
}
.cta-button:active {
  transform: translate(0, 0.7em);
}
.cta-button:active::before {
  transform: translate3d(0, 0, -1em);
}

/* Variante secundária — face escura */
.cta-button.secondary {
  color: var(--butter);
  background: #2a1408;
  border-color: rgba(255, 248, 210, 0.45);
  margin-left: 16px;
}
.cta-button.secondary:hover { background: #3a1d0b; }
.cta-button.secondary::before {
  background: var(--g950);
  box-shadow: 0 0 0 2px #000;
}

@media (max-width: 600px) {
  .cta-button.secondary {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* Service nav: link to other services at bottom of page */
.other-services {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 248, 210, 0.08);
}

@media (max-width: 768px) {
  .other-services {
    padding: 60px 24px;
  }
}

.other-services h3 {
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 24px;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.other-service-link {
  display: block;
  padding: 24px 20px;
  background: rgba(255, 248, 210, 0.03);
  border: 1px solid rgba(255, 248, 210, 0.08);
  border-radius: 4px;
  color: var(--butter);
  text-decoration: none;
  transition: all 0.3s;
}

.other-service-link:hover {
  background: rgba(200, 76, 9, 0.08);
  border-color: var(--g700);
  transform: translateY(-2px);
}

.other-service-link .num {
  font-family: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g400);
  display: block;
  margin-bottom: 8px;
}

.other-service-link .title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ============ LEAD FORM MODAL ============ */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.form-modal.open { opacity: 1; visibility: visible; }

.form-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Estilo dark com borda em gradiente e inputs underline */
.form-modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  border: 3px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(160deg, #1c0d05, #2b1809) padding-box,
    linear-gradient(135deg, #c84c09, #ffc272, #c84c09) border-box;
  box-shadow: 0 0 55px rgba(200, 76, 9, 0.28), 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 36px 32px;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: auto;
  /* esconde a barra de scroll mantendo o scroll funcional */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.form-modal-box::-webkit-scrollbar { width: 0; height: 0; display: none; }
.form-modal.open .form-modal-box { transform: translateY(0) scale(1); }

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 248, 210, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--butter);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}
.form-modal-close:hover { border-color: var(--orange); color: var(--orange); }

.form-progress {
  height: 3px;
  background: rgba(255, 248, 210, 0.12);
  border-radius: 2px;
  margin-bottom: 22px;
  overflow: hidden;
}
.form-progress-bar {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--orange), var(--g300));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-num {
  display: block;
  font-family: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 10px;
}
.form-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--butter);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-title .accent { color: var(--g400); }
.form-lead {
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 248, 210, 0.65);
  margin-bottom: 20px;
}

.form-field { display: block; margin-bottom: 14px; }
.form-field > span {
  display: block;
  font-family: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 4px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--butter);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 1.5px solid rgba(200, 76, 9, 0.7);
  border-radius: 0;
  padding: 8px 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.form-field textarea { resize: none; height: 62px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--g400);
  color: #fff;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23fe9d39' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.form-field select option { background: #1c0d05; color: var(--butter); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9b6b4a; }

.form-radio-group { display: flex; flex-direction: column; gap: 2px; }
.form-radio {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 0.92rem;
  color: rgba(255, 248, 210, 0.8);
  padding: 6px 2px;
  cursor: pointer;
  transition: color 0.18s ease;
}
.form-radio input { width: auto; accent-color: var(--orange); margin: 0; }
.form-radio:hover { color: var(--butter); }
.form-radio:has(input:checked) { color: var(--g400); font-weight: 600; }

.form-error {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.84rem;
  color: #ff8a66;
  margin: 4px 0 0;
  min-height: 1em;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.form-btn {
  flex: 1;
  font-family: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 5em;
  padding: 13px 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.form-btn:hover {
  background: transparent;
  color: var(--orange);
}
.form-btn:active { background: var(--orange); color: var(--black); }
.form-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-btn.ghost {
  flex: 0 0 auto;
  background: transparent;
  color: var(--orange);
}
.form-btn.ghost:hover { background: var(--orange); color: var(--black); }

.form-success { text-align: center; }
.form-success-icon {
  font-size: 42px;
  margin-bottom: 10px;
}
.form-success .form-btn { margin-top: 6px; flex: 0 1 auto; padding-left: 44px; padding-right: 44px; }

@media (max-width: 600px) {
  .form-modal { padding: 14px; }
  .form-modal-box { padding: 32px 22px; border-radius: 20px; }
}

/* ============ PORTFOLIO (página websites) ============ */
.portfolio {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .portfolio { padding: 60px 24px; }
}

.portfolio-header {
  margin-bottom: 48px;
  text-align: center;
}

.portfolio-header .section-num {
  display: block;
  font-family: var(--accent);
  font-size: 1.2rem;
  color: var(--g400);
  margin-bottom: 16px;
}

.portfolio-header h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--butter);
  line-height: 1.05;
  margin-bottom: 16px;
}

.portfolio-header h2 .accent {
  color: var(--g400);
  font-style: italic;
}

.portfolio-intro {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 248, 210, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.portfolio-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 248, 210, 0.03);
  border: 1px solid rgba(255, 248, 210, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--g700);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}

.portfolio-info {
  padding: 24px 24px 28px;
}

.portfolio-tag {
  font-family: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g400);
  display: block;
  margin-bottom: 10px;
}

.portfolio-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--butter);
  margin-bottom: 10px;
}

.portfolio-desc {
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 248, 210, 0.7);
  margin-bottom: 16px;
}

.portfolio-link {
  font-family: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--g400);
  transition: color 0.2s;
}

.portfolio-card:hover .portfolio-link {
  color: var(--butter);
}

/* ============ TESTIMONIALS / DEPOIMENTOS ============ */
.testimonials {
  padding: 14vh 48px 14vh;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-label { justify-content: center; }
.testimonials-heading {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--butter);
  text-transform: uppercase;
  margin-top: 16px;
}
.testimonials-heading .accent { color: var(--orange); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.testimonial-card {
  border: 1px solid rgba(255, 248, 210, 0.15);
  border-radius: 24px;
  padding: 44px 40px 40px;
  background: rgba(10, 10, 11, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' seed='4'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}
.testimonial-mark {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.55;
  display: block;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  user-select: none;
}
.testimonial-quote {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--butter);
  position: relative;
  z-index: 1;
}
.testimonial-author {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 210, 0.18);
  position: relative;
  z-index: 1;
}
.testimonial-name {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.03em;
  color: var(--butter);
  text-transform: uppercase;
  line-height: 1;
}
.testimonial-role {
  font-family: var(--accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--orange);
  margin-top: 10px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonials { padding-left: 32px; padding-right: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .testimonials { padding: 10vh 20px; }
  .testimonials-header { margin-bottom: 48px; }
  .testimonials-heading { font-size: clamp(32px, 9vw, 48px); }
  .testimonial-card { padding: 36px 26px 30px; }
  .testimonial-mark { font-size: 68px; }
  .testimonial-quote { font-size: 16px; line-height: 1.55; }
  .testimonial-name { font-size: 22px; }
  .testimonial-role { font-size: 11px; }
}
@media (max-width: 380px) {
  .testimonials-heading { font-size: 30px; }
}
