/* ==========================================================================
   Multiplan — Programa de Estágio 2026
   CSS residual (animações + estados controlados por JS)
   ========================================================================== */

:root {
    --mp-red:        #7B1F26; /* vinho — cor predominante */
    --mp-red-dark:   #5A1419;
    --mp-red-light:  #D81B25;
    --mp-wine:       #7B1F26;
    --mp-gold:       #D4B843;
    --mp-orange:     #C46711;
    --mp-navy:       #1E2B47;
    --mp-steel:      #5A6E8C;
    --mp-graphite:   #1E2B47; /* agora azul-marinho */
    --mp-ink:        #3A3A3A;
    --mp-ink-soft:   #6E6E6E;
    --mp-border:     #E5E5E5;
    --mp-soft:       #F4F4F4;
    --mp-mid:        #C7C7C7;
    --mp-white:      #FFFFFF;
    --mp-ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth scroll global, com offset do header fixo */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    color: var(--mp-ink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 900;
}

::selection {
    background-color: var(--mp-red);
    color: #fff;
}

/* ==========================================================================
   Botões — assinatura visual Multiplan
   border-radius: 8px 8px 0 8px (3 cantos arredondados, 1 reto)
   Idêntico ao .btn-5 do site institucional
   ========================================================================== */
.btn-mp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    border-radius: 8px 8px 0 8px;
    padding: 0.875rem 1.75rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s var(--mp-ease);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-mp::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.4s var(--mp-ease);
    pointer-events: none;
}

/* Variantes */
.btn-mp-primary {
    background-color: var(--mp-red);
    color: #fff;
}
.btn-mp-primary:hover {
    background-color: var(--mp-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(123, 31, 38, 0.45);
}

.btn-mp-outline {
    background-color: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-mp-outline:hover {
    background-color: #fff;
    color: var(--mp-graphite);
    transform: translateY(-2px);
}

.btn-mp-ghost {
    background-color: transparent;
    color: var(--mp-graphite);
    box-shadow: inset 0 0 0 2px var(--mp-graphite);
}
.btn-mp-ghost:hover {
    background-color: var(--mp-graphite);
    color: #fff;
    transform: translateY(-2px);
}

.btn-mp-dark {
    background-color: var(--mp-graphite);
    color: #fff;
}
.btn-mp-dark:hover {
    background-color: #2A3554;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(30, 43, 71, 0.5);
}

/* ==========================================================================
   Header — transparente no topo, sólido (branco com blur) ao scrollar
   ========================================================================== */
#header {
    background-color: transparent;
    backdrop-filter: blur(0);
}

#header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Texto da nav + ícone hambúrguer trocam de branco para grafite ao scrollar */
#header.is-scrolled nav a,
#header.is-scrolled #nav-toggle,
#header.is-scrolled .logo-text {
    color: var(--mp-graphite) !important;
}

/* Logo Multiplan: branca quando o header é transparente (sobre o gradiente),
   colorida quando o header vira branco (após scroll). */
.logo-img {
    filter: brightness(0) invert(1);   /* branca no topo */
    transition: filter 0.5s var(--mp-ease);
}
#header.is-scrolled .logo-img {
    filter: none;                       /* cores originais ao scrollar */
}

/* Divisor entre logo e selo "Programa de Estágio" */
#header.is-scrolled .logo-divider {
    background-color: var(--mp-border) !important;
}
#header.is-scrolled .logo-text {
    color: var(--mp-ink-soft) !important;
}

/* Links de navegação — underline animado em hover/active */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.3s var(--mp-ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--mp-red);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s var(--mp-ease);
}
.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.nav-link:hover,
.nav-link.is-active {
    color: var(--mp-red) !important;
}

/* Toggle mobile — vira X quando aberto */
#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
#nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay mobile — abre suave */
#nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    height: min(100vh, 768px);
    min-height: 600px;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--mp-graphite); /* fallback enquanto carrega */
}

