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

:root {
    /* Improving Official Brand Colors */
    --improving-blue: #005596;
    --improving-light-blue: #4597D3;
    --improving-green: #4597D3;
    --improving-orange: #F5BB41;
    --improving-gray: #A7A8A9;
    --improving-purple: #9D1D96;
    
    /* Legacy variables mapped to Improving colors */
    --primary-blue: #005596;
    --dark-blue: #003d6b;
    --light-blue: #4597D3;
    --cyber-cyan: #4597D3;  /* Changed to light blue for better readability */
    
    /* New Light Theme */
    --bg-light: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    
    /* Layout */
    --sidebar-width-expanded: 360px;
    --sidebar-width-collapsed: 70px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Headings for Light Theme */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
}

p {
    color: #6c757d;
}

a {
    color: #005596;
}

a:hover {
    color: #4597D3;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #ffffff; /* Fundo 100% branco */
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(69, 151, 211, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(69, 151, 211, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 85, 150, 0.02) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite alternate;
}

.bg-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;\n    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(69, 151, 211, 0.1), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(69, 151, 211, 0.08), transparent);
    background-size: 200% 200%, 300% 300%;
    background-position: 0% 0%;
    animation: particles 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes particles {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    25% {
        background-position: 40% 20%, 30% 40%, 20% 30%, 50% 10%, 60% 30%, 25% 45%, 35% 25%;
    }
    50% {
        background-position: 80% 40%, 60% 80%, 50% 60%, 100% 30%, 120% 60%, 50% 90%, 70% 50%;
    }
    75% {
        background-position: 40% 60%, 30% 120%, 20% 90%, 50% 70%, 60% 90%, 25% 135%, 35% 75%;
    }
}

/* Remove grid overlay - replaced with particles */
.grid-overlay {
    display: none;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width-expanded);
    height: 100vh;
    background: linear-gradient(to bottom, #002a4d 0%, #003d6b 100%);
    /* Gradiente VERTICAL com 2 tons escuros: Very Dark Blue → Dark Blue */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 5px 0 30px rgba(0, 85, 150, 0.3);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.collapsed {
    width: var(--sidebar-width-collapsed);
}

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

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

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

.sidebar-header {
    padding: 25px 20px;  /* Mais padding vertical */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;  /* Centraliza o conteúdo */
    justify-content: space-between;
    position: relative;
}

.sidebar-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;  /* Centraliza o logo */
    flex: 1;
    min-width: 0;
}

.sidebar-logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.sidebar.collapsed .sidebar-logo-text {
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}

.sidebar-logo {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
}

.sidebar-logo-img {
    width: 220px;  /* Aumentado de 180px */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;  /* Centralizado com margem */
    /* Logo PNG transparente - sem filtros necessários */
}

.sidebar.collapsed .sidebar-logo-img {
    width: 50px;
    margin: 0 auto;
}

.sidebar-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.sidebar-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    font-size: 18px;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.sidebar.collapsed .sidebar-toggle {
    margin: 0 auto;
}

.menu-section {
    padding: 0;
    border-bottom: 1px solid rgba(69, 151, 211, 0.1);
    margin-bottom: 0;
}

.menu-title {
    padding: 12px 20px 12px;
    margin-bottom: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.2s;
}

/* Collapsible Menu Styles */
.menu-title.collapsible {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    margin-bottom: 0;
    user-select: none;
    transition: all 0.3s ease;
}

.menu-title.collapsible:hover {
    background: rgba(255, 255, 255, 0.05);
}

.collapse-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 10px;
    opacity: 0.7;
}

.menu-title.collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

.menu-items {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 1;
    padding-bottom: 15px;
}

.menu-items.collapsed {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    padding-bottom: 0;
}

/* Category Colors - All unified to #00D4FF */

