/* ============================================================
   ROADMAP DZA — PREMIUM STYLESHEET v2
   Clean, modern, icon-based. No emoji headings.
============================================================ */

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

:root {
  --orange: #FF4B1F; 
  --orange-dim: #D13B16;
  --orange-glow: rgba(255, 75, 31, 0.2);
  --orange-soft: rgba(255, 75, 31, 0.08);
  --blue-glow: rgba(0, 153, 153, 0.15); /* PDF Teal/Blue glow */
  --blue-navy: #030b12; /* PDF Navy Blue */
  --bg: #010409; 
  --bg-alt: rgba(3, 11, 18, 0.5);
  --bg-card: rgba(255, 255, 255, 0.03); 
  --border: rgba(255, 255, 255, 0.08);
  --border-o: #FF4B1F; 
  --text: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dim: #D1D5DB;
  --white: #FFFFFF;
  --sidebar-w: 272px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bg-accent: #0058f3;
  --bg-accent-glow: rgba(255, 90, 31, 0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  background-color: #010409; /* Deep Solid Black from PDF */
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(0, 88, 243, 0.02) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 20px 20px;
  pointer-events: none;
  z-index: -2;
}

/* ── TOP PROGRESS BAR ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 9999;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #FF8C42);
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(255, 90, 31, .5);
}

/* ── MOBILE TOPBAR ── */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  padding: 0 1.1rem;
  z-index: 1000;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

.brand-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: .3s var(--ease);
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #02080d 0%, #010409 100%);
  border-right: 1px solid var(--border);
  z-index: 900;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 90, 31, .15) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 90, 31, .2);
  border-radius: 3px;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1.5rem 0 2.5rem;
}

.sidebar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  gap: 0.75rem;
}

.sidebar-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 90, 31, 0.3));
  margin-bottom: 0.5rem;
}

.sidebar-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--white);
  text-align: center;
}

.sidebar-progress-wrap {
  padding: 1rem 1.25rem 0.5rem;
}

.sidebar-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.sidebar-progress-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.sidebar-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #FF8C42);
  border-radius: 4px;
  transition: width .3s ease;
}

.nav-list {
  list-style: none;
  padding: .5rem 0;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.70rem 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: .25s var(--ease);
}

.nav-ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 90, 31, .06);
  border-left-color: rgba(255, 90, 31, .4);
}

.nav-link.active {
  color: var(--white);
  background: rgba(255, 90, 31, .1);
  border-left-color: var(--orange);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.nav-link {
  position: relative;
}

.nav-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.is-expanded .nav-sub {
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
  margin-bottom: 0.5rem;
}

.nav-sub-link {
  padding: .38rem 1.25rem .38rem 1.5rem;
  margin-left: 1.25rem;
  border-left: 1px solid rgba(255, 90, 31, 0.1);
  font-size: .73rem;
}

.nav-sub-link:hover {
  background: transparent;
  border-left-color: var(--orange);
}

.nav-sub-link.active {
  background: transparent;
  border-left-color: var(--orange);
  color: var(--white);
}

.nav-sub-link.active::after {
  display: none; /* No dot for sub-links */
}

/* Chevron indicator */
.nav-chevron {
  margin-left: auto;
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
  opacity: 0.5;
}

.is-expanded .nav-chevron {
  transform: rotate(90deg);
  opacity: 1;
  color: var(--orange);
}

.sub-num {
  color: var(--orange);
  font-weight: 700;
  margin-right: 4px;
  font-size: .7rem;
}

.sidebar-close-wrap {
  display: none;
  padding: 1rem 1.25rem 0;
}

.sidebar-close {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .76rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: .25s var(--ease);
}

.sidebar-close:hover {
  background: rgba(255, 90, 31, .1);
  color: var(--white);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 850;
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  display: block;
}

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ── SECTIONS ── */
.section {
  padding: 4.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden; /* Ensure watermarks stay within section */
}

.section-alt {
  background: rgba(3, 11, 18, 0.4); /* Semi-transparent PDF Navy */
}

.section-divider {
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 180, 180, 0.12) 0%, transparent 75%);
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ── EYEBROW + TITLES ── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .8rem;
}

.sec-eyebrow span {
  font-variant-numeric: tabular-nums;
  background: rgba(255, 90, 31, .12);
  border: 1px solid rgba(255, 90, 31, .2);
  padding: .2rem .55rem;
  border-radius: 100px;
  font-size: .7rem;
}

.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}

.sec-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 720px;
}

/* ── HERO ── */
.section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 8vh 2rem 6vh; /* Dynamic padding to push content down */
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  border-bottom: 1px solid var(--border);
}

/* Hero background photo */
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top; /* Centers relative to the content area, keeping head visible */
  pointer-events: none;
  background-attachment: scroll; /* Fixed was causing centering issues relative to the sidebar */
}

/* Gradient overlay: dark fade at bottom */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(3, 11, 18, 0.1) 0%,
      rgba(3, 11, 18, 0.3) 25%,
      rgba(3, 11, 18, 0.7) 50%,
      rgba(1, 4, 9, 0.9) 80%,
      #010409 100%);
  pointer-events: none;
  z-index: 1;
}

/* Global grid moved to body::before */

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 88, 243, .12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 740px;
  margin-top: 52vh; /* Pushing it more to keep heads visible */
}

.hero-main-logo {
  height: 250px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 45px rgba(255, 90, 31, 0.4));
  transition: height 0.3s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 90, 31, .1);
  border: 1px solid rgba(255, 90, 31, .22);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  animation: fadeDown .7s ease both;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 0.75rem;
  animation: fadeUp .7s ease .1s both;
}

