/* ==========================================================================
   STORYMAKER WALTINHO MILANETTO - LUXURY ANIMATIONS & HORIZONTAL GRID SCROLLER
   ========================================================================== */

:root {
  --bg-dark: #0f0d0b;
  --bg-card: #171512;
  --bg-card-hover: #1f1c18;
  --bg-card-border: #29241f;
  
  --gold-primary: #d99f43;
  --gold-bright: #eab765;
  --gold-dark: #b88230;
  --gold-tag: #c4964e;
  
  --text-main: #f4efe6;
  --text-muted: #a3988b;
  --text-dim: #786e63;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   PHONE VIDEO PLAYER MODAL (OPENS ONLY ON PLAY CLICK)
   -------------------------------------------------------------------------- */
.phone-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.phone-video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.phone-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(18px);
}

.modal-phone-frame {
  position: relative;
  z-index: 10;
  width: 340px;
  height: 680px;
  max-height: 90vh;
  box-shadow: 0 25px 80px rgba(0,0,0,0.95), 0 0 50px rgba(217, 159, 67, 0.4);
  animation: none !important;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-video-modal.open .modal-phone-frame {
  transform: scale(1);
}

.phone-modal-close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: rgba(23, 21, 18, 0.9);
  border: 1px solid #d99f43;
  color: #fff;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-fast);
}

.phone-modal-close:hover {
  background: #d99f43;
  color: #000;
  transform: scale(1.1);
}

/* Card Play Icon Badge */
.card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(217, 159, 67, 0.9);
  color: #0f0d0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 30px rgba(217, 159, 67, 0.6);
  transition: var(--transition-bounce);
  z-index: 4;
}

.story-card:hover .card-play-icon {
  transform: translate(-50%, -50%) scale(1.18);
  background: #eab765;
  box-shadow: 0 0 45px rgba(234, 183, 101, 0.8);
}

/* --------------------------------------------------------------------------
   PORTFOLIO HORIZONTAL 3x2 GRID SCROLLER WITH NAV ARROWS
   -------------------------------------------------------------------------- */
.portfolio-scroll-wrapper {
  position: relative;
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  width: 100%;
}

.portfolio-grid.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 32px;
  padding: 10px 4px 24px;
  -webkit-overflow-scrolling: touch;
}

.portfolio-grid-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  scroll-snap-align: start;
}

.portfolio-grid.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.portfolio-grid.horizontal-scroll::-webkit-scrollbar-track {
  background: #171512;
  border-radius: 100px;
}

.portfolio-grid.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 100px;
}

.portfolio-scroll-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-scroll-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.btn-scroll-arrow:hover {
  background: var(--gold-primary);
  color: #0f0d0b;
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(217, 159, 67, 0.4);
}

.story-bar-clickable {
  flex: 1;
  padding: 6px 0;
  cursor: pointer;
}

.story-tap-zone {
  position: absolute;
  top: 90px;
  bottom: 90px;
  width: 35%;
  z-index: 8;
  cursor: pointer;
}

.story-tap-zone.tap-left {
  left: 0;
}

.story-tap-zone.tap-right {
  right: 0;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-on-scroll.delay-1 { transition-delay: 0.12s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.24s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.36s; }

/* AURORA GOLD BACKGROUND */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-1 {
  top: -10%;
  left: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 159, 67, 0.8) 0%, rgba(184, 130, 48, 0.2) 100%);
}

.blob-2 {
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 183, 101, 0.7) 0%, rgba(196, 150, 78, 0.2) 100%);
  animation-delay: -6s;
}

.blob-3 {
  top: 40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 152, 139, 0.5) 0%, rgba(217, 159, 67, 0.2) 100%);
  animation-delay: -12s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-bright) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold-tag);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.section-tag.justify-center {
  justify-content: center;
}

.section-serif-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
  max-width: 840px;
}

.section-serif-headline.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.section-header.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold-fill {
  background: var(--gold-primary);
  color: #0f0d0b;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(217, 159, 67, 0.3);
}

.btn-gold-fill:hover {
  background: var(--gold-bright);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(217, 159, 67, 0.5);
}

.btn-gold-outline {
  border-color: var(--bg-card-border);
  background: var(--bg-card);
  color: var(--text-main);
}

.btn-gold-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 13, 11, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 13, 11, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-tag);
  text-transform: uppercase;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--gold-primary);
  letter-spacing: 0.5px;
}

.btn-orcamento {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-orcamento:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(217, 159, 67, 0.4);
  transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 159, 67, 0.12);
  border: 1px solid rgba(217, 159, 67, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-bright);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  user-select: none;
  -webkit-user-select: none;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats-mini {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  backdrop-filter: blur(12px);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  width: fit-content;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-primary);
  line-height: 1;
}