/* Company - Azul Ciano #00D4FF */
.menu-section:nth-child(1) .menu-title,
.menu-section:nth-child(1) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(1) .menu-item.active,
.menu-section:nth-child(1) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* SAP Business Data Cloud - Azul Ciano #00D4FF (mantida na posição 2) */
.menu-section:nth-child(2) .menu-title,
.menu-section:nth-child(2) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(2) .menu-item.active,
.menu-section:nth-child(2) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* SAP Business Technology Platform - Azul Ciano #00D4FF */
.menu-section:nth-child(3) .menu-title,
.menu-section:nth-child(3) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(3) .menu-item.active,
.menu-section:nth-child(3) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Consolidation - Azul Ciano #00D4FF */
.menu-section:nth-child(4) .menu-title,
.menu-section:nth-child(4) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(4) .menu-item.active,
.menu-section:nth-child(4) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Managed Support Services - Azul Ciano #00D4FF */
.menu-section:nth-child(5) .menu-title,
.menu-section:nth-child(5) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(5) .menu-item.active,
.menu-section:nth-child(5) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Our Products & Frameworks - Azul Ciano #00D4FF */
.menu-section:nth-child(6) .menu-title,
.menu-section:nth-child(6) .menu-item {
    color: #00D4FF; /* Azul Ciano - Unified color */
}

.menu-section:nth-child(6) .menu-item.active,
.menu-section:nth-child(6) .menu-item:hover {
    border-left-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.sidebar.collapsed .menu-title {
    opacity: 0;
    height: 0;
    padding: 0;
}

.menu-item {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.sidebar.collapsed .menu-item {
    justify-content: center;
    padding: 12px 0;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.3s;
}

.menu-item:hover {
    color: var(--cyber-cyan);
    background: rgba(69, 151, 211, 0.05);
    border-left-color: var(--cyber-cyan);
}

.menu-item:hover::before {
    width: 100%;
}

.menu-item.active {
    color: var(--cyber-cyan);
    border-left-color: var(--cyber-cyan);
    background: rgba(69, 151, 211, 0.1);
}

.menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 6px currentColor);
    transition: all 0.3s;
}

.menu-item:hover .menu-icon svg {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 15px currentColor);
    transform: scale(1.1);
}

/* Icon colors per category - All unified to SAP BDC blue */
.menu-section:nth-child(1) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - Company */
}

.menu-section:nth-child(2) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - SAP Business Data Cloud */
}

.menu-section:nth-child(3) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - SAP Business Technology Platform */
}

.menu-section:nth-child(4) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - Consolidation */
}

.menu-section:nth-child(5) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - Manager Support Services */
}

.menu-section:nth-child(6) .menu-icon {
    color: #4597D3; /* Azul SAP BDC - Our Products */
}

.menu-item span:not(.menu-icon) {
    transition: opacity 0.2s, transform 0.2s;
}

.sidebar.collapsed .menu-item span:not(.menu-icon) {
    opacity: 0;
    transform: translateX(-10px);
    position: absolute;
}

/* Tooltip for collapsed state */
.sidebar.collapsed .menu-item {
    position: relative;
}

.sidebar.collapsed .menu-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(69, 151, 211, 0.3);
}

.sidebar.collapsed .menu-item:hover::after {
    opacity: 1;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width-expanded);
    min-height: 100vh;
    position: relative;
    z-index: 2;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.collapsed ~ .main-content,
body:has(.sidebar.collapsed) .main-content {
    margin-left: var(--sidebar-width-collapsed);
}