.hero-desc {
  font-size: .97rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  animation: fadeUp .7s ease .2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem; /* Reduzido para aproximar as métricas da base */
  animation: fadeUp .7s ease .3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: .25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #e04a14);
  color: var(--white);
  border: 1px solid var(--border-o); /* Permanent orange border */
  box-shadow: 0 4px 20px rgba(255, 90, 31, .3);
}

/* Botões fixos */

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-o); /* Standardized orange border */
  color: var(--text);
}

.btn-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  border: 1.5px solid #128C7E !important; /* Proper WhatsApp dark green border */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.btn-whatsapp img {
  width: 18px;
  height: 18px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .09);
  color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeUp .7s ease .4s both;
}

.stat {
  text-align: center;
}

.stat-n {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.stat-l {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .08);
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--text-muted);
  font-size: .68rem;
  letter-spacing: .08em;
  animation: fadeIn 1s ease 1s both;
  z-index: 2;
}

.scroll-chevron {
  animation: bounce 1.8s ease infinite;
}

/* ── INFO CARDS (horizontal) ── */
.cards-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 90, 31, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-o); /* Permanent orange border */
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 90, 31, .15);
  border: 1px solid var(--border-o);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.info-card-icon svg {
  width: 18px;
  height: 18px;
}

.info-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.info-card-body p {
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin-bottom: .8rem;
}

/* ── SECTION CONTENT (Clean Layout) ── */
.sc-content-section {
  margin-top: 3.5rem; /* More air between sections */
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 90, 31, 0.03);
}

.sc-content-section:last-of-type {
  border-bottom: none;
}

.sc-content-section p {
  margin-bottom: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.sc-section-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 2rem; /* Increased margin below sub-headers */
  color: var(--orange);
}

.sc-section-header i {
  width: 24px;
  height: 24px;
}

.sc-section-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  letter-spacing: -0.01em;
}

/* ── MAP EMBED ── */
.map-embed-container {
  width: 100%;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay-cta {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  margin: 0 !important;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

@media (max-width: 600px) {
  .map-overlay-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
    justify-content: center;
  }
}

/* ── GLASS PROFILE CARDS ── */
.profile-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.profile-card {
  aspect-ratio: 1 / 1.32; /* Taller card to prevent clipping */
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 31, .3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.profile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}

.profile-card:hover .profile-bg {
  transform: scale(1.1); /* Slightly more zoom for drama */
  filter: blur(4px) brightness(0.4); /* Darker on hover for text readability */
}

.profile-info {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 1.5rem 1.15rem 1.15rem;
  background: linear-gradient(to top,
      #000 0%,
      rgba(0, 0, 0, 0.85) 30%,
      rgba(0, 0, 0, 0.45) 65%,
      transparent 100%);
  backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.profile-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.profile-desc {
  font-size: .8rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, .8) !important;
  margin-bottom: 0 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.tubarao-contact {
  font-size: 0.72rem;
  color: var(--orange);
  margin-top: 0;
  display: block;
  font-weight: 700;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.tubarao-email {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.25; /* Comfy break */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.profile-card:hover .tubarao-contact {
  opacity: 1;
  max-height: 40px; /* Allow for potential wrapping */
  margin-top: 0.25rem;
}

.profile-card:hover .tubarao-email {
  opacity: 1;
  max-height: 60px; /* Generous for long emails */
}

/* ── CTA ROWS ── */
.cta-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
}

.cta-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .7rem .9rem;
  background: rgba(255, 75, 31, 0.08);
  border: 1px solid var(--border-o); /* Permanent orange border */
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: .85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-row:not(.cta-placeholder) {
  cursor: pointer;
}

.cta-row>svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.cta-row>i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.cta-row strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-glass-card .link-ref {
  display: block !important;
  color: #D1D5DB !important;
  font-size: 0.8rem !important;
  opacity: 1 !important;
  margin-top: 4px;
  max-width: none !important;
  white-space: normal !important;
  overflow: visible !important;
}

.cta-placeholder {
  cursor: default;
  opacity: .75;
}

.card-cta {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: .85rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: color .2s;
}

.card-cta:hover {
  color: #FF8C42;
}

.card-cta svg,
.card-cta i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.link-ref {
  display: block;
  font-size: .74rem;
  font-weight: 400;
  color: var(--orange);
  opacity: .7;
  margin-top: 2px;
  word-break: break-all;
}

.ph-tag {
  display: block;
  font-size: .74rem;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
  background: rgba(255, 255, 255, .03);
  border: 1px dashed rgba(255, 255, 255, .08);
  padding: 2px 6px;
  border-radius: 4px;
  word-break: break-all;
}

/* ── PLACEHOLDER BLOCKS ── */
.placeholder-block {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .025);
  border: 1px dashed rgba(255, 255, 255, .07);
  border-radius: 10px;
  color: var(--text-dim);
  font-size: .87rem;
}

.placeholder-block>svg,
.placeholder-block>i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.placeholder-inline {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: .75rem;
  padding: .65rem .9rem;
  background: rgba(255, 255, 255, .025);
  border: 1px dashed rgba(255, 255, 255, .07);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--text-dim);
}

.placeholder-inline>svg,
.placeholder-inline>i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

/* ── HIGHLIGHT CARD ── */
.highlight-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 90, 31, .06);
  border: 1px solid rgba(255, 90, 31, .15);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: .9rem;
}

.highlight-card p {
  color: var(--text);
}

.highlight-card strong {
  color: var(--orange);
}

.highlight-card>svg,
.highlight-card>i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 1.75rem;
}

.step-tile {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dim));
  opacity: 0;
  transition: opacity .25s;
}

.step-tile:hover {
  border-color: var(--border-o);
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255, 90, 31, .1);
}

.step-tile:hover::before {
  opacity: 1;
}

.step-n {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
}

.step-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dim);
}

