/* ==========================================================================
   PONCETTI $15K — PREMIUM CSS MASTER
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* 1. INTRO 3D FONTE PREMIUM */
.intro3d-title-cinzel {
  font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  background: linear-gradient(180deg,#ffffff 0%,#f0d882 40%,#d7b46a 70%,#b8935a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 30px rgba(215,180,106,0.4)) !important;
}

.intro3d-subtitle-cinzel {
  font-family: 'Cinzel', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.5em !important;
  color: rgba(215,180,106,0.7) !important;
  -webkit-text-fill-color: rgba(215,180,106,0.7) !important;
  font-size: clamp(11px, 1.1vw, 16px) !important;
  text-transform: uppercase !important;
}

.intro3d-tagline {
  margin-top: 20px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* 2. BOTÃO EXEMPLOS NO NAV */
.nav-desktop-container .btn.outline-white {
  font-size: 13px; padding: 9px 20px;
  border: 1px solid transparent;
  background: linear-gradient(#080808, #080808) padding-box,
              linear-gradient(120deg, rgba(215,180,106,0.6) 0%, rgba(255,220,100,0.9) 50%, rgba(215,180,106,0.6) 100%) border-box;
  color: rgba(215,180,106,0.9);
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-right: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.nav-desktop-container .btn.outline-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(215,180,106,0) 0%, rgba(215,180,106,0.12) 50%, rgba(215,180,106,0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-desktop-container .btn.outline-white:hover {
  background: linear-gradient(rgba(215,180,106,0.1), rgba(215,180,106,0.1)) padding-box,
              linear-gradient(120deg, rgba(215,180,106,0.9) 0%, rgba(255,230,120,1) 50%, rgba(215,180,106,0.9) 100%) border-box;
  color: #f0d080;
  box-shadow: 0 0 18px rgba(215,180,106,0.25), 0 0 6px rgba(215,180,106,0.15);
  transform: translateY(-1px);
}
.nav-desktop-container .btn.outline-white:hover::before {
  opacity: 1;
}

/* 3. HERO FUNDO CLEAN */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 110% 70% at 50% -10%, rgba(26,58,143,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(215,180,106,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26,58,143,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(215,180,106,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #060c1f 0%, #04070f 40%, #020304 70%, #000000 100%);
  overflow: hidden;
  padding: 0;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(215,180,106,0.5) 50%,transparent);
}

/* Grain overlay para textura premium */
.hero-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 980px; width: 100%;
  margin: 0 auto;
  padding: 160px 24px 50px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 8px #22c55e; flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform:scale(1); box-shadow:0 0 8px #22c55e; }
  50%      { transform:scale(1.2); box-shadow:0 0 14px #22c55e; }
}

.hero-title-ultra { margin: 0 0 24px; line-height: 1.05; font-weight: 700; }

.hero-line-1, .hero-line-3 {
  display: block;
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-line-3 { animation-delay: 0.7s; }
.hero-line-2 { display: block; margin: 4px 0; }

.hero-word-impact {
  display: inline-block;
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(52px, 9.5vw, 126px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  background: linear-gradient(135deg,#ffffff 0%,#f5e4a0 20%,#d7b46a 45%,#f5e4a0 70%,#ffffff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 50px rgba(215,180,106,0.22));
  animation: fadeInUp 0.8s ease-out 0.5s both, goldShimmer 10s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-description {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 560px; margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #d7b46a, #c09040);
  color: #000; font-size: 14px; font-weight: 700;
  border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(215,180,106,0.28);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.25),transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(215,180,106,0.42); }
.btn-hero-primary:hover::before { opacity: 1; }

.btn-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; }
.btn-hero-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer; letter-spacing: 0.03em;
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(215,180,106,0.4);
  color: rgba(215,180,106,0.95);
  transform: translateY(-2px);
}

/* 4. PORTFOLIO STRIP */
.hero-portfolio-strip {
  position: relative; width: 100%;
  padding: 32px 0 56px;
  overflow: hidden; z-index: 10; flex-shrink: 0;
}

.portfolio-strip-label {
  text-align: center; font-size: 10px;
  font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}

.portfolio-strip-track { overflow: hidden; width: 100%; }

.portfolio-strip-inner {
  display: flex; gap: 16px;
  width: max-content;
  animation: stripScroll 32s linear infinite;
}
.portfolio-strip-inner:hover { animation-play-state: paused; }

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-card {
  flex-shrink: 0; width: 210px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer; display: block;
}
.strip-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(215,180,106,0.28);
  box-shadow: 0 16px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(215,180,106,0.08) inset;
}

.strip-card-preview { width: 100%; height: 120px; overflow: hidden; position: relative; }
.strip-card-iframe-wrap { width: 100%; height: 100%; position: relative; }
.strip-card-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.strip-thumb-label {
  font-family: 'Cinzel', serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}

.strip-card-tag {
  position: absolute; top: 9px; left: 9px;
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.12em;
  padding: 3px 9px; border-radius: 999px; z-index: 2;
  background: rgba(215,180,106,0.12);
  border: 1px solid rgba(215,180,106,0.28);
  color: rgba(215,180,106,0.9);
}
.strip-card-tag--example {
  background: rgba(99,179,237,0.1);
  border-color: rgba(99,179,237,0.28);
  color: rgba(99,179,237,0.9);
}
.strip-card-tag--premium {
  background: rgba(167,139,250,0.1);
  border-color: rgba(167,139,250,0.28);
  color: rgba(167,139,250,0.9);
}

.strip-card-meta { padding: 10px 13px; display: flex; flex-direction: column; gap: 2px; }
.strip-card-name { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.strip-card-type { font-size: 10.5px; color: rgba(255,255,255,0.32); letter-spacing: 0.03em; }

.strip-fade-left, .strip-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 5; pointer-events: none;
}
.strip-fade-left  { left: 0;  background: linear-gradient(90deg,  #030508, transparent); }
.strip-fade-right { right: 0; background: linear-gradient(-90deg, #030508, transparent); }

/* 5. STEPS SEM NÚMERO DUPLO */
.step-card-premium-simple {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px 24px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

/* Único número — badge no canto */
.step-card-premium-simple::before {
  content: attr(data-step);
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  color: rgba(215,180,106,0.9);
  background: rgba(215,180,106,0.08);
  border: 1px solid rgba(215,180,106,0.2);
  border-radius: 6px; padding: 3px 9px; line-height: 1.4;
}

/* Remove qualquer pseudo extra */
.step-card-premium-simple::after { content: none !important; display: none !important; }

.step-card-premium-simple:hover {
  transform: translateY(-6px);
  border-color: rgba(215,180,106,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.step-card-premium-simple .step-content {
  padding-top: 40px;
  font-size: 14.5px; line-height: 1.75;
  color: rgba(255,255,255,0.78);
  position: relative; z-index: 2;
}
.step-card-premium-simple .step-n { display: none !important; }

/* 6. FOOTER MEANDRO */
.footer-meander-wrap {
  width: 100%;
  overflow: hidden;
  height: 20px;
  opacity: 0.3;
  margin-bottom: -1px;
}

.footer-meander-svg {
  display: block;
  width: 100%;
  height: 20px;
}

/* 7. RESPONSIVIDADE */
@media (max-width: 768px) {
  .hero-container { padding: 130px 20px 36px; }
  .hero-word-impact { font-size: 52px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero-primary,.btn-hero-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .strip-card { width: 180px; }
  .strip-card-preview { height: 105px; }
}

/* 8. ANIMAÇÕES */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* MEANDRO NO FOOTER — garante visibilidade */
.footer-meander-wrap {
  width: 100%;
  overflow: visible;
  height: 22px;
  line-height: 0;
  margin-bottom: 0;
}
.footer-meander-svg {
  display: block;
  width: 100%;
  height: 22px;
}

/* ========== FOOTER INFINITE MARQUEE ========== */
.footer-infinite-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, transparent 0%, rgba(215,180,106,0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(215,180,106,0.12);
  padding: 14px 0;
  position: relative;
}

.footer-infinite-marquee::before,
.footer-infinite-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.footer-infinite-marquee::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}
.footer-infinite-marquee::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.fim-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: fimScroll 40s linear infinite;
  width: max-content;
}

.fim-track:hover {
  animation-play-state: paused;
}

@keyframes fimScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fim-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(215,180,106,0.45);
  text-transform: uppercase;
  padding: 0 24px;
  transition: color 0.3s;
}

.fim-dot {
  font-size: 9px;
  color: rgba(215,180,106,0.3);
  margin: 0;
}

/* ====================================================
   HERO ENHANCEMENTS — orbs, grid, stats, scroll hint
   ==================================================== */

/* Linha dourada topo hero */
.hero-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215,180,106,0.55) 50%, transparent);
  pointer-events: none;
  z-index: 2;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(26,58,143,0.22) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(215,180,106,0.09) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite;
}
.hero-orb-3 {
  width: 700px; height: 400px;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(26,58,143,0.14) 0%, transparent 70%);
  animation: orbDrift3 25s ease-in-out infinite;
}
@keyframes orbDrift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes orbDrift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,60px)} }
@keyframes orbDrift3 { 0%,100%{transform:translateX(-50%) scale(1)} 50%{transform:translateX(-50%) scale(1.12)} }

/* Grid perspectiva */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(215,180,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,180,106,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, black 20%, transparent 80%);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  animation: fadeInUp 0.8s ease-out 1.4s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 48px;
}
.hero-stat-n {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #d7b46a 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero-stat-l {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(215,180,106,0.22);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  animation: fadeInUp 1s 2s both;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(215,180,106,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{ opacity: 0.35; transform: scaleY(1); }
  50%{ opacity: 1; transform: scaleY(1.15); }
}

@media (max-width: 768px) {
  .hero-stat { padding: 0 20px; }
  .hero-stat-n { font-size: 20px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 250px; height: 250px; }
}

/* ====================================================
   PORTFOLIO INLINE SECTION
   ==================================================== */
.port-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.port-inline-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(215,180,106,0.12);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.port-inline-card:hover {
  border-color: rgba(215,180,106,0.32);
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(215,180,106,0.1) inset;
}

/* Browser chrome */
.port-inline-browser {
  background: #0d0d12;
}
.port-inline-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
}
.pib-dots { display: flex; gap: 5px; flex-shrink: 0; }
.pib-d { width: 9px; height: 9px; border-radius: 50%; display: block; }
.pib-url {
  flex: 1;
  background: rgba(255,255,255,0.055);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pib-ext {
  color: rgba(215,180,106,0.45);
  display: flex;
  align-items: center;
  transition: color .2s;
  flex-shrink: 0;
}
.pib-ext:hover { color: rgba(215,180,106,0.9); }

/* iframe frame */
.port-inline-frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #080810;
}
.port-inline-frame iframe {
  width: 1280px;
  height: 960px;
  border: none;
  transform: scale(0.469);
  transform-origin: top left;
  pointer-events: none;
}

/* Hover shade + CTA */
.port-inline-shade {
  position: absolute;
  inset: 0;
  background: rgba(5,5,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.port-inline-card:hover .port-inline-shade {
  background: rgba(5,5,10,0.58);
}
.port-inline-cta {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #000;
  background: var(--accent, #d7b46a);
  padding: 13px 28px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.port-inline-card:hover .port-inline-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Meta */
.port-inline-meta {
  padding: 20px 22px;
  border-top: 1px solid rgba(215,180,106,0.1);
}
.port-inline-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--accent, #d7b46a);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.port-inline-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #f0ece4;
  margin-bottom: 4px;
}
.port-inline-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .port-inline-grid { grid-template-columns: 1fr; }
  .port-inline-frame { height: 320px; }
}

/* ====================================================
   DESIGN POLISH — hierarchy, buttons, sections
   ==================================================== */

/* Hero title — mais espaço respiro vertical */
.hero-title-ultra {
  margin: 0 0 28px !important;
  line-height: 1.02 !important;
}

/* Container hero sobe um pouco (mais centrado verticalmente com stats) */
.hero-container {
  padding-top: 130px !important;
  padding-bottom: 40px !important;
}

/* Botão primário — sombra mais dramática */
.btn-hero-primary {
  box-shadow: 0 4px 24px rgba(215,180,106,0.32), 0 0 0 1px rgba(215,180,106,0.15) !important;
}
.btn-hero-primary:hover {
  box-shadow: 0 10px 36px rgba(215,180,106,0.48), 0 0 0 1px rgba(215,180,106,0.3) !important;
}

/* Botão secundário — borda dourada mais visível */
.btn-hero-secondary {
  border-color: rgba(215,180,106,0.3) !important;
  color: rgba(215,180,106,0.85) !important;
}
.btn-hero-secondary:hover {
  background: rgba(215,180,106,0.08) !important;
  border-color: rgba(215,180,106,0.6) !important;
  color: rgba(215,180,106,1) !important;
}

/* Section titles — mais impacto */
.section-title-premium {
  letter-spacing: 0.04em !important;
  line-height: 1.15 !important;
}

/* Cards de steps — borda superior dourada no hover */
.step-card-premium-simple:hover::before {
  content: attr(data-step);
  position: absolute; top: 18px; left: 18px;
}
.step-card-premium-simple {
  border-top: 2px solid transparent;
  transition: border-color 0.3s, transform 0.4s, box-shadow 0.4s !important;
}
.step-card-premium-simple:hover {
  border-top-color: rgba(215,180,106,0.4) !important;
}

/* Deliver cards — glow mais elegante */
.deliver-card-premium:hover {
  box-shadow:
    0 24px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(215,180,106,0.18) inset,
    0 0 50px rgba(215,180,106,0.07) !important;
  transform: translateY(-8px) !important;
}

/* Footer marquee — mais suave */
.fim-item { color: rgba(215,180,106,0.35) !important; }
.fim-item:hover { color: rgba(215,180,106,0.7) !important; }