/* Camada 1 — gradiente de fundo (visível enquanto não há KV oficial) */
.hero-bg {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(123, 31, 38, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(90, 20, 25, 0.45) 0%, transparent 50%),
        linear-gradient(135deg, #2a2e31 0%, #1E2B47 55%, #0F1421 100%);
    z-index: 1;
}

.hero-kv {
    z-index: 2;
}

/* Vinheta para garantir contraste do texto sobre a imagem */
.hero-vignette {
    z-index: 3;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 50%);
}

/* Grid decorativo */
.hero-grid {
    z-index: 4;
    background-image:
        linear-gradient(rgba(255,255,255,0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.55) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 75%);
}

/* Tipografia do hero */
.hero-title {
    font-size: clamp(2.75rem, 7.5vw, 6rem);
}
.hero-title-accent {
    background: linear-gradient(180deg, #fff 0%, #fff 65%, rgba(255,255,255,0.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Estados de revelação adicionais */
.reveal-delay-4 { transition-delay: 0.55s; }
.reveal-delay-5 { transition-delay: 0.70s; }

/* Indicador de scroll com micro-bounce */
.hero-scroll-arrow {
    animation: scrollHint 2.4s var(--mp-ease) infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

/* Mobile: ajusta padding e meta */
@media (max-width: 767px) {
    .hero { min-height: 560px; }
    .hero-meta { position: static !important; margin-top: 3rem; flex-direction: column; align-items: flex-start; }
    .hero-grid { background-size: 48px 48px; }
}

/* ==========================================================================
   Placeholders de imagem (até receber as fotos reais do cliente)
   ========================================================================== */
.placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px -16px rgba(74,74,74,0.25);
}
.placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,0.05) 16px 17px);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   FASE 3 — Cards "por que se inscrever"
   ========================================================================== */
.card-mp {
    background: var(--mp-white);
    border: 1px solid var(--mp-border);
    border-radius: 14px 14px 0 14px;
    padding: 1.75rem;
    transition: all 0.4s var(--mp-ease);
    position: relative;
}
.card-mp:hover {
    border-color: var(--mp-red);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -12px rgba(123, 31, 38, 0.18);
}
.card-mp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px 12px 0 12px;
    background: linear-gradient(135deg, var(--mp-red) 0%, var(--mp-red-dark) 100%);
    color: #fff;
    margin-bottom: 1.25rem;
    transition: transform 0.4s var(--mp-ease), box-shadow 0.4s var(--mp-ease);
}
.card-mp:hover .card-mp-icon {
    transform: translateY(-4px) rotate(-3deg);
    background: linear-gradient(135deg, var(--mp-gold) 0%, var(--mp-orange) 100%);
    box-shadow: 0 12px 22px -8px rgba(212, 184, 67, 0.55);
}
.card-mp-icon svg { width: 26px; height: 26px; }
.card-mp-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--mp-graphite);
    margin-bottom: 0.6rem;
}
.card-mp-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--mp-ink-soft);
}

/* ==========================================================================
   FASE 4 — Pré-Requisitos (cards sobre fundo escuro)
   ========================================================================== */
/* ===== Pré-requisitos · novo design (foto compacta no header + itens com ícone) ===== */
.prereq-hero-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px 16px 0 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px -22px rgba(30, 43, 71, 0.30);
}
.prereq-hero-photo picture,
.prereq-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prereq-row-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .prereq-row-grid { grid-template-columns: repeat(3, 1fr); }
    .prereq-row-grid-2 { grid-template-columns: 2fr 1fr; }
}

.prereq-item {
    background: #fff;
    border: 1px solid var(--mp-border, rgba(30,43,71,0.10));
    border-left: 3px solid var(--mp-red);
    border-radius: 0 12px 0 12px;
    padding: 1.25rem 1.35rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prereq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(30, 43, 71, 0.18);
    border-left-color: var(--mp-gold);
}
.prereq-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #FCEFE0;
    color: var(--mp-red);
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}
.prereq-icon svg { width: 20px; height: 20px; }
.prereq-icon-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.prereq-item-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1rem;
    color: var(--mp-graphite);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.prereq-item-text {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--mp-ink-soft);
}

