/* ========================================
   FELIPE MARTINS PRODUÇÕES — Design System
   ======================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Cal Sans';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/cal-sans/files/cal-sans-latin-400-normal.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/npm/@fontsource/cal-sans/files/cal-sans-latin-400-normal.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === CSS VARIABLES === */
:root {
  /* Colors */
  --black: #0A0A0F;
  --black-light: #141420;
  --black-card: #1A1A2E;
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-glow: rgba(212, 160, 23, 0.3);
  --off-white: #FAF6F0;
  --off-white-dim: #E8E4DE;
  --muted: #8A8A9A;
  --muted-dark: #5A5A6A;
  --white: #FFFFFF;
  --gray-section: #E3E3EA;
  --gray-card: #FFFFFF;
  --gray-border: rgba(10, 10, 15, 0.08);

  /* Typography */
  --font-display: 'Cal Sans', Georgia, serif;
  --font-body: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --max-width: 1440px;
  --section-padding-x: clamp(24px, 10vw, 147px);
  --section-padding-y: clamp(80px, 10vw, 120px);
  --radius-pill: 64px;
  --radius-card: 32px;
  --radius-input: 12px;

  /* Transitions */
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--off-white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* === UTILITY CLASSES === */
.section-padding {
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === TYPOGRAPHY === */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.display-section {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-card {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.display-contact {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

.body-xl {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}

.body-base {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.3;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 0 var(--gold-glow);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -8px var(--gold-glow), 0 0 24px var(--gold-glow);
}

.btn-primary:active {
  transform: scale(0.97) translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(250, 246, 240, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.97) translateY(0);
}

.btn-card {
  padding: 12px 28px;
  font-size: 15px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-pill);
}

.btn-card:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--duration-normal) var(--ease-out);
}

.btn-arrow:hover {
  gap: 12px;
}

.btn-arrow .arrow {
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn-arrow:hover .arrow {
  transform: translateX(4px);
}

/* === WHATSAPP BUTTONS === */
.btn-whatsapp {
  transition: all var(--duration-normal) var(--ease-out);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 160px;
  width: auto;
  transition: height var(--duration-normal) var(--ease-out);
}

.navbar.scrolled .navbar-logo-img {
  height: 128px;
}

.navbar-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navbar-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  opacity: 0.9;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--off-white);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar-links a:hover {
  opacity: 1;
  color: var(--off-white);
}

.navbar-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--off-white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--off-white);
  opacity: 0.8;
  transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu a:hover {
  color: var(--gold);
  opacity: 1;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
  filter: saturate(1.15) contrast(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.4) 0%,
    rgba(10, 10, 15, 0.25) 35%,
    rgba(10, 10, 15, 0.55) 70%,
    var(--black) 100%
  );
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
}

.hero-content .display-hero {
  margin-bottom: 24px;
}

.hero-content .display-hero .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === SECTION SHARED === */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-dark {
  background-color: var(--black);
  color: var(--off-white);
}

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

.section-header {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header .display-section {
  margin-bottom: 20px;
}

.section-header .section-desc {
  color: var(--muted);
  max-width: 600px;
}

.section-light .section-header .section-desc {
  color: var(--muted-dark);
}

.section-light .eyebrow {
  color: var(--gold);
}

/* === O QUE FAZEMOS === */
.what-we-do {
  text-align: center;
}

.what-we-do .section-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.what-we-do .display-section {
  color: var(--black);
}

.what-we-do-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.35;
  color: var(--black);
  max-width: 850px;
  margin: 0 auto 60px;
}

.what-we-do-text .gold {
  color: var(--gold);
}

.section-light .pain-answer::before {
  background: var(--gold);
}

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