.top-header {
    background: linear-gradient(to right, #002a4d 0%, #003d6b 100%);
    /* Mesmo degradê do menu: 2 tons de azul escuro */
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar input:focus {
    border-color: #00D4FF;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(69, 151, 211, 0.1);
}

.search-bar::before {
    content: '🔍';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-height: 500px;
    overflow-y: auto;
    margin-top: 10px;
    z-index: 1000;
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e8eaed;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f5f7fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.search-result-category {
    font-size: 12px;
    color: #005596;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.search-result-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
}

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

.header-btn {
    padding: 10px 20px;
    background: rgba(69, 151, 211, 0.1);
    border: 1px solid rgba(69, 151, 211, 0.3);
    border-radius: 20px;
    color: var(--cyber-cyan);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-btn:hover {
    background: rgba(69, 151, 211, 0.2);
    box-shadow: 0 5px 20px rgba(69, 151, 211, 0.3);
}

.container {
    padding: 15px 30px 30px;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.breadcrumb a:hover {
    color: #005596;
}

.breadcrumb span {
    color: #005596;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 0 40px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(69, 151, 211, 0.15);
    border: 1px solid rgba(69, 151, 211, 0.4);
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(69, 151, 211, 0.3);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--cyber-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Categories Showcase */
.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.category-card-large {
    background: #ffffff;  /* Fundo 100% branco */
    backdrop-filter: none;
    border: 2px solid #e0e0e0;  /* Border cinza clara */
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);  /* Sombra suave */
}

/* Featured badge for special cards */
.category-card-featured {
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.category-card-featured::after {
    content: '⭐ NEW';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.category-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(69, 151, 211, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s;
    pointer-events: none;
}

.category-card-large:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #4597D3;  /* Light Blue Improving */
    box-shadow: 0 20px 60px rgba(69, 151, 211, 0.3);  /* Sombra azul */
}

.category-card-large:hover .category-glow {
    width: 500px;
    height: 500px;
}

.category-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(69, 151, 211, 0.6));  /* Glow azul */
    transition: all 0.5s;
}

.category-card-large:hover .category-icon-large {
    filter: drop-shadow(0 0 30px rgba(69, 151, 211, 0.8));
}

.category-content-large {
    position: relative;
    z-index: 1;
}

.category-content-large h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #005596;  /* Improving Blue */
    line-height: 1.2;
}

.category-content-large p {
    color: #6c757d;  /* Cinza para leitura */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-badge-count {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 187, 65, 0.15);  /* Laranja claro */
    border: 1px solid #F5BB41;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #F5BB41;  /* Laranja Improving */
    margin-bottom: 25px;
}

.btn-explore {
    padding: 14px 32px;
    background: linear-gradient(135deg, #005596, #4597D3);  /* Degradê Improving Blue */
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(69, 151, 211, 0.6);
}

/* Why Section */
.why-section {
    margin: 60px 0;
    padding: 50px 0;
    background: rgba(0, 217, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(69, 151, 211, 0.1);
}

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

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: #ffffff;
    border-color: #4597D3;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(69, 151, 211, 0.15);
}

.stat-number-large {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 151, 211, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s;
    cursor: pointer;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-cyan);
    box-shadow: 0 15px 40px rgba(69, 151, 211, 0.3);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(69, 151, 211, 0.4));
}

.use-case-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
}

.use-case-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-explore {
    color: var(--cyber-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.link-explore:hover {
    text-shadow: 0 0 10px var(--cyber-cyan);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(69, 151, 211, 0.3);
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(69, 151, 211, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
}

.btn-primary-large {
    background: white;
    color: var(--primary-blue);
}

.btn-primary-large:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary-large {
    background: transparent;
    color: white;
}

.btn-secondary-large:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #002a4d 0%, #003d6b 100%);
    /* Mesmo degradê do menu: 2 tons de azul escuro */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 40px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}


.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    background: var(--cyber-cyan);
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

/* Product Page Styles */
.product-hero {
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 217, 255, 0.03);
    border-radius: 30px;
    margin: 30px 0;
}

.product-icon-large {
    font-size: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(69, 151, 211, 0.6));
}

.product-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 900;
}

.product-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.product-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyber-cyan));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(69, 151, 211, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
}

.btn-secondary:hover {
    background: rgba(69, 151, 211, 0.1);
    transform: translateY(-3px);
}

.overview-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(69, 151, 211, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.overview-box p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(69, 151, 211, 0.05);
    border-radius: 12px;
}

.benefit-icon {
    font-size: 28px;
}