.step-arrow {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

/* ── STACKED 3D SLIDER (Section 3.1) ── */
.stacked-slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 2rem;
  height: 680px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-card {
  position: absolute;
  width: 320px;
  height: 580px;
  background: rgba(10, 10, 10, 0.2);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.5rem 1.5rem 2rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Empurrar texto para baixo */
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.6);
  user-select: none;
}

/* Card Background Image & Overlay */
.stacked-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.stacked-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 5, 5, 1) 0%,
      rgba(5, 5, 5, 0.85) 35%,
      rgba(10, 10, 10, 0.2) 70%,
      transparent 100%);
  z-index: -1;
}

/* States */
.stacked-card.is-active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 75, 31, 0.2);
}

.stacked-card.is-left {
  z-index: 5;
  opacity: 0.6;
  pointer-events: auto;
  transform: translateX(-120%) scale(0.85);
  filter: none;
}

.stacked-card.is-right {
  z-index: 5;
  opacity: 0.6;
  pointer-events: auto;
  transform: translateX(120%) scale(0.85);
  filter: none;
}

.stacked-card.is-active:hover {
  border-color: rgba(255, 90, 31, 0.4);
}

.stacked-card.is-active .stacked-card-bg {
  opacity: 0.5;
}

/* Internal Content Tweaks for Slider */
.stacked-card .company-header {
  margin-bottom: 0.8rem;
}

.stacked-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: #fff;
}

.stacked-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.stacked-card .cta-list {
  margin-top: 1rem;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  gap: 0.8rem;
}

.stacked-card .cta-row {
  width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  flex: 0 0 auto !important;
}

.stacked-card .cta-row i,
.stacked-card .cta-row svg {
  margin: 0 !important;
  width: 20px !important;
  height: 20px !important;
}

.stacked-card .cta-list .cta-row strong {
  font-size: 0.8rem;
}

/* Slider Controls */
.stacked-controls {
  position: absolute;
  bottom: -40px;
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.stacked-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.stacked-dot.is-active {
  background: var(--orange);
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--orange);
}

/* Slider Arrows */
.stacked-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s var(--ease);
}

.stacked-arrow i,
.stacked-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.stacked-arrow:hover {
  background: rgba(255, 90, 31, 0.15);
  border-color: rgba(255, 90, 31, 0.4);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 75, 31, 0.2);
}

.stacked-arrow--left {
  left: -20px;
}

.stacked-arrow--left:hover i,
.stacked-arrow--left:hover svg {
  transform: translateX(-3px);
}

.stacked-arrow--right {
  right: -20px;
}

.stacked-arrow--right:hover i,
.stacked-arrow--right:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1000px) {
  .stacked-slider-container {
    height: auto;
    perspective: none;
    margin-bottom: 4rem;
  }

  .stacked-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }

  .stacked-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
    padding: 2rem 1.5rem; /* Better horizontal breathing room */
  }

  .stacked-card-overlay {
    background: linear-gradient(to top, rgba(5,5,5, 1) 0%, rgba(5,5,5, 0.95) 100%);
  }

  .stacked-controls,
  .stacked-arrow {
    display: none;
  }
}

.company-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.company-card {
  background: rgba(255, 90, 31, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border-o); /* Permanent orange border */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.company-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 90, 31, .1);
  border: 1px solid rgba(255, 90, 31, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.company-icon svg,
.company-icon i {
  width: 20px;
  height: 20px;
}

.company-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.company-card>p {
  font-size: .88rem;
  color: var(--text-dim);
  margin-bottom: .6rem;
}


/* ── FOOTER ── */
.footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 2.5rem;
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--white);
}

.footer .footer-inner p {
  font-size: .76rem;
  color: var(--text-muted);
}

.btn-top {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: .45rem 1.1rem;
  border: 1px solid rgba(255, 90, 31, .25);
  border-radius: 100px;
  transition: .25s var(--ease);
}

.btn-top:hover {
  background: rgba(255, 90, 31, .1);
}

/* ── REVEAL IMPROVED ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal--left {
  transform: translateX(-40px) translateY(0);
}

.reveal--right {
  transform: translateX(40px) translateY(0);
}

.reveal--scale {
  transform: scale(0.9) translateY(0);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}
/* ── SECTION WATERMARKS ── */
.section-watermark {
  position: absolute !important; /* Force absolute to prevent pushing content */
  right: -5%;
  top: 50%;
  transform: translateY(-50%) scale(1.1);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  height: 60%;
  max-width: 45%;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 1.5s var(--ease), transform 2s var(--ease);
}

/* Specific class to avoid conflict with general .reveal transform */
.section-watermark.visible {
  opacity: 0.15 !important;
  transform: translateY(-50%) translateX(-2%) scale(1) !important;
}

.section-watermark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Specific adjustment for hero since it's centered */
.section-hero .section-watermark {
  right: 2%;
  height: 50%;
}

/* Make Bem-Vindo (s1) watermark larger as requested */
.s1-hero .section-watermark {
  height: 105% !important;
  max-width: 65%;
  right: -5%;
  opacity: 0.14 !important;
}

.s1-hero .section-watermark.visible {
  opacity: 0.18 !important;
  transform: translateY(-50%) translateX(0) scale(1.1) !important;
}

/* ── MOUSE PARALLAX HELPERS ── */
.parallax-target {
  transition: transform 0.2s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  will-change: transform;
}