/* Faixa vinho dos Cursos */
.prereq-cursos-band {
    background: linear-gradient(135deg, #7B1F26 0%, #5A1419 100%);
    color: #fff;
    border-radius: 16px 16px 0 16px;
    padding: 1.5rem 1.75rem;
}
.prereq-cursos-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.prereq-cursos-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}
.prereq-cursos-text {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.prereq-sub {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mp-gold);
    margin-bottom: 0.4rem;
}
.prereq-cursos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 1.5rem;
    margin-top: 0.25rem;
}
@media (min-width: 768px) {
    .prereq-cursos-grid { grid-template-columns: 1fr 1fr; }
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px 12px 0 12px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: all 0.3s var(--mp-ease);
}
.benefit-pill svg {
    width: 22px;
    height: 22px;
    color: var(--mp-gold);
    flex-shrink: 0;
}
.benefit-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ==========================================================================
   FASE 5 — Áreas de Atuação
   ========================================================================== */
/* ===== Vagas · 7 blocos uniformes (cidade + UF, com sub-blocos Matriz/Shopping) ===== */
.vagas-blocos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .vagas-blocos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .vagas-blocos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .vagas-bloco-wide { grid-column: span 3; }
}
.vagas-bloco {
    background: #fff;
    border: 1px solid var(--mp-border, rgba(30,43,71,0.10));
    border-top: 3px solid var(--mp-red);
    border-radius: 0 14px 0 14px;
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vagas-bloco:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -20px rgba(30, 43, 71, 0.22);
    border-top-color: var(--mp-gold);
}
.vagas-bloco-head {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    flex-wrap: wrap;
}
.vagas-bloco-cidade {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--mp-graphite);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.vagas-bloco-uf {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mp-red);
    background: rgba(123, 31, 38, 0.08);
    padding: 0.18rem 0.55rem;
    border-radius: 6px 6px 0 6px;
    flex-shrink: 0;
}
.vagas-sub {
    border-top: 1px dashed rgba(30, 43, 71, 0.12);
    padding-top: 0.85rem;
}
.vagas-sub:first-of-type { border-top: 0; padding-top: 0; }
.vagas-sub-label {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mp-gold);
    margin-bottom: 0.55rem;
}
.vagas-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.vagas-sub-list li {
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.85rem;
    color: var(--mp-ink);
    line-height: 1.4;
    font-family: 'Trebuchet MS', sans-serif;
}
.vagas-sub-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background-color: var(--mp-red);
    border-radius: 50%;
}
@media (min-width: 768px) {
    .vagas-sub-list-cols {
        display: block;
        column-count: 2;
        column-gap: 1.5rem;
    }
    .vagas-sub-list-cols li {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 0.35rem;
    }
}
@media (min-width: 1024px) {
    .vagas-bloco-wide .vagas-sub-list-cols { column-count: 3; }
}

/* Sub-blocos lado a lado (3 colunas, ex.: São Paulo) */
.vagas-subs-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}
@media (min-width: 768px) {
    .vagas-subs-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    .vagas-subs-3 .vagas-sub {
        border-top: 0;
        padding-top: 0;
        padding-left: 1.25rem;
        border-left: 1px dashed rgba(30, 43, 71, 0.18);
    }
    .vagas-subs-3 .vagas-sub:first-child {
        padding-left: 0;
        border-left: 0;
    }
}

/* ==========================================================================
   Seção Vagas — mapa do Brasil + lista textual
   ========================================================================== */
.vagas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .vagas-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 3.5rem;
        align-items: start;
    }
}

/* Mapa Leaflet */
.vagas-mapa { position: relative; }
.vagas-mapa-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #B0B3B7; /* Pantone 429 — cinza claro */
    box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
    .vagas-mapa-wrap { aspect-ratio: 4 / 5; max-width: none; }
}