.benefit-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.section {
    margin: 50px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -10px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #4597D3;
    box-shadow: 0 8px 24px rgba(69, 151, 211, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.use-case-problem {
    color: rgba(255, 100, 100, 0.8);
    font-weight: 600;
    margin-bottom: 8px;
}

.use-case-solution {
    color: rgba(100, 255, 100, 0.8);
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tech-spec-category {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tech-spec-category:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 151, 211, 0.5);
    box-shadow: 0 8px 32px rgba(69, 151, 211, 0.2);
}

.tech-spec-category h3 {
    color: #4597D3;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(69, 151, 211, 0.3);
}

.tech-spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-spec-category li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tech-spec-category li:before {
    content: "✓";
    color: #4597D3;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.tech-spec-category li:last-child {
    border-bottom: none;
}

.why-improving-box {
    background: rgba(69, 151, 211, 0.05);
    border: 2px solid rgba(69, 151, 211, 0.3);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.why-improving-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--cyber-cyan);
}

.why-improving-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Objections Section - SAP Datasphere */
.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.objection-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.objection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 151, 211, 0.5);
    box-shadow: 0 8px 30px rgba(69, 151, 211, 0.2);
}

.objection-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4597D3 0%, #4597D3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

.objection-title {
    font-size: 18px;
    color: #4597D3;
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.objection-answer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Official Sources Section - SAP Datasphere */
.sources-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.source-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.source-link:hover {
    border-color: rgba(69, 151, 211, 0.6);
    background: rgba(69, 151, 211, 0.05);
    transform: translateX(10px);
}

.source-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.source-title {
    flex: 1;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.source-arrow {
    font-size: 20px;
    color: #4597D3;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.source-link:hover .source-arrow {
    transform: translateX(5px);
}

.stats-inline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-inline {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light-blue), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guardian Specific Sections */

/* Struggles Section */
.struggles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.struggle-card {
    background: rgba(255, 100, 100, 0.05);
    border: 2px solid rgba(255, 100, 100, 0.2);
    border-left: 5px solid #ff6464;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.struggle-card:hover {
    transform: translateY(-5px);
    border-color: #ff6464;
    box-shadow: 0 15px 40px rgba(255, 100, 100, 0.3);
}

.struggle-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.struggle-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ff8888;
}

.struggle-points {
    list-style: none;
    padding: 0;
}

.struggle-points li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.struggle-points li:last-child {
    border-bottom: none;
}

.struggle-points li::before {
    content: '•';
    color: #ff6464;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.how-it-works-card {
    background: rgba(69, 151, 211, 0.05);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-cyan);
    box-shadow: 0 15px 40px rgba(69, 151, 211, 0.3);
}

.how-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(69, 151, 211, 0.5));
}

.how-it-works-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--cyber-cyan);
}

.how-it-works-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

/* Benefits Grid New */
.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card-new {
    background: rgba(100, 255, 100, 0.05);
    border: 2px solid rgba(100, 255, 100, 0.2);
    border-left: 5px solid #64ff64;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.benefit-card-new:hover {
    transform: translateY(-5px);
    border-color: #64ff64;
    box-shadow: 0 15px 40px rgba(100, 255, 100, 0.3);
}

.benefit-icon-new {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card-new h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #88ff88;
}

.benefit-card-new p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

/* Ideal Customer Section */
.ideal-customer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ideal-customer-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.ideal-customer-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.customer-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.ideal-customer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFD700;
}

.ideal-customer-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

/* Simple Packages */
.packages-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card-simple {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.package-card-simple:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-cyan);
    box-shadow: 0 20px 50px rgba(69, 151, 211, 0.3);
}

.package-header-simple {
    text-align: center;
    margin-bottom: 30px;
}

.package-header-simple h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.package-hours {
    font-size: 36px;
    font-weight: 900;
    color: var(--cyber-cyan);
    margin-bottom: 10px;
}