/* ── FLOAT ANIMATION ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 90, 31, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0);
  }
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* ── KEYFRAMES ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

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

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-topbar {
    display: flex;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform .3s var(--ease);
    width: min(var(--sidebar-w), 85vw);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close-wrap {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .section {
    padding: 3rem 1.5rem 2.5rem; /* Increased lateral breathing space */
  }

  .section-hero {
    padding: 8vh 1.2rem 10rem !important; /* Extremely high bottom padding to prevent metric overlap */
    min-height: 100svh;
  }

  .hero-inner {
    margin-top: 45vh !important;
    margin-bottom: 3rem;
  }

  .hero-main-logo {
    height: 100px; /* Reduced for mobile */
    margin-bottom: 0.5rem;
  }

  .hero-title {
    font-size: 1.7rem !important;
  }

  .hero-stats {
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-n {
    font-size: 1.2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .65rem;
  }

  .info-card {
    flex-direction: column;
    gap: .85rem;
  }

  #progress-bar {
    top: 56px;
  }

  section[id] {
    scroll-margin-top: 64px;
  }
}

@media (max-width: 600px) {
  .profile-cards-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .map-embed-container {
    height: 380px;
  }
}

/* ============================================================
   STEP CARD GRID
============================================================ */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Individual card --- */
.sc-card {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-o); /* Always use the clear border */
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

/* Cards fixos */

/* Active/open card gets orange ring */
.sc-card.is-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .2), 0 16px 48px rgba(0, 0, 0, .6);
  transform: scale(1.02);
}

/* Background image */
.sc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left center;
  transition: transform .5s var(--ease);
}

.s1-card:hover {
  background: rgba(255, 90, 31, .05) !important;
  border-color: rgba(255, 90, 31, .2) !important;
  transform: none !important;
}

/* ── CTA Glass Cards specific hover fixes ── */
.cta-glass-card:hover .sc-img {
  /* Prevent background image scaling/zooming if any parent classes apply it */
  transform: none !important;
}


/* Gradient overlay */
.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
      rgba(10, 10, 10, .25) 0%,
      rgba(10, 10, 10, .72) 60%,
      rgba(10, 10, 10, .9) 100%);
  transition: background .3s ease;
}

.sc-card.is-active .sc-overlay {
  background: linear-gradient(150deg,
      rgba(255, 90, 31, .12) 0%,
      rgba(10, 10, 10, .78) 60%,
      rgba(10, 10, 10, .92) 100%);
}

@media (max-width: 768px) {
  .sc-overlay {
    background: linear-gradient(150deg,
        rgba(10, 10, 10, .85) 0%,
        rgba(10, 10, 10, .95) 70%,
        rgba(5, 5, 5, 1) 100%);
  }
}

/* Text content */
.sc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 1rem;
  z-index: 2;
}

.sc-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
  opacity: .9;
}

.sc-title {
  font-family: 'Sora', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

/* Plus / X icon */
.sc-plus {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}

.sc-plus svg {
  width: 13px;
  height: 13px;
}

.sc-card:hover .sc-plus {
  background: rgba(255, 90, 31, .2);
  border-color: rgba(255, 90, 31, .4);
}

.sc-card.is-active .sc-plus {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

/* ── Dynamic panel injection removes need for explicit pinned rows ── */

/* ── Shared Detail Panel (grid item spanning full width) ── */
.sc-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease), margin-top .45s var(--ease);
  border-radius: 16px;
  overflow: visible;
  /* natural flow below the clicked card row */
  margin-top: 0;
  overflow-x: hidden;
}

.sc-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 0.25rem;
}

.sc-panel-inner {
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-o); /* Borda laranja reforçada */
  border-radius: 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .32s ease .08s, transform .32s ease .08s;
  position: relative;
  width: 100%;
  box-sizing: border-box; /* Crucial para evitar estouro com padding */
}

/* Arrow notch pointing up toward the clicked card */
.sc-panel-inner::before {
  content: '';
  position: absolute;
  top: -9px;
  left: var(--arrow-left, 16.67%);
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background: var(--bg-card);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 -2px 0 rgba(255, 90, 31, .22));
  transition: left .3s var(--ease);
  pointer-events: none;
}

.sc-panel.is-open .sc-panel-inner {
  opacity: 1;
  transform: none;
  overflow: visible;
}

/* Panel head */
.sc-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 90, 31, .1);
  padding-bottom: 1rem;
}

.sc-panel-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.sc-panel-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  flex: 1;
  margin: 0;
}

.sc-panel-close {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(255, 90, 31, .15);
  border: 1px solid var(--border-o);
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Panel cleanup */

/* Panel body content */
.sc-panel-inner>p {
  font-size: .95rem; /* Slightly larger text */
  color: var(--text-dim);
  margin: 0 1.5rem 1.2rem; /* More air between paragraphs */
  line-height: 1.6;
}

.sc-panel-inner>p:first-of-type {
  margin-top: .2rem;
}

.sc-panel-inner>.placeholder-block,
.sc-panel-inner>.cta-list,
.sc-panel-inner>.cards-col,
.sc-panel-inner>.highlight-card,
.sc-panel-inner>div:not(.sc-panel-head):not(.schedule-body):not(.schedule-sticky-cta) {
  margin: 0 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem; /* Respiros nas bordas do painel expandido */
}

/* schedule-body and sticky CTA manage their own spacing */
.sc-panel-inner > .schedule-body,
.sc-panel-inner > .schedule-sticky-cta {
  margin: 0 !important;
}

.sc-panel-inner>*:last-child {
  margin-bottom: 0;
}

/* Add bottom spacing only for non-schedule panels */
.sc-panel-inner > .sc-panel-footer {
  margin-bottom: 0;
}


/* ── Panel footer nav ── */
.sc-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1.5rem 1.1rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}

@media (max-width: 600px) {
  .sc-panel-footer {
    padding: 1rem;
    gap: 0.5rem;
  }
  .sc-nav-btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
}

.sc-nav-pos {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  flex: 1;
  text-align: center;
}

.sc-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border-o) !important; /* Forced bold orange border */
  background: rgba(255, 90, 31, .08);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}

