/* System Colors & Tokens */
:root {
    --bg-dark: #070c11;
    --bg-card: #0d151d;
    --bg-card-glow: rgba(13, 21, 29, 0.7);
    --accent-cyan: #4a7694;
    --accent-gold: #4a7694;
    --accent-gold-dark: #2e4f66;
    --accent-emerald: #4a7694;
    --accent-emerald-dark: #2e4f66;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow-cyan: rgba(74, 118, 148, 0.35);
    --border-glow-gold: rgba(74, 118, 148, 0.35);
    --border-glow-emerald: rgba(74, 118, 148, 0.35);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Storytelling Container */
#scroll-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 3D Canvas Background */
.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at center, #101e2b 0%, var(--bg-dark) 70%);
}

#globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.5s ease;
}

/* Custom Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-svg {
    margin-bottom: 25px;
}

.draw-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.draw-globe {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: drawGlobe 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.draw-line {
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    animation: drawLine 1.5s ease-out 0.8s forwards;
}

.draw-star {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transform-origin: 50px 52px;
    animation: popStar 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-main);
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInText 0.8s ease-out 1.2s forwards;
}

.loader-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInText 0.8s ease-out 1.4s forwards;
}

/* Animations for Preloader */
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes drawGlobe {
    to { stroke-dashoffset: 0; }
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
@keyframes popStar {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Cursor Styles */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

/* Cursor Hover states */
.custom-cursor-ring.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent-gold);
}

.custom-cursor-dot.cursor-hover {
    background-color: var(--accent-gold);
    width: 10px;
    height: 10px;
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-seal-img {
    height: 52px;
    width: 52px;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0.95;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 2.2px;
    color: var(--accent-cyan);
    margin-top: 1px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-decoration: none;
}

.instagram-link:hover {
    color: var(--text-main);
    background: rgba(74, 118, 148, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(74, 118, 148, 0.3);
}

.instagram-svg {
    display: block;
    transition: var(--transition-fast);
}

.instagram-link:hover .instagram-svg {
    transform: scale(1.1);
}

/* Mobile Menu Toggle Button (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger transition to 'X' */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Buttons System */
.btn {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #fcd34d;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}

.btn-link {
    background: none;
    color: var(--accent-cyan);
    padding: 0;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    border-bottom-color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

.btn-full {
    width: 100%;
    padding: 14px;
}

/* Fixed Layout Story Sections */
.story-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 120px 80px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px) scale(0.98);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbars for sections */
.story-section::-webkit-scrollbar {
    width: 6px;
}
.story-section::-webkit-scrollbar-track {
    background: transparent;
}
.story-section::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.2);
    border-radius: 3px;
}
.story-section::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 211, 238, 0.5);
}