.feature-item {
  padding: 40px 32px;
  border-radius: var(--radius-card);
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  box-shadow: 0 2px 8px rgba(10, 10, 15, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 20px 40px -16px rgba(10, 10, 15, 0.14), 0 0 0 1px rgba(212, 160, 23, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--black);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* === SERVIÇOS (Timeline) === */
.services-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 48px;
}

/* Golden connecting line behind cards */
.timeline-line {
  position: absolute;
  top: 72px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  z-index: 0;
}

/* Each step: marker + card */
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Step number marker */
.timeline-marker {
  margin-bottom: 24px;
  z-index: 2;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.2), 0 0 0 4px rgba(212, 160, 23, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
}

.timeline-step:hover .step-number {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 28px rgba(212, 160, 23, 0.4), 0 0 0 6px rgba(212, 160, 23, 0.1);
  transform: scale(1.1);
}

/* Arrow connectors between steps */
.timeline-connector {
  position: absolute;
  top: 58px;
  right: -28px;
  color: var(--gold);
  opacity: 0.4;
  z-index: 3;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.timeline-step:hover .timeline-connector {
  opacity: 0.8;
}

.service-card {
  position: relative;
  padding: 48px 36px 36px;
  border-radius: var(--radius-card);
  background: var(--black-card);
  border: 1px solid rgba(250, 246, 240, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow: 0 24px 48px -16px rgba(212, 160, 23, 0.15);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 160, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon {
  background: rgba(212, 160, 23, 0.15);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--off-white);
  margin-bottom: 20px;
}

.service-list {
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-card .btn-card {
  align-self: flex-start;
  margin-top: auto;
}

/* === SOBRE FELIPE === */
.sobre-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre-photo-col {
  position: relative;
}

.sobre-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.sobre-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  display: block;
  position: relative;
  z-index: 1;
}

.sobre-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  border: 2px solid var(--gold);
  opacity: 0.35;
  z-index: 0;
}

.sobre-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-cargo {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 4px;
}

.sobre-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
}

.sobre-stats {
  display: flex;
  gap: 40px;
  margin-top: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 246, 240, 0.08);
}

.sobre-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sobre-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--off-white);
}

.sobre-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* === DORES DO CLIENTE === */

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  padding: 36px 32px;
  border-radius: var(--radius-card);
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  box-shadow: 0 2px 8px rgba(10, 10, 15, 0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 16px 32px -12px rgba(212, 160, 23, 0.12);
}

.pain-question {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-answer {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.pain-answer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

/* === CONTATO === */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info {
  padding-top: 16px;
}

.contact-info .display-contact {
  color: var(--off-white);
  margin-bottom: 24px;
}

.contact-info .display-contact .gold {
  color: var(--gold);
}

.contact-info-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}

.contact-info-text strong {
  color: var(--off-white);
  font-weight: 600;
}

.contact-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gold);
  opacity: 0.7;
  line-height: 1.4;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 32px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border-radius: var(--radius-input);
  background: rgba(250, 246, 240, 0.06);
  border: 1.5px solid rgba(250, 246, 240, 0.1);
  color: var(--off-white);
  font-size: 16px;
  transition: all var(--duration-normal) var(--ease-out);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 246, 240, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(250, 246, 240, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FAF6F0' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option {
  background: var(--black-card);
  color: var(--off-white);
}

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

.contact-form .btn-primary {
  width: 100%;
  padding: 18px 36px;
  font-size: 17px;
  margin-top: 8px;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(138, 138, 154, 0.4);
  background: var(--black);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--off-white);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-card {
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 32px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer-logo:hover .footer-logo-text {
  opacity: 0.8;
}

.logo-white {
  color: var(--off-white);
}

.logo-gold {
  color: var(--gold);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a.footer-contact-item:hover {
  color: var(--gold);
}

.footer-whatsapp:hover {
  color: #25D366 !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  transition: all var(--duration-normal) var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-dark);
  padding-top: 32px;
  border-top: 1px solid rgba(250, 246, 240, 0.04);
}

.footer-bottom p:last-child {
  align-self: flex-end;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* Staggered hero animation */
.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.hero-reveal:nth-child(1) { transition-delay: 200ms; }
.hero-reveal:nth-child(2) { transition-delay: 400ms; }
.hero-reveal:nth-child(3) { transition-delay: 600ms; }
.hero-reveal:nth-child(4) { transition-delay: 800ms; }

/* === POSICIONAMENTO === */
.positioning-banner {
  padding: 48px 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  text-align: center;
  overflow: hidden;
}

.positioning-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--black);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .sobre-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 600px;
    margin: 0 auto;
  }

  .sobre-photo {
    max-width: 100%;
  }

  .sobre-photo-accent {
    max-width: 100%;
  }

  .services-timeline {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    gap: 16px;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .timeline-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .timeline-connector {
    position: static;
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-x: 20px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-logo-img {
    height: 52px;
  }

  .navbar {
    padding: 10px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 340px;
    padding-bottom: 80px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