/* Nav fixo */

.sc-nav-btn:disabled {
  opacity: .3;
  cursor: default;
}

.sc-nav-btn.sc-next {
  background: var(--orange) !important;
  border: 1.5px solid var(--border-o) !important;
  color: var(--white);
}

/* Next fixo */

/* ============================================================
   SECTION 1 — GLASSMORPHISM HERO
============================================================ */
.s1-hero {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Cinematic background */
.s1-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.s1-hero:hover .s1-bg {
  transform: scale(1.0);
}

/* dark gradient overlay */
.s1-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(8, 8, 8, .78) 0%,
      rgba(8, 8, 8, .55) 40%,
      rgba(8, 8, 8, .85) 100%);
}

/* inner wrapper */
.s1-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.s1-btn-responsive {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: 110px;
  min-width: 300px;
  flex: 1 1 380px;
  overflow: hidden;
}

/* Lead specific removals - used global .sec-lead now */

/* Separator line before cards */
.s1-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 2.5rem;
  width: 100%;
}

/* Individual cards inside glass hero get a slightly different bg */
.s1-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
  backdrop-filter: none;
}

.s1-card:hover {
  background: rgba(255, 90, 31, .05) !important;
  border-color: rgba(255, 90, 31, .2) !important;
  transform: none !important;
  background-size: cover !important;
  background-position: center !important;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .s1-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .s1-inner .sec-title {
    font-size: 1.8rem !important;
  }

  .s1-btn-responsive {
    min-height: 90px !important;
    min-width: 100% !important;
    padding: 1rem 1.25rem !important;
  }
  
  .s1-btn-responsive strong {
    font-size: 1rem !important;
  }
  
  .s1-btn-responsive .link-ref {
    font-size: 0.75rem !important;
  }

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

  .s1-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 500px) {
  .s1-inner {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sc-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sc-card {
    height: 145px !important; /* Mais baixo para ocupar menos tela */
  }

  .sc-title {
      font-size: 0.95rem !important;
  }
  
  .sc-num {
      font-size: 1.25rem !important;
  }

  .sc-panel-inner > p,
  .sc-panel-inner > .placeholder-block,
  .sc-panel-inner > .cta-list,
  .sc-panel-inner > .cards-col,
  .sc-panel-inner > .highlight-card,
  .sc-panel-inner > div:not(.sc-panel-head):not(.schedule-body):not(.schedule-sticky-cta):not(.sc-panel-footer) {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-bottom: 0.75rem !important;
    width: auto !important; /* Permite que margin lateral funcione sem estourar */
  }

  .sc-panel-head {
    padding: 1.25rem 1rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .sc-panel-title {
      font-size: 0.95rem !important;
  }
  
  /* Tabs wrap fix (CORRECT ID: .schedule-nav) */
  .schedule-nav {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 5px !important;
      padding: 0 1rem 1.25rem !important;
      width: 100% !important;
      box-sizing: border-box !important;
  }
  .schedule-tab {
      flex: 1 1 auto;
      font-size: 0.72rem !important;
      padding: 0.5rem 0.75rem !important;
      white-space: nowrap;
      text-align: center;
  }
  
  .schedule-body {
      width: 100% !important;
      overflow-x: hidden !important;
  }
}

/* ============================================================
   GLOBAL GLASSMORPHISM THEME — PAGE-WIDE GLASS SURFACE
============================================================ */

/* Theme fixo */

/* ── 3. Highlight / info callout cards ── */
.highlight-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 8px 24px rgba(0, 0, 0, .2);
}

/* ── 4. CTA rows (link blocks) ── */
.cta-row {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Theme cleanup */

/* ── 5. Sidebar glass ── */
.nav-sidebar {
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-right-color: rgba(255, 255, 255, .07);
  box-shadow: 4px 0 32px rgba(0, 0, 0, .35);
}

/* ── 6. Section inner panels get a very subtle glass tint ── */
.section-inner {
  position: relative;
  z-index: 1;
}

/* ── 7. Placeholder blocks ── */
.placeholder-block {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: 12px;
}

/* ── 8. Tools / ecosystem grid cards ── */
.tool-card,
.eco-card,
.feat-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 8px 24px rgba(0, 0, 0, .2);
}

.tool-card:hover,
.eco-card:hover,
.feat-card:hover {
  border-color: rgba(255, 90, 31, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 12px 40px rgba(255, 90, 31, .1);
}

/* ── 9. Card grid step-cards (sc-card) glare enhancement ── */
.sc-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 8px 32px rgba(0, 0, 0, .35);
}

/* ── 10. sc-panel inner glass ── */
.sc-panel-inner {
  background: rgba(14, 14, 14, .72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-color: var(--border-o); /* Consistent orange border override */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 24px 64px rgba(0, 0, 0, .4);
}

/* ── 11. Footer glass ── */
footer,
.footer {
  background: rgba(8, 8, 8, .65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ── 12. Mobile hamburger menu glass ── */
.mobile-menu {
  background: rgba(12, 12, 12, .8);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

/* ============================================================
   BUTTONS & LINK CLEANUP — Remove raw URLs, style as glass buttons
============================================================ */

/* ── Hide all raw URL texts ── */
.link-ref,
.ph-tag {
  display: none !important;
}

/* ── .card-cta → orange filled button ── */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .65rem 1.2rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: .02em;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--border-o); /* Standarized orange border */
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  white-space: nowrap;
}

/* CTA cleanup */

/* ── .cta-list → 2-column button grid ── */
.cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-top: 1.25rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.4rem;
  border-radius: 16px;
  background: rgba(255, 75, 31, 0.08); /* Selection tint */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-o) !important; /* bold orange border */
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* CTA fixo */

.cta-row i,
.cta-row svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--orange);
}