.package-features-simple {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.package-features-simple li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features-simple li:last-child {
    border-bottom: none;
}

.checkmark {
    color: var(--cyber-cyan);
    font-weight: bold;
    margin-right: 10px;
}

/* Guardian Delivers Section */
.guardian-delivers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.guardian-deliver-card {
    background: rgba(69, 151, 211, 0.05);
    border: 1px solid rgba(69, 151, 211, 0.2);
    border-left: 4px solid var(--cyber-cyan);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.guardian-deliver-card:hover {
    background: rgba(69, 151, 211, 0.1);
    border-left-width: 6px;
    transform: translateX(5px);
}

.guardian-deliver-card h4 {
    color: var(--cyber-cyan);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.guardian-deliver-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-cyan);
    box-shadow: 0 20px 50px rgba(69, 151, 211, 0.3);
}

.package-recommended {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.package-recommended:hover {
    border-color: #FFA500;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

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

.package-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.package-price {
    margin-bottom: 15px;
}

.price-currency {
    font-size: 24px;
    color: var(--cyber-cyan);
    vertical-align: top;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--cyber-cyan);
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.package-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.package-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.package-features li:last-child {
    border-bottom: none;
}

.btn-package {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyber-cyan));
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(69, 151, 211, 0.5);
}

/* Assumptions Section */
.assumptions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.assumption-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(69, 151, 211, 0.15);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s;
}

.assumption-card:hover {
    background: rgba(69, 151, 211, 0.05);
    border-color: var(--cyber-cyan);
    transform: translateY(-5px);
}

.assumption-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(69, 151, 211, 0.4));
}

.assumption-card h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.assumption-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Guardian Download Button - NEW */
.btn-download-guardian {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #FFD700;
    border-radius: 30px;
    color: #000000;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-download-guardian::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download-guardian:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download-guardian:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8);
    border-color: #FFA500;
}

.download-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.download-text {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 215, 0, 1), 
                    0 0 50px rgba(255, 215, 0, 0.5);
    }
}

/* Enhanced Download Button */
.btn-secondary {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    border: 2px solid #FFD700 !important;
    font-weight: 800 !important;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4) !important;
    animation: pulse-download 2s infinite;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-5px) scale(1.05) !important;
}

@keyframes pulse-download {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 215, 0, 0.7);
    }
}

/* ===========================
   NEW HOME PAGE STYLES - COMPACT & INSTIGANTE
   =========================== */

/* Compact Hero */
.hero-compact {
    text-align: center;
    padding: 40px 0 30px;
    margin-bottom: 40px;
}

.hero-badge-new {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(69, 151, 211, 0.1);
    border: 1px solid rgba(69, 151, 211, 0.3);
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--cyber-cyan);
}

.hero-title-new {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyber-cyan), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-new {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* NEW PRODUCTS SPOTLIGHT */
.spotlight-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;  /* Fundo 100% branco */
    border-radius: 20px;
    border: 2px solid #e0e0e0;  /* Border cinza clara */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);  /* Sombra suave */
}

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

.spotlight-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.spotlight-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #005596;  /* Improving Blue */
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.spotlight-card {
    background: #ffffff;  /* Fundo 100% branco */
    backdrop-filter: none;
    border: 2px solid #e0e0e0;  /* Border cinza clara */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);  /* Sombra suave */
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card.featured {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.spotlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(69, 151, 211, 0.5);
    border-color: var(--cyber-cyan);
}

.spotlight-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.spotlight-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(69, 151, 211, 0.6));
}

.spotlight-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #005596;  /* Improving Blue */
}

.spotlight-desc {
    font-size: 14px;
    color: #6c757d;  /* Cinza para leitura */
    margin-bottom: 15px;
    line-height: 1.6;
}

.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(69, 151, 211, 0.1);  /* Azul claro */
    border: 1px solid #4597D3;
    border-radius: 12px;
    font-size: 11px;
    color: #005596;  /* Improving Blue */
    font-weight: 600;
}