.mini-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--bg-card-border);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #1a1714;
  border: 10px solid #2b251e;
  border-radius: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(217, 159, 67, 0.2);
  position: relative;
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite alternate;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(217, 159, 67, 0.35);
}

@keyframes phoneFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0d0c0a;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: #000;
}

.story-bars {
  display: flex;
  gap: 4px;
  position: absolute;
  top: 48px;
  left: 12px;
  right: 12px;
  z-index: 9;
}

.story-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress {
  height: 100%;
  background: #fff;
  width: 0%;
}

.story-user-header {
  position: absolute;
  top: 60px;
  left: 16px;
  right: 16px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0f0d0b;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.story-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.live-badge {
  margin-left: auto;
  background: var(--gold-primary);
  color: #0f0d0b;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.story-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.story-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
}

.story-caption-box {
  position: absolute;
  bottom: 80px;
  left: 16px;
  right: 16px;
  z-index: 5;
}

.story-tag {
  background: var(--gold-primary);
  color: #0f0d0b;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.story-caption-box h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.story-caption-box p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.story-cta-sticker {
  background: #fff;
  color: #0f0d0b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.story-footer-nav {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-input-fake {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.story-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.story-icon-btn.heart-btn.liked {
  color: var(--gold-primary);
  transform: scale(1.2);
}

/* HAIRLINE DIVIDER */
.gold-hairline-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
}

.gold-hairline-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-card-border), transparent);
}

.gold-crown-small {
  color: var(--gold-primary);
  font-size: 1rem;
}

/* SECTION 1: O QUE EU FILMO */
.filmo-grid {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.filmo-card {
  padding: 36px 40px;
  border-bottom: 1px solid var(--bg-card-border);
  transition: var(--transition-smooth);
}

.filmo-card:last-child {
  border-bottom: none;
}

.filmo-card:hover {
  background: var(--bg-card-hover);
  padding-left: 48px;
}

.filmo-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.filmo-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
}

.filmo-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* PORTFOLIO STORY CARDS (9:16) */
.filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: #0f0d0b;
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(217, 159, 67, 0.35);
  transform: translateY(-2px);
}

.story-card {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--bg-card-border);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.story-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,13,11,0.95) 100%);
  transition: var(--transition-fast);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(23, 21, 18, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--bg-card-border);
  color: var(--gold-tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
}

.card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.card-client {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: var(--transition-fast);
  color: var(--text-main);
}

.card-stats {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-stats i {
  color: var(--gold-primary);
}

.story-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(217, 159, 67, 0.3);
}

.story-card:hover .card-img {
  transform: scale(1.08);
}

/* STRATEGY */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  backdrop-filter: blur(16px);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: translateY(-8px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(217, 159, 67, 0.15);
  border: 1px solid rgba(217, 159, 67, 0.3);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESULTS */
.results-box {
  background: radial-gradient(circle at center, #262019 0%, #12100e 100%);
  border: 1px solid var(--bg-card-border);
  padding: 60px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.results-info p {
  color: var(--text-muted);
  font-size: 1rem;
}

.results-counters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.counter-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.counter-item:hover {
  transform: translateX(10px);
  border-color: var(--gold-primary);
}

.counter-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold-primary);
  min-width: 120px;
}

.counter-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-main);
  text-transform: uppercase;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  aspect-ratio: 4 / 5;
  transition: var(--transition-smooth);
}

.about-image-card:hover {
  transform: scale(1.02);
  border-color: var(--gold-primary);
}

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

.about-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(23, 21, 18, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
}

.about-floating-badge i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.sobre-p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.gear-stack {
  margin: 32px 0;
}

.gear-stack h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-main);
}

.gear-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gear-tags span {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gear-tags i {
  color: var(--gold-primary);
}

/* CONTATO */
.contato-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contato-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.2) contrast(1.1);
}

.contato-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 11, 0.85) 0%, rgba(15, 13, 11, 0.95) 100%);
}

.contato-section .container {
  position: relative;
  z-index: 2;
}

.contato-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: -32px auto 40px;
}

.contato-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-contact-gold {
  background: var(--gold-primary);
  color: #0f0d0b;
  font-weight: 700;
  padding: 16px 36px;
  box-shadow: 0 10px 30px rgba(217, 159, 67, 0.4);
}

.btn-contact-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-3px) scale(1.03);
}

.btn-contact-outline {
  background: rgba(23, 21, 18, 0.8);
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  padding: 16px 32px;
  backdrop-filter: blur(10px);
}

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

/* FOOTER */
.footer {
  border-top: 1px solid var(--bg-card-border);
  padding: 40px 0;
  background: #0b0a08;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .portfolio-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats-mini {
    margin: 0 auto;
  }
  
  .results-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portfolio-grid-page {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }
  
  .hero-section {
    padding-top: 130px;
  }
}