.cta-row strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-row .link-ref,
.cta-row .ph-tag {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.15rem;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: none;
}

/* Placeholder rows: dimmed & dashed */
.cta-row.cta-placeholder {
  opacity: .5;
  border: 1.5px dashed rgba(255, 255, 255, .1);
  background: transparent;
  cursor: default;
}

/* ── .placeholder-block (large callout) ── */
.placeholder-block {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px dashed rgba(255, 255, 255, .1);
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: 1rem;
  margin-bottom: .75rem;
}

.placeholder-block svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 1px;
}

/* ── inline placeholder ── */
.placeholder-inline {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
}

.placeholder-inline svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Responsive: single column on mobile ── */
@media (max-width: 640px) {
  .cta-list {
    grid-template-columns: 1fr;
  }

  .card-cta {
    font-size: .79rem;
    padding: .6rem 1rem;
  }
}

/* ── Override: cta-list back to horizontal flex-wrap ── */
.cta-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: .6rem !important;
  margin-top: 1.25rem !important;
}

.cta-row {
  flex: 0 1 auto;
  width: auto;
}

/* Placeholder rows stay subtle */
.cta-row.cta-placeholder {
  opacity: .45;
}

@media (max-width: 640px) {
  .cta-list {
    flex-direction: column !important;
  }
}

/* ============================================================
   GLASS VISIBILITY BOOST — Stronger contrast on all glass surfaces
============================================================ */

/* Rich scrolling gradient strips behind each section */
.section {
  position: relative;
  isolation: isolate;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 88, 243, .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(0, 88, 243, .05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section>*:not(.scroll-hint):not(.hero-bg-grid):not(.hero-glow):not(.hero-photo):not(.hero-photo-overlay):not([aria-hidden="true"]) {
  position: relative;
  z-index: 1;
}

/* ── Info-cards: stronger glass ── */
.info-card {
  background: rgba(255, 75, 31, 0.08) !important; /* Permanent orange tint */
  backdrop-filter: blur(18px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
  border: 1.5px solid var(--border-o) !important; /* Permanent orange border */
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5) !important;
}

/* Info cleanup */

/* ── highlight-card: stronger glass ── */
.highlight-card {
  background: rgba(255, 255, 255, .055) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 8px 24px rgba(0, 0, 0, .25) !important;
}

/* ── cta-row buttons: stronger glass ── */
.cta-row {
  background-color: rgba(255, 75, 31, 0.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid var(--border-o) !important; /* Permanent orange border */
}

/* CTAcleanup */

/* ── Sidebar glass: stronger ── */
.nav-sidebar {
  background: rgba(8, 8, 8, .60) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  border-right: 1px solid rgba(255, 255, 255, .09) !important;
}

/* ── Section-alt (step 2, alternate bg): give it depth ── */
.section-alt {
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(0, 88, 243, .07) 0%, transparent 70%),
    rgba(255, 255, 255, .015);
}

/* ── Tool / feature cards ── */
.tool-card,
.eco-card,
.feat-card,
.partner-card,
.benefit-card {
  background: rgba(255, 90, 31, 0.04) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  border: 1px solid var(--border-o) !important; /* Permanent orange border */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
}

/* Selection state is permanent */

/* ── sc-panel detail panel ── */
.sc-panel-inner {
  background: rgba(10, 10, 10, .72) !important;
  backdrop-filter: blur(28px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(150%) !important;
  border: 1.5px solid var(--border-o) !important; /* Permanent orange border */
}

/* ── s1-glass (hero panel) ── */
.s1-glass {
  background: rgba(255, 255, 255, .06) !important;
  backdrop-filter: blur(26px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
}

.s1-card {
  background: rgba(255, 90, 31, 0.04) !important;
  border: 1px solid var(--border-o) !important;
}

/* ── Hero main (top) glass card ── */
.hero-card,
.kpi-card,
.stat-card {
  background: rgba(255, 255, 255, .05) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, .11) !important;
}

/* ── Ambient orbs: safe real DOM elements (NOT body pseudo-elements) ── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: -1;
  /* behind all content, no stacking context issues */
}

.ambient-orb--1 {
  width: 1100px;
  height: 1100px;
  top: -350px;
  right: -250px;
  background: radial-gradient(circle, rgba(0, 180, 180, 0.35) 0%, transparent 75%); /* Stronger Teal edge glow */
  filter: blur(70px);
  animation: orb-drift-1 25s linear infinite alternate;
}

.ambient-orb--2 {
  width: 950px;
  height: 950px;
  bottom: -150px;
  left: -250px;
  background: radial-gradient(circle, rgba(0, 90, 150, 0.45) 0%, transparent 75%); /* Stronger Navy edge glow */
  filter: blur(60px);
  animation: orb-drift-2 30s linear infinite alternate;
}

.ambient-orb--3 {
  width: 850px;
  height: 850px;
  top: 45%;
  right: -350px;
  background: radial-gradient(circle, rgba(0, 150, 150, 0.25) 0%, transparent 75%);
  filter: blur(90px);
  animation: orb-drift-1 35s linear infinite alternate-reverse;
}

@keyframes orb-drift-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(100px, 50px) scale(1.1);
  }

  100% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

@keyframes orb-drift-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, 60px) scale(1.05);
  }

  100% {
    transform: translate(60px, -40px) scale(0.95);
  }
}