.spotlight-cta {
    font-size: 14px;
    font-weight: 700;
    color: #F5BB41;  /* Laranja Improving */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight-card:hover .spotlight-cta {
    color: #FFD700;
}

/* Compact Categories Grid */
.section-header-compact {
    text-align: center;
    margin-bottom: 25px;
}

.section-header-compact h2 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.section-header-compact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.categories-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.category-card-compact {
    background: #ffffff;  /* Fundo 100% branco */
    backdrop-filter: none;
    border: 2px solid #e0e0e0;  /* Border cinza */
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);  /* Sombra suave */
}

.category-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 85, 150, 0.2);  /* Sombra azul Improving */
}

.category-blue {
    border-color: rgba(69, 151, 211, 0.3);
}

.category-blue:hover {
    border-color: #4597D3;
    box-shadow: 0 15px 40px rgba(69, 151, 211, 0.4);
}

.category-light-blue {
    border-color: rgba(69, 151, 211, 0.3);
}

.category-light-blue:hover {
    border-color: #4597D3;
    box-shadow: 0 8px 24px rgba(69, 151, 211, 0.3);
}

.category-yellow {
    border-color: rgba(255, 215, 0, 0.3);
}

.category-yellow:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.category-green {
    border-color: rgba(0, 255, 159, 0.3);
}

.category-green:hover {
    border-color: #00FF9F;
    box-shadow: 0 15px 40px rgba(0, 255, 159, 0.4);
}

.category-icon-compact {
    margin-bottom: 12px;
}

.category-icon-compact svg {
    filter: drop-shadow(0 0 10px currentColor);
    transition: all 0.3s;
}

.category-card-compact:hover .category-icon-compact svg {
    filter: drop-shadow(0 0 20px currentColor);
    transform: scale(1.1);
}

.category-card-compact h3 {
    font-size: 16px;
    font-weight: 700;
    color: #005596;  /* Improving Blue */
    margin-bottom: 6px;
}

.category-card-compact p {
    font-size: 12px;
    color: #6c757d;  /* Cinza */
    margin-bottom: 10px;
}

.solution-count {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(69, 151, 211, 0.1);
    border: 1px solid rgba(69, 151, 211, 0.3);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyber-cyan);
}

/* Inline Stats */
.stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(69, 151, 211, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(69, 151, 211, 0.1);
    margin-top: 40px;
}

.stat-inline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-inline strong {
    font-size: 20px;
    font-weight: 900;
    color: var(--cyber-cyan);
    margin-right: 4px;
}

.stat-divider {
    color: rgba(69, 151, 211, 0.3);
    font-size: 20px;
}

/* ===========================
   CATEGORY HUB PAGES
   =========================== */

/* Category Hero */
.category-hero {
    text-align: center;
    padding: 40px 0 30px;
    background: rgba(0, 217, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 30px;
}

.category-hero-icon {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(69, 151, 211, 0.6));
}

.category-hero-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--cyber-cyan), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Category Overview */
.category-overview {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--cyber-cyan);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.category-overview p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Solution Tiles Grid */
.category-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.solution-tile {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.solution-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(69, 151, 211, 0.3);
    border-color: var(--cyber-cyan);
}

.solution-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.solution-tile-icon {
    font-size: 48px;
    transition: all 0.3s;
}

.solution-tile:hover .solution-tile-icon {
    transform: scale(1.1);
}

.solution-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.solution-tile-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.solution-tile-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.solution-tile-cta {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.solution-tile:hover .solution-tile-cta {
    color: #FFD700 !important;
}

/* Benefits Grid (Category) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(69, 151, 211, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(69, 151, 211, 0.2);
}

.benefit-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(69, 151, 211, 0.5));
}

.benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   xi.PLANNING PACKAGES - CUSTOM PAGE
   =========================== */

/* Hero Section */
.xiplanning-hero {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.xiplanning-icon {
    font-size: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(69, 151, 211, 0.6));
}

.xiplanning-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--cyber-cyan), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.xiplanning-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.xiplanning-video-container {
    max-width: 900px;
    margin: 40px auto;
}