/* Overrides do Leaflet */
.leaflet-container {
    background: #B0B3B7 !important;
    font-family: 'Merriweather', Georgia, serif;
}
.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.85) !important;
    color: rgba(30, 43, 71, 0.6) !important;
    font-size: 9px !important;
    padding: 2px 6px !important;
}
.leaflet-control-attribution a {
    color: var(--mp-red) !important;
}
.leaflet-control-zoom {
    border: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18) !important;
}
.leaflet-control-zoom a {
    background: #fff !important;
    color: var(--mp-graphite) !important;
    border: 1px solid rgba(30, 43, 71, 0.15) !important;
    transition: background 0.2s var(--mp-ease) !important;
}
.leaflet-control-zoom a:hover {
    background: var(--mp-red) !important;
    color: #fff !important;
}

/* Marcadores customizados (Multiplan) */
.vaga-marker { background: transparent; border: 0; }
/* Shopping centers: círculo amarelo (padrão) */
.vaga-marker .vm-dot {
    display: block;
    width: 14px;
    height: 14px;
    background: var(--mp-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(212, 184, 67, 0.22), 0 0 10px rgba(212, 184, 67, 0.55);
    transition: transform 0.25s var(--mp-ease);
}
.vaga-marker:hover .vm-dot { transform: scale(1.4); }
/* Torre para locação: quadrado vermelho/vinho */
.vaga-marker-torre .vm-dot {
    background: var(--mp-red);
    border-radius: 2px;
    box-shadow: 0 0 0 3px rgba(123, 31, 38, 0.28), 0 0 10px rgba(123, 31, 38, 0.6);
}
/* Em construção: triângulo azul-marinho (legível no mapa claro) */
.vaga-marker-construcao .vm-dot {
    background: transparent;
    box-shadow: none;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid var(--mp-navy);
    filter: drop-shadow(0 0 6px rgba(30, 43, 71, 0.4));
}
.vaga-marker-hot .vm-dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 4px solid var(--mp-red);
    box-shadow: 0 0 0 6px rgba(123, 31, 38, 0.25), 0 0 24px rgba(123, 31, 38, 0.7);
    animation: markerPulse 2.4s ease-in-out infinite;
}
@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(123, 31, 38, 0.25), 0 0 24px rgba(123, 31, 38, 0.7); }
    50%      { box-shadow: 0 0 0 14px rgba(123, 31, 38, 0.05), 0 0 30px rgba(123, 31, 38, 0.95); }
}

/* Tooltip customizado dos marcadores */
.vaga-tooltip.leaflet-tooltip {
    background: #fff !important;
    color: var(--mp-graphite) !important;
    border: 0 !important;
    border-radius: 8px 8px 0 8px !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
    white-space: nowrap;
}
.vaga-tooltip.leaflet-tooltip-top::before {
    border-top-color: #fff !important;
}

/* Legenda do mapa */
.vagas-legenda {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(30, 43, 71, 0.75);
}
.vagas-legenda-item { display: inline-flex; align-items: center; gap: 0.5rem; }
/* Legenda — Shopping centers = amarelo */
.leg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mp-gold);
    box-shadow: 0 0 0 2px rgba(212, 184, 67, 0.28);
}
.leg-dot-hot {
    background: #fff;
    border: 2px solid var(--mp-red);
    box-shadow: 0 0 0 3px rgba(123, 31, 38, 0.3);
}
/* Torres para locação = quadrado vermelho */
.leg-dot-sq {
    background: var(--mp-red);
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(123, 31, 38, 0.3);
}
/* Em construção = triângulo navy */
.leg-dot-tri {
    background: transparent;
    box-shadow: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #1E2B47;
}

/* ==========================================================================
   Seção Empreendimentos — lista 2 colunas
   ========================================================================== */