/* ── Tubarões Grid (Cúpula) ── */
.tubaroes-grid {
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.tubarao-card {
  aspect-ratio: 1 / 1.32;
}

.tubarao-img {
  object-position: center top;
}

.tubarao-card .profile-name {
  font-size: 0.95rem;
  /* slightly smaller text for smaller cards */
}

/* Remover o blur intenso e ajustar o gradiente para os cards menores */
.tubarao-card .profile-info {
  padding: 2.5rem 0.85rem 0.85rem;
  /* Mais espaço no topo para um gradiente sutil */
  background: linear-gradient(to top,
      #000 0%,
      rgba(0, 0, 0, 0.7) 40%,
      transparent 100%);
  /* Remover o vidro curvo que embaça o rosto nas pontas superiores e escurece a imagem toda */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: none;
}

@media (max-width: 640px) {
  .tubaroes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .tubarao-card .profile-name {
    font-size: 0.85rem;
  }

  .tubarao-card .profile-info {
    padding: 2rem 0.75rem 0.75rem;
  }
}

/* ── CTA Glass Cards (Botões com Imagem de Fundo Premium) ── */
.cta-glass-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  padding: 0 !important;
  /* Reset padding to use internal content wrapper */
  border: 1.5px solid var(--border-o) !important; /* Force orange border on glass cards */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  min-height: 110px;
  width: 100% !important;
  display: flex !important;
  align-items: stretch !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.cta-glass-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.15) !important;
  border-color: rgba(255, 90, 31, 0.4) !important;
}

.cta-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(5, 5, 5, 0.55) 100%);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
  z-index: 1;
}

.cta-glass-card:hover .cta-glass-overlay {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(5, 5, 5, 0.65) 100%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.cta-glass-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: left;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.75rem;
  width: 100%;
}

.cta-list-glass {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 1.25rem !important;
  width: auto !important; /* Respeita as margens do container pai sem transbordar */
  margin-top: 1.75rem;
  padding: 0.5rem 0.5rem 3rem !important; /* Espaço para sombras mantido dentro dos limites */
  overflow: visible !important;
}

.cta-list-glass .cta-glass-card {
  flex: 1 1 280px !important; 
  min-height: 110px;
}

@media (max-width: 600px) {
  .cta-list-glass {
    flex-direction: column !important;
    width: 100% !important;
    margin: 0.5rem 0 1.5rem !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .cta-list-glass .cta-glass-card {
      min-height: 80px !important;
      flex: 1 1 auto !important;
  }
}

/* Specific override for 2-column layouts like section 1 */
.cta-list-glass--2col {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-list-glass--2col .cta-glass-card {
  flex: 1 1 380px !important;
}

@media (max-width: 900px) {
  .cta-list-glass--2col {
    flex-direction: column !important;
  }
}

/* Fix width auto from standard .cta-row */
.cta-glass-card {
  width: 100% !important;
}

@media (max-width: 600px) {
  .cta-glass-card {
    min-height: 85px !important;
  }
}


/* ── Featured Partner Card ── */
/* ── Full Width Cinemographic Section (ORUZEN Style) ── */
.partner-full-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  margin: 4rem 0;
  padding: 0 3rem;
  /* Alinhado com o padding da .section global */
}

.partner-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.6;
}

.partner-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 10, 10, 1) 0%,
      rgba(10, 10, 10, 0.9) 30%,
      rgba(10, 10, 10, 0.4) 60%,
      transparent 100%);
  z-index: 2;
}

.partner-full-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 820px;
  /* Alinhado com .section-inner */
  margin: 0 auto;
  padding: 8rem 0;
  /* Removi padding lateral para alinhar com o grid */
  text-align: left;
}

.partner-bg-logo {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  height: 65%;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.partner-bg-logo.visible {
  opacity: 0.8 !important;
}

.partner-bg-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.partner-full-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ============================================================
    BENEFITS SECTION (Section 5) - TWO FEATURED CARDS
============================================================ */
.benefits-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-top: 3.5rem;
}

.benefit-card {
  width: 100%;
  height: 360px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: all 0.5s var(--ease);
  background: var(--bg-card);
}

.benefit-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
  z-index: 1;
}

.benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(10, 10, 10, 0.98) 0%, 
    rgba(10, 10, 10, 0.7) 45%, 
    rgba(10, 10, 10, 0.3) 100%);
  z-index: 2;
  transition: background 0.4s;
}

.benefit-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}

.benefit-icon i {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.benefit-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 1.25rem;
  transition: gap 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-card {
  /* ... existing benefit-card styles assumed ... */
  border: 1.5px solid var(--border-o); /* Permanent orange border */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Cards fixos */

@media (max-width: 900px) {
  .benefits-featured {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    height: 320px;
  }
}


/* ============================================================
    CRONOGRAMA / TIMELINE (Section 2.3) - PAGINATION
============================================================ */

/* ── Schedule body: full-height content zone (no scroll, panel grows naturally) ── */
.schedule-body {
  padding: 0 1.5rem 0.5rem;
}

.schedule-body > p {
  font-size: .92rem;
  color: var(--text-dim);
  margin: 0 0 0.85rem;
  line-height: 1.6;
}

/* ── Instruction label above tabs ── */
.schedule-label {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  margin: 0.5rem 0 0.1rem !important;
  font-style: italic;
  line-height: 1.4;
}

/* ── Sticky CTA pinned at bottom of panel ── */
.schedule-sticky-cta {
  border-top: 1px solid rgba(255, 90, 31, 0.14);
  padding: 1rem 1.5rem 1.25rem;
  margin-top: 0.5rem;
}

.schedule-cta-btn {
  min-height: 76px !important;
}


/* ── Tabs ── */
.schedule-nav {
  display: flex;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}

.schedule-nav::-webkit-scrollbar {
  display: none;
}

.schedule-tab {
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.schedule-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 31, 0.3);
}

.schedule-tab.is-active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.3);
}

.schedule-page {
  display: none;
  animation: schedFadeIn 0.35s ease forwards;
}

.schedule-page.is-active {
  display: block;
}