.story-section.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Section Header Typography */
.section-tagline {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.section-description.centered {
    max-width: 650px;
    margin: 0 auto 30px;
}

/* Layout Utilities */
.text-center {
    text-align: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.text-center-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scroll indicators (dots on side) */
.scroll-indicator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.scroll-dot:hover, .scroll-dot.active {
    background-color: var(--accent-cyan);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Tooltip on scroll dot */
.scroll-dot .tooltip {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(13, 21, 29, 0.95);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-main);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.scroll-dot:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Section 0: Home Hero Styles */
#sec-home .main-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Card Styles */
.card-glass-glow {
    background: var(--bg-card-glow);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.card-glass-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.card-glass-glow:hover {
    border-color: var(--border-glow-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-text.highlight {
    color: var(--text-main);
    border-left: 2px solid var(--accent-cyan);
    padding-left: 20px;
}

.spec-highlight {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.spec-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.text-gold {
    color: var(--accent-gold);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bullet-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bullet-icon {
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Timeline/Steps Styles */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    height: 70%;
    align-items: center;
}

.step-card {
    background: var(--bg-card-glow);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--border-glow-gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
    transition: var(--transition-fast);
}

.step-card:hover .step-num {
    color: var(--accent-gold);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Seção 3: Product Dashboard Layout */
.grid-product {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: center;
}

.product-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simulation-trigger-box {
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.simulation-trigger-box h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.simulation-trigger-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    align-items: center;
    transition: var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.input-prefix {
    padding: 5px 10px;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    border-right: 1px solid var(--border-color);
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    padding: 8px 12px;
    font-family: var(--font-heading);
    font-size: 1rem;
    flex-grow: 1;
    width: 100px;
}

/* Product Dashboard UI Mockup */
.mockup-ui {
    background: #080f15;
    border: 1px solid #1a2c3a;
    border-radius: 12px;
    width: 100%;
    height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.ui-header {
    background: #0f1a24;
    border-bottom: 1px solid #1a2c3a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ui-dots {
    display: flex;
    gap: 8px;
}

.ui-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.ui-dots span:nth-child(1) { background-color: #ef4444; }
.ui-dots span:nth-child(2) { background-color: #f59e0b; }
.ui-dots span:nth-child(3) { background-color: #10b981; }

.ui-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.ui-status {
    font-size: 0.7rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.led-green {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    display: inline-block;
}

.ui-body {
    display: flex;
    flex-grow: 1;
    height: calc(100% - 41px);
}

.ui-sidebar {
    width: 180px;
    background: #0a131b;
    border-right: 1px solid #1a2c3a;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.menu-item {
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 5px;
}

.menu-item.active, .menu-item:hover {
    background-color: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
}

.active-queries-title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 25px;
    margin-bottom: 10px;
}

.sidebar-queries {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.query-log {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.query-log.completed {
    border-left: 2px solid var(--accent-cyan);
}

.query-log.failed {
    border-left: 2px solid #ef4444;
}

.q-target {
    font-weight: 500;
    color: var(--text-main);
}

.q-details {
    color: var(--text-muted);
}

.ui-map-area {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tactical-map {
    flex-grow: 1;
    background: radial-gradient(circle at center, #0d1e2c 0%, #050b10 100%);
    position: relative;
    overflow: hidden;
}

.radar-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
}

.radar-line {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, rgba(34, 211, 238, 0.08) 0deg, transparent 90deg, transparent 360deg);
    pointer-events: none;
    transform-origin: center center;
    opacity: 0;
}

/* When simulated search triggers */
.radar-line.scanning {
    opacity: 1;
    animation: radarSweep 3s infinite linear;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.map-coordinates {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

/* Simulated Target on Mock Map */
.target-marker-container {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.target-marker-container.visible {
    opacity: 1;
}

.target-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent-gold);
    z-index: 5;
}

.target-pulse {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: targetPulse 2s infinite ease-out;
}

@keyframes targetPulse {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Probability Circles */
.circle-probability {
    border-radius: 50%;
    border: 1px dashed rgba(34, 211, 238, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.circle-label {
    font-size: 0.5rem;
    color: var(--accent-cyan);
    transform: translateY(-8px);
    background: #080f15;
    padding: 0 4px;
    border-radius: 2px;
}

.inner-circle {
    width: 60px;
    height: 60px;
    border-color: rgba(34, 211, 238, 0.6);
}

.middle-circle {
    width: 120px;
    height: 120px;
    border-color: rgba(34, 211, 238, 0.4);
}

.outer-circle {
    width: 180px;
    height: 180px;
    border-color: rgba(34, 211, 238, 0.2);
}

/* Simulated Cell Tower */
.cell-tower-marker {
    position: absolute;
    top: 30%;
    left: 35%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.tower-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

.antenna-sector {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 100px;
    border-radius: 0 100% 0 0;
    background: radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-top: 1.5px solid rgba(34, 211, 238, 0.4);
    border-right: 1.5px solid rgba(34, 211, 238, 0.4);
    transform-origin: bottom left;
    transform: rotate(15deg);
    pointer-events: none;
}

/* Dashboard Bottom Detail Box */
.ui-bottom-details {
    background: #0b141c;
    border-top: 1px solid #1a2c3a;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.detail-row {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.detail-row strong {
    color: var(--accent-cyan);
}

.detail-row span {
    color: var(--text-main);
    display: block;
    margin-top: 2px;
}

/* Section 4: Tasks Grid Styles */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    height: 70%;
}

.task-grid-card {
    background: var(--bg-card-glow);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.task-grid-card:hover {
    border-color: var(--border-glow-cyan);
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.1);
}

.task-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.task-grid-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.task-grid-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Section 5: Mockup Report Visuals */
.bg-dark-navy {
    background-color: rgba(7, 12, 17, 0.85);
}

.report-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.report-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.report-feature-item .item-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.report-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.report-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.mockup-report {
    background: #ffffff;
    color: #1e293b;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    font-family: var(--font-body);
}

.report-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.report-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 1px;
}

.mockup-report h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 5px;
}

.report-chart {
    display: flex;
    justify-content: space-around;
    height: 130px;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 10px;
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.chart-bar {
    width: 25px;
    background: linear-gradient(0deg, #1e293b 0%, var(--accent-gold-dark) 100%);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.chart-label {
    font-size: 0.65rem;
    color: #64748b;
    margin-top: 8px;
    text-align: center;
}

.report-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bullet-stat {
    font-size: 0.75rem;
    color: #334155;
    border-left: 2.5px solid var(--accent-gold-dark);
    padding-left: 10px;
}

/* Section 6: CTA & Requirements */
.grid-requirements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.req-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.req-card h4 {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-bottom: 8px;
}

.req-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Logo Marquee Styles */
.marquee-wrapper {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.marquee-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

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

/* Footer CTA Block */
.footer-cta {
    text-align: center;
    margin-top: 40px;
}

.footer-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
    width: 100%;
    max-width: 520px;
    display: inline-flex;
}

.cta-footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 20px;
}

.cta-logos {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.cta-logos-img {
    width: 65%;
    max-width: 338px;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.cta-logos-img:hover {
    opacity: 1;
}

/* Modal Overlay (Solicitar Demo) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 12, 17, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

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

.modal-card {
    background: #091016e6;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-main);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-logo {
    height: 54px;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-cyan);
}

.form-group input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px;
    border-radius: 6px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

/* Success Message inside modal */
.form-success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    font-size: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.form-success-message h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success-message p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .grid-2, .grid-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    .grid-requirements {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-section {
        padding: 100px 40px 40px;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-header {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .header-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: rgba(13, 21, 29, 0.95);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 25px;
        gap: 15px;
        backdrop-filter: blur(25px);
        z-index: 99;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(74, 118, 148, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        pointer-events: none;
    }
    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .header-nav .nav-link {
        text-align: center;
        font-size: 1.05rem;
        padding: 5px 0;
    }
    .main-header {
        padding: 20px;
    }
    .header-actions {
        gap: 10px;
    }
    .instagram-link {
        width: 36px;
        height: 36px;
    }
    .instagram-svg {
        width: 18px;
        height: 18px;
    }
    .header-actions .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    .story-section {
        padding: 90px 20px 20px;
    }
    .timeline-steps, .tasks-grid, .grid-requirements {
        grid-template-columns: 1fr;
    }
    .scroll-indicator {
        right: 15px;
    }
    #globe-canvas {
        opacity: 0.25; /* Suaviza o fundo para maior contraste dos textos */
    }
}

/* Color Utility Classes */
.text-cyan { color: var(--accent-cyan) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-emerald { color: var(--accent-emerald) !important; }

/* Portfolio Hub Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
    height: 70%;
    align-items: center;
}

.portfolio-card {
    background: var(--bg-card-glow);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-card .port-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.portfolio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.port-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.portfolio-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Card Glows */
.portfolio-card.border-cyan:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(74, 118, 148, 0.2);
    transform: translateY(-8px);
}

.portfolio-card.border-gold:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(74, 118, 148, 0.2);
    transform: translateY(-8px);
}

.portfolio-card.border-emerald:hover {
    border-color: var(--accent-emerald);
    box-shadow: 0 15px 40px rgba(74, 118, 148, 0.2);
    transform: translateY(-8px);
}

/* Button variants for cards */
.portfolio-card.border-cyan .btn-port:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(74, 118, 148, 0.3);
}

.portfolio-card.border-gold .btn-port:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(74, 118, 148, 0.3);
}

.portfolio-card.border-emerald .btn-port:hover {
    border-color: var(--accent-emerald);
    color: var(--accent-emerald);
    box-shadow: 0 0 10px rgba(74, 118, 148, 0.3);
}

/* Glow Borders for mockups */
.border-glow-gold {
    border-color: #1d303d !important;
}
.border-glow-gold:hover {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 15px 50px rgba(74, 118, 148, 0.1) !important;
}

.border-glow-emerald {
    border-color: #1d303d !important;
}
.border-glow-emerald:hover {
    border-color: var(--accent-emerald) !important;
    box-shadow: 0 15px 50px rgba(74, 118, 148, 0.1) !important;
}

/* Button Emerald */
.btn-primary-emerald {
    background-color: var(--accent-emerald);
    color: var(--text-dark);
}
.btn-primary-emerald:hover {
    background-color: #638fa8;
    box-shadow: 0 0 20px rgba(74, 118, 148, 0.6);
}

/* OSINT Graph Visualization styling */
.osint-graph-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-osint-node {
    background: #0a121a;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 15px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px rgba(74, 118, 148, 0.4);
    transition: transform 0.3s;
}

.leaf-node {
    position: absolute;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    padding: 8px 14px;
    border-radius: 20px;
    z-index: 9;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.leaf-node.visible {
    opacity: 1;
    transform: scale(1);
}

/* Placements inside radar map bounds */
.node-email { top: 22%; left: 15%; }
.node-phone { top: 22%; right: 15%; }
.node-ip { bottom: 22%; left: 15%; }
.node-alias { bottom: 22%; right: 15%; }

.leaf-node.matched {
    border-color: var(--accent-gold);
    color: #fff;
    box-shadow: 0 0 10px rgba(74, 118, 148, 0.2);
}

/* OSINT Log Overlay Terminal */
.osint-log-overlay {
    position: absolute;
    bottom: 35px;
    left: 15px;
    right: 15px;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(74, 118, 148, 0.2);
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--accent-gold);
    padding: 10px;
    border-radius: 4px;
    max-height: 80px;
    overflow-y: hidden;
    line-height: 1.4;
    z-index: 12;
}

/* Talon Crypto Results styling */
.crypto-results-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.result-title {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--accent-emerald);
    margin-bottom: 5px;
}

.crypto-wallet-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(74, 118, 148, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.crypto-wallet-block span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.crypto-wallet-block p {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.crypto-wallet-block .seed-text {
    color: var(--accent-emerald);
    letter-spacing: 0.5px;
}

.crypto-wallet-block.highlight-block {
    border-color: rgba(74, 118, 148, 0.3);
    background: rgba(74, 118, 148, 0.03);
    box-shadow: 0 0 10px rgba(74, 118, 148, 0.05);
}

/* Additional Responsive layouts for Hub */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
}

/* Tabs Navigation styling */
.tabs-nav {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    width: fit-content;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 18px;
    border-radius: 100px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Tabs active states for color themes */
.tabs-nav[data-product="geotalon"] .tab-btn.active {
    background: rgba(74, 118, 148, 0.15);
    color: var(--accent-cyan);
}

.tabs-nav[data-product="talonid"] .tab-btn.active {
    background: rgba(74, 118, 148, 0.15);
    color: var(--accent-gold);
}

.tabs-nav[data-product="taloncrypto"] .tab-btn.active {
    background: rgba(74, 118, 148, 0.15);
    color: var(--accent-emerald);
}

/* Tab panes styling */
.tabs-content {
    position: relative;
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

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

.tab-pane-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

/* Timeline mini and lists */
.step-mini-list, .timeline-mini, .osint-sources-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.step-mini-item, .timeline-mini-item, .chart-bullet {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 8px;
}

.step-mini-item strong, .timeline-mini-item strong, .chart-bullet strong {
    color: #fff;
}

.bullet-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.bullet-grid-mini div {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    border-radius: 8px;
}

.bullet-grid-mini div strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.report-features-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 5px 0;
}

/* --- TEAM/LEADERSHIP SECTION STYLES --- */
#sec-lideranca .grid-2 {
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

#sec-lideranca .section-tagline {
    margin-bottom: 4px;
}

#sec-lideranca .section-title {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

#sec-lideranca .section-subtitle {
    margin-bottom: 12px !important;
}

#sec-lideranca .section-text {
    font-size: 0.83rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

#sec-lideranca .section-text:last-child {
    margin-bottom: 0;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(74, 118, 148, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(74, 118, 148, 0.05);
    background: #0d151d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.85) contrast(1.15);
    mix-blend-mode: luminosity;
    transition: all 0.5s ease;
}

.team-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Cyan/blue tint overlay and shadow gradient to hide the bottom edges and integrate with the background */
    background: linear-gradient(180deg, rgba(13, 21, 29, 0.1) 0%, rgba(13, 21, 29, 0.8) 100%), rgba(74, 118, 148, 0.12);
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Hover effects */
.team-image-wrapper:hover .team-image {
    filter: none;
    mix-blend-mode: normal;
    transform: scale(1.03);
}

.team-image-wrapper:hover::after {
    background: linear-gradient(180deg, rgba(13, 21, 29, 0) 0%, rgba(13, 21, 29, 0.8) 100%), rgba(74, 118, 148, 0);
}

@media (max-width: 1024px) {
    #sec-lideranca .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-image-wrapper {
        margin: 0 auto;
        max-width: 360px;
    }
}