.empreendimentos-lista {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2.5rem;
}
@media (min-width: 640px) {
    .empreendimentos-lista { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .empreendimentos-lista { max-height: 720px; overflow-y: auto; padding-right: 0.5rem; }
    .empreendimentos-lista::-webkit-scrollbar { width: 6px; }
    .empreendimentos-lista::-webkit-scrollbar-track { background: rgba(30, 43, 71, 0.08); }
    .empreendimentos-lista::-webkit-scrollbar-thumb { background: rgba(123, 31, 38, 0.55); border-radius: 3px; }
}
.emp-estado {
    display: flex;
    flex-direction: column;
}
.emp-uf {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--mp-gold);
    margin-bottom: 0.35rem;
}
.emp-cidade {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--mp-graphite, #1E2B47);
    margin-bottom: 0.5rem;
}
.emp-cidade-second {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(30, 43, 71, 0.18);
}
.emp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.25rem;
}
.emp-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.88rem;
    color: rgba(58, 58, 58, 0.92);
    line-height: 1.7;
}
/* Bullets da lista — Shopping = amarelo (padrão) */
.emp-mark {
    display: inline-block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background: var(--mp-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(212, 184, 67, 0.22);
}
/* Torres = quadrado vermelho */
.emp-mark-sq {
    background: var(--mp-red);
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(123, 31, 38, 0.25);
}
/* Em construção = triângulo navy */
.emp-mark-tri {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #1E2B47;
}

/* Lista por estado */
.vagas-lista {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
@media (min-width: 1024px) {
    .vagas-lista {
        max-height: 720px;
        overflow-y: auto;
        padding-right: 0.5rem;
    }
    .vagas-lista::-webkit-scrollbar { width: 6px; }
    .vagas-lista::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }
    .vagas-lista::-webkit-scrollbar-thumb { background: rgba(123, 31, 38, 0.6); border-radius: 3px; }
}
.vagas-estado {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vagas-estado:last-child { border-bottom: 0; padding-bottom: 0; }

.vagas-uf {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--mp-red);
    margin-bottom: 0.7rem;
}
.vagas-estado-hot .vagas-uf {
    color: #fff;
    background: var(--mp-red);
    padding: 0.25rem 0.7rem;
    border-radius: 6px 6px 0 6px;
    display: inline-block;
}

.vagas-cidade {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vagas-cidade-second {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.vagas-cidade-tag {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.vagas-unidade {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.85rem;
    margin-bottom: 0.4rem;
}

.vagas-areas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
}
.vagas-areas li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    padding-left: 0.85rem;
    line-height: 1.4;
}
.vagas-areas li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: var(--mp-red);
    border-radius: 50%;
}

/* ==========================================================================
   FASE 6 — Timeline (Etapas)
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.timeline-track {
    position: absolute;
    top: 24px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--mp-border);
    overflow: hidden;
    border-radius: 1px;
}
.timeline-progress {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--mp-red) 0%, var(--mp-red-dark) 100%);
    transition: width 3.5s cubic-bezier(0.22, 1, 0.36, 1), height 3.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.timeline-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--mp-soft);
    border: 2px solid var(--mp-border);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-dot > span {
    width: 16px;
    height: 16px;
    background-color: var(--mp-mid);
    border-radius: 50%;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline-step.is-visible .timeline-dot {
    border-color: var(--mp-red);
    background-color: #fff;
    box-shadow: 0 0 0 6px rgba(123, 31, 38, 0.08);
}
.timeline-step.is-visible .timeline-dot > span {
    background-color: var(--mp-red);
}
.timeline-dot-final {
    border-color: var(--mp-red) !important;
    background: var(--mp-red) !important;
}
.timeline-dot-final > span {
    background-color: #fff !important;
}
.timeline-content {
    max-width: 160px;
}
.timeline-num {
    display: block;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--mp-red);
    margin-bottom: 0.4rem;
}
.timeline-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
    color: var(--mp-graphite);
    margin-bottom: 0.35rem;
}
.timeline-meta {
    font-size: 0.8rem;
    color: var(--mp-ink-soft);
    line-height: 1.3;
    min-height: 1em;
}

/* Mobile: timeline vertical */
@media (max-width: 767px) {
    .timeline-track {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .timeline-progress {
        width: 100%;
        height: 0;
        transition: height 1.4s var(--mp-ease);
    }
    .timeline-list {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .timeline-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
    }
    .timeline-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .timeline-content { max-width: none; flex: 1; padding-top: 0.5rem; }
}

/* ==========================================================================
   FASE 7 — Stats
   ========================================================================== */
.stat-num {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(2.2rem, 4.2vw, 3.25rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}
.stat-suffix {
    font-size: 0.45em;
    font-weight: 500;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    margin-left: 0.15em;
}
.stat-label {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    font-weight: 400;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    max-width: 200px;
}
.stat-item .stat-num,
.stat-item .stat-label { text-align: center; width: 100%; }
.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mp-gold);
    margin-bottom: 0.35rem;
    background: rgba(255, 255, 255, 0.03);
}
.stat-icon svg { width: 18px; height: 18px; }
.stat-text-content { font-family: 'Trebuchet MS', sans-serif; }

.stat-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.stat-text .stat-icon { flex: 0 0 44px; }
.stat-text-content {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}
.stat-text-content strong {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.stat-text-content span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Stats strip variante clara (fundo amarelo / dourado Multiplan) */
.stats-strip-light .stat-num { color: var(--mp-graphite, #1E2B47); }
.stats-strip-light .stat-suffix { color: rgba(30, 43, 71, 0.7); }
.stats-strip-light .stat-label { color: rgba(30, 43, 71, 0.85); }
.stats-strip-light .stat-icon {
    color: var(--mp-red, #7B1F26);
    border-color: rgba(30, 43, 71, 0.25);
    background: rgba(255, 255, 255, 0.4);
}
.stats-strip-light .stat-text-content { color: rgba(30, 43, 71, 0.9); }
.stats-strip-light .stat-text-content strong { color: var(--mp-graphite, #1E2B47); }
.stats-strip-light .stat-text-content span { color: rgba(30, 43, 71, 0.7); }
.stats-strip-light .border-white\/10 { border-color: rgba(30, 43, 71, 0.2) !important; }

/* ==========================================================================
   FASE 8 — Valores (Missão / Visão / Valores)
   ========================================================================== */
.value-card {
    background: #fff;
    border: 1px solid var(--mp-border);
    border-radius: 18px 18px 0 18px;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--mp-ease);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(74,74,74,0.18);
    border-color: var(--mp-red);
}
.value-card-featured {
    background: linear-gradient(165deg, #7B1F26 0%, #5A1419 100%);
    color: #fff;
    border-color: transparent;
}
.value-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(123, 31, 38,0.45);
}
.value-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--mp-red) 0%, var(--mp-red-dark) 100%);
    color: #fff;
    border-radius: 16px 16px 0 16px;
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.value-num svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.value-card-featured .value-num {
    background: rgba(255, 255, 255, 0.18);
}
.value-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--mp-graphite);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.value-card-featured .value-title { color: #fff; }
.value-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--mp-ink-soft);
}
.value-card-featured .value-text { color: rgba(255, 255, 255, 0.92); }
.value-quote {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.35;
    color: var(--mp-red);
    margin-bottom: 0.7rem;
    padding-left: 0.7rem;
    border-left: 2px solid var(--mp-red);
}
.value-card-featured .value-quote { color: #fff; border-left-color: #fff; }

/* ==========================================================================
   FASE 9 — Depoimentos (carrossel)
   ========================================================================== */
.depo-carousel {
    background: var(--mp-soft);
    border-radius: 24px 24px 0 24px;
    padding: 2.5rem 2rem;
    position: relative;
}
@media (min-width: 768px) {
    .depo-carousel { padding: 3.5rem 4rem; }
}
.depo-track {
    position: relative;
    min-height: 380px;
}
.depo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--mp-ease), transform 0.6s var(--mp-ease);
    transform: translateY(20px);
    pointer-events: none;
}
.depo-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.depo-photo {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background:
        radial-gradient(at 30% 20%, rgba(123, 31, 38,0.5) 0%, transparent 60%),
        linear-gradient(135deg,#1E2B47 0%,#0F1421 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.depo-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
}
.depo-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
    z-index: 3;
    pointer-events: none;
}
.depo-init {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 5rem);
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.02em;
    z-index: 1;
}
.depo-quote {
    width: 36px;
    height: 36px;
    color: var(--mp-red);
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.depo-text {
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--mp-ink-soft);
    margin-bottom: 1rem;
}
@media (min-width: 1024px) {
    .depo-text { font-size: 0.92rem; }
}
.depo-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--mp-red);
    text-align: center;
}
.depo-name {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--mp-graphite);
    letter-spacing: -0.01em;
}
.depo-role {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.78rem;
    color: var(--mp-ink-soft);
    margin-top: 0.3rem;
    line-height: 1.35;
}
.depo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.depo-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px 10px 0 10px;
    border: 1px solid var(--mp-border);
    background: #fff;
    color: var(--mp-graphite);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--mp-ease);
}
.depo-btn svg { width: 18px; height: 18px; }
.depo-btn:hover {
    border-color: var(--mp-red);
    background: var(--mp-red);
    color: #fff;
}
.depo-dots {
    display: flex;
    gap: 0.5rem;
}
.depo-dot {
    width: 30px;
    height: 4px;
    background: var(--mp-border);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--mp-ease);
    padding: 0;
}
.depo-dot.is-active {
    background: var(--mp-red);
    width: 48px;
}