@keyframes schedFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.25rem;
}

/* ── Week event grid ── */
.week-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

/* ── Event card ── */
.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.event-card:hover {
  border-color: rgba(255, 90, 31, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* Card top row: badge + date */
.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ── Badge base ── */
.event-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Badge by type */
.event-badge--mentoria {
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.32);
  color: #7eb8ff;
}
.event-badge--imersao {
  background: rgba(255, 90, 31, 0.14);
  border: 1px solid rgba(255, 90, 31, 0.32);
  color: var(--orange);
}
.event-badge--monitoria {
  background: rgba(34, 197, 94, 0.11);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #6ee7a0;
}
.event-badge--masterclass {
  background: rgba(168, 85, 247, 0.14);
  border: 1px solid rgba(168, 85, 247, 0.30);
  color: #c084fc;
}
.event-badge--onboarding {
  background: rgba(34, 211, 238, 0.11);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: #67e8f9;
}

/* Left accent bar by event type */
.event-card--mentoria    { border-left: 3px solid #3b82f6 !important; }
.event-card--imersao     { border-left: 3px solid var(--orange) !important; }
.event-card--monitoria   { border-left: 3px solid #22c55e !important; }
.event-card--masterclass { border-left: 3px solid #a855f7 !important; }
.event-card--onboarding  { border-left: 3px solid #22d3ee !important; }

.event-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
}

.event-description {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin: 0;
}

.event-description b {
  color: var(--orange);
}

/* Legacy selectors (fallback for other sections) */
.event-type {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 600px) {
  .week-events {
    grid-template-columns: 1fr;
  }
  .schedule-sticky-cta {
    padding: 0.7rem 1rem;
  }
  .schedule-body {
    padding: 0 1rem 0.5rem;
  }
}




/* ============================================================
    WEEK CURRICULUM (Section 2.4 - weekly schedule)
============================================================ */
.week-curriculum {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
  align-items: start;
}

/* Left column: dates + objective */
.week-meta {
  background: rgba(255, 90, 31, 0.04);
  border: 1px solid rgba(255, 90, 31, 0.14);
  border-radius: 12px;
  padding: 1rem;
  position: sticky;
  top: 0;
}

.week-dates {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}

.week-dates i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.week-objective {
  margin-top: 0.25rem;
}

.obj-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.week-objective p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* Right column: activities */
.week-activities {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.activities-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.activities-label i {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Lesson list */
.lesson-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lesson-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 2px solid rgba(255, 90, 31, 0.3);
}

.lesson-module {
  font-size: 0.58rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.25);
  color: var(--orange);
  padding: 0.12rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lesson-module:nth-of-type(1):contains("Bônus") {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: #c084fc;
}

.lesson-ref {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Task list */
.week-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.week-task {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.week-task:hover {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.week-task i {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.week-task strong {
  color: var(--white);
}

@media (max-width: 680px) {
  .week-curriculum {
    grid-template-columns: 1fr;
  }
  .week-meta {
    position: static;
  }
}

/* ============================================================
    EDUCATION SECTION (Section 6)
============================================================ */
.edu-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.edu-card {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 3rem 4rem;
  background: rgba(255,255,255,0.02);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.edu-card:hover {
  border-color: var(--accent-o);
  transform: translateY(-5px);
}

.edu-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: transform 0.8s var(--ease), opacity 0.5s;
  z-index: 1;
}

.edu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    #000 0%, 
    rgba(0,0,0,0.85) 35%, 
    rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.edu-card-content {
  position: relative;
  z-index: 10;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.edu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.3);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
}

.edu-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.edu-card p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.edu-more-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 2px solid var(--accent-o);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.edu-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.edu-features i {
  color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.edu-card:hover {
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 90, 31, 0.15);
  transform: translateY(-6px);
}

.edu-card:hover .edu-card-bg {
  transform: scale(1.08);
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .edu-card {
    padding: 3rem;
  }
  
  .edu-card h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .edu-card {
    padding: 2.5rem 1.5rem;
    min-height: 480px;
    align-items: flex-end;
  }
  
  .edu-grid {
    gap: 1.5rem;
  }
  
  .edu-card-overlay {
    background: linear-gradient(0deg, 
      #000 0%, 
      rgba(0,0,0,0.92) 55%, 
      transparent 100%);
  }
  
  .edu-card-content {
    max-width: 100%;
  }
  
  .edu-card h3 {
    font-size: 1.8rem;
  }

  .edu-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
    ECOSYSTEM CARD BUTTONS (Section 3)
============================================================ */
.cta-eco-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cta-eco-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-o) !important; /* Force orange border */
  border-radius: 10px;
  color: var(--white);
  font-size: 0.68rem; /* Slightly smaller base font to prevent crowding */
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  font-family: 'Sora', sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Hover effects removed for static selection identity */

@media (max-width: 820px) {
  .cta-eco-group {
    grid-template-columns: repeat(3, 1fr); /* Keep 3 slots by default */
    gap: 0.5rem;
  }
  .cta-eco-btn {
    font-size: 0.62rem;
    padding: 0.5rem 0.25rem;
  }
}

@media (max-width: 400px) {
  .cta-eco-group {
    grid-template-columns: 1fr; /* Stack only on very narrow screens */
    gap: 0.5rem;
  }
  .cta-eco-btn {
    font-size: 0.72rem;
    padding: 0.65rem;
  }
}
/* ── DOWNLOAD ROADMAP BUTTONS ── */
.sidebar-footer-cta {
  padding: 1.5rem 1.25rem 0.75rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.btn-download-roadmap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 75, 31, 0.2);
}

.btn-download-roadmap:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 75, 31, 0.4);
  filter: brightness(1.1);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .footer-actions {
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
    align-items: stretch;
  }
}
