/* ============================================
   HERO IDENTITY (PORTABY STYLE)
   ============================================ */
.hero-identity {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--anthracite);
    color: var(--white);
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.3; /* Muito sutil */
    z-index: 0;
    filter: grayscale(80%); /* Mais sóbrio */
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(242, 73, 12, 0.15) 0%, rgba(26, 31, 36, 0.95) 70%);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Map Glow */
.map-glow-container {
    width: 600px;
    height: 600px; /* Grande destaque */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.map-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 50px rgba(242, 73, 12, 0.6));
    animation: flow-glow 4s infinite alternate;
}

@keyframes flow-glow {
    from { filter: drop-shadow(0 0 30px rgba(242, 73, 12, 0.4)); }
    to { filter: drop-shadow(0 0 70px rgba(242, 73, 12, 0.8)); }
}

/* Logo Hero */
.logo-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-main-logo {
    max-width: 400px; /* Logo grande */
    width: 80vw;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ============================================
   PLATFORM ABOUT (NEW SECTION)
   ============================================ */
.platform-about {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-content { flex: 1; }

.text-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--laranja-principal);
    padding-left: 1.5rem;
}

.visual-content { flex: 1; }

.mini-mockup {
    transform: rotateY(-15deg) rotateX(10deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .split-layout { flex-direction: column; }
    .map-glow-container { width: 300px; height: 300px; }
    .hero-main-logo { max-width: 250px; }
}