/* ==========================================================================
   FASE 10 — CTA Final + Footer
   ========================================================================== */
.btn-mp-cta-final {
    background: #fff;
    color: var(--mp-red);
    font-weight: 700;
}
.btn-mp-cta-final:hover {
    background: var(--mp-graphite);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(0,0,0,0.35);
}

/* Footer social icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px 10px 0 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s var(--mp-ease);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
    background: var(--mp-red);
    border-color: var(--mp-red);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Reveal on scroll
   Triggered via IntersectionObserver em main.js
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--mp-ease), transform 0.8s var(--mp-ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ==========================================================================
   Animações utilitárias
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

@keyframes glowRotate {
    0%   { transform: rotate(0deg); opacity: 0.3; }
    50%  { opacity: 0.55; }
    100% { transform: rotate(360deg); opacity: 0.3; }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

/* Skeleton/loading */
.is-loading {
    background: linear-gradient(90deg, #f5f5f5 0%, #e7e7e7 50%, #f5f5f5 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
.font-heading {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    font-feature-settings: 'ss01', 'ss02';
}

.font-narrow {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
}

/* Acessibilidade — reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Fotos institucionais (substitutas dos placeholders)
   ========================================================================== */
.inst-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px -16px rgba(74, 74, 74, 0.28);
    isolation: isolate;
    background: var(--mp-graphite);
}
.inst-photo > img,
.inst-photo > picture,
.inst-photo > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.inst-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20, 22, 24, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Banner full-width com foto (para seções sem placeholder) */
.inst-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.4);
    isolation: isolate;
    background: var(--mp-graphite);
}
.inst-banner-compact {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    box-shadow: 0 18px 40px -22px rgba(30, 43, 71, 0.35);
}
.inst-banner-compact > picture > img {
    object-position: center center !important;
}
@media (max-width: 767px) {
    .inst-banner-compact { aspect-ratio: 4 / 5; }
}
@media (max-width: 767px) {
    .inst-banner { aspect-ratio: 3 / 2; }
}
.inst-banner > picture,
.inst-banner > picture > img,
.inst-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.inst-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20, 22, 24, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 767px) {
    .inst-banner { aspect-ratio: 4 / 3; }
}

/* Banner sobre fundo escuro (pré-requisitos): borda translúcida em vez de sombra */
.inst-banner-dark {
    box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Split header com foto vertical lateral (etapas) */
.inst-photo-vert {
    aspect-ratio: 3 / 4;
}

/* Fundo da seção CTA com foto */
.cta-photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.cta-photo-bg > picture,
.cta-photo-bg > picture > img,
.cta-photo-bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.cta-photo-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
      linear-gradient(135deg, rgba(123, 31, 38, 0.93) 0%, rgba(90, 20, 25, 0.96) 100%);
    z-index: 1;
}