.xiplanning-video-lite {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(69, 151, 211, 0.3);
    border: 2px solid rgba(69, 151, 211, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.xiplanning-video-lite:hover {
    box-shadow: 0 25px 70px rgba(69, 151, 211, 0.5);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border-radius: 18px;
}

.xiplanning-video-lite:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    transition: all 0.3s;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.xiplanning-video-lite:hover .play-button {
    transform: scale(1.1);
}

.play-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.xiplanning-video {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(69, 151, 211, 0.3);
    border: 2px solid rgba(69, 151, 211, 0.3);
}

.xiplanning-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

/* Problem Statement */
.xiplanning-problem {
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid #FF0080;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.xiplanning-problem h2 {
    font-size: 32px;
    font-weight: 900;
    color: #FF0080;
    margin-bottom: 15px;
}

.xiplanning-problem h3 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.problem-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.problem-reason {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 3px solid #FF0080;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.problem-conclusion {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Time for Change */
.xiplanning-change {
    background: linear-gradient(135deg, rgba(69, 151, 211, 0.1), rgba(157, 78, 221, 0.1));
    border: 2px solid rgba(69, 151, 211, 0.3);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.xiplanning-change h2 {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-cyan), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.xiplanning-change > p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.change-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.change-benefit {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--cyber-cyan);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.change-tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyber-cyan);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(69, 151, 211, 0.2);
}

/* SAC Overview */
.xiplanning-sac {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--cyber-cyan);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.xiplanning-sac h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--cyber-cyan);
    margin-bottom: 15px;
}

.xiplanning-sac p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Grid (xi.Planning specific) */
.benefits-grid-xiplanning {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item-xiplanning {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(69, 151, 211, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(69, 151, 211, 0.2);
}

.benefit-item-xiplanning .benefit-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(69, 151, 211, 0.5));
}

.benefit-item-xiplanning .benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* What is xi.Planning */
.xiplanning-what {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.xiplanning-what h2 {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
}

.xiplanning-what p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(69, 151, 211, 0.3);
}

.package-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px currentColor);
}

.package-name {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.package-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.module-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: #4597D3;
    box-shadow: 0 8px 24px rgba(69, 151, 211, 0.15);
}

.module-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.module-name {
    font-size: 14px;
    font-weight: 900;
    color: #005596;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.module-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.module-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 15px;
}

.module-versions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.version-badge {
    padding: 4px 12px;
    background: rgba(69, 151, 211, 0.15);
    border: 1px solid rgba(69, 151, 211, 0.3);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyber-cyan);
}

.product-cta-final {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 2px solid rgba(69, 151, 211, 0.3);
}

.product-cta-final h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-showcase {
        grid-template-columns: 1fr;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   ORION PORTAL - NEW LAYOUT (Clean & Professional)
   Following XiPlanning standard
   =================================== */

/* ORION LOGO IN HERO */
.orion-logo-hero {
    margin: 0 auto 30px;
    text-align: center;
}

.orion-portal-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(69, 151, 211, 0.5));
    animation: float 3s ease-in-out infinite;
}

/* xPress Planning Logo in Product Page */
.xpress-planning-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(69, 151, 211, 0.5));
    animation: float 3s ease-in-out infinite;
}

/* SAP Datasphere Logo in Product Page */
.datasphere-logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(69, 151, 211, 0.5));
    animation: float 3s ease-in-out infinite;
}

/* SAP Datasphere Example Image */
.datasphere-example-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 20px;
}

.datasphere-example-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Logos in HOME Spotlight Cards */
.spotlight-icon-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.spotlight-product-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(69, 151, 211, 0.3));
}

.spotlight-card:hover .spotlight-product-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(69, 151, 211, 0.6));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* VIDEO SECTION - LARGER SIZE */
.orion-video-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.orion-video {
    width: 100%;
    height: auto;
    min-height: 500px;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(69, 151, 211, 0.3);
    border: 3px solid rgba(69, 151, 211, 0.4);
    background: #000;
}

/* YouTube iframe styling */
iframe.orion-video {
    height: 600px;  /* Altura fixa para iframe */
    aspect-ratio: 16/9;
}

/* FEATURES GRID */
.orion-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.orion-feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(69, 151, 211, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.orion-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(69, 151, 211, 0.5);
    box-shadow: 0 8px 32px rgba(69, 151, 211, 0.2);
}

.orion-feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.orion-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.orion-feature-image-wrapper:hover .orion-feature-img {
    transform: scale(1.05);
}

.orion-zoom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orion-feature-image-wrapper:hover .orion-zoom-overlay {
    opacity: 1;
}

.orion-zoom-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(69, 151, 211, 0.8));
}

.orion-zoom-text {
    color: #4597D3;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.orion-feature-content-card {
    padding: 30px;
}

.orion-feature-icon-small {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(69, 151, 211, 0.6));
}

.orion-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #4597D3;
    margin-bottom: 12px;
}

.orion-feature-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.6;
}

.orion-feature-details {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.orion-integration-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(69, 151, 211, 0.2);
}

.orion-integration-list strong {
    color: #4597D3;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
}

.orion-integration-list ul {
    list-style: none;
    padding: 0;
}

.orion-integration-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* IMAGE MODAL (Lightbox for zoom) */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: zoomIn 0.3s ease;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 8px 64px rgba(69, 151, 211, 0.4);
    border: 3px solid rgba(69, 151, 211, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 0, 0, 0.9);
    border: none;
    color: white;
    font-size: 40px;
    font-weight: 300;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.image-modal-close:hover {
    background: #ff0000;
    transform: rotate(90deg);
}

.image-modal-caption {
    color: #4597D3;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments for Orion Portal */
@media (max-width: 1024px) {
    .orion-features-grid {
        grid-template-columns: 1fr;
    }
    
    .orion-feature-image-wrapper {
        height: 240px;
    }
    
    .tech-specs {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .orion-video {
        min-height: 400px;
    }
    
    .orion-portal-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .xpress-planning-logo-img {
        width: 150px;
        height: 150px;
    }
    
    .datasphere-logo-img {
        width: 180px;
        height: auto;
    }
    
    .datasphere-example-wrapper {
        padding: 20px;
    }
    
    .spotlight-product-logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

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

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

    .grid-overlay {
        left: 0;
        width: 100%;
    }

    .top-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-bar {
        order: 3;
        flex-basis: 100%;
    }

    .stats-showcase,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

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

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .tech-specs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Orion Portal Mobile */
    .tech-specs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .objection-card {
        padding: 25px 20px;
    }
    
    .source-link {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .orion-video {
        min-height: 250px;
    }
    
    .orion-video-wrapper {
        padding: 0 10px;
    }
    
    .orion-feature-image-wrapper {
        height: 200px;
    }
    
    .orion-portal-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .xpress-planning-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .datasphere-logo-img {
        width: 150px;
        height: auto;
    }
    
    .datasphere-example-wrapper {
        padding: 15px;
    }
    
    .spotlight-product-logo {
        width: 80px;
        height: 80px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 30px;
    }

    .product-cta-buttons {
        flex-direction: column;
    }

    .btn-download-guardian {
        width: 100%;
        padding: 20px 30px;
        font-size: 16px;
    }

    .download-icon {
        font-size: 24px;
    }

    .download-text {
        font-size: 16px;
    }

    .guardian-delivers-grid {
        grid-template-columns: 1fr;
    }

    .struggles-grid,
    .how-it-works-grid,
    .benefits-grid-new,
    .ideal-customer-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid,
    .packages-grid-simple {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .container {
        padding: 20px 20px 40px;
    }

    :root {
        --sidebar-width: 0px;
    }
}
