:root {
    --primary-green: #10b981;
    --dark-green: #065f46;
    --deep-slate: #0f172a;
    --executive-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --accent-blue: #3b82f6;
    --soft-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --inner-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--executive-bg);
    color: var(--text-main);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Refinement */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-slate);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i { color: var(--primary-green); }
.logo span { color: var(--primary-green); font-weight: 400; }

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

nav ul li a:hover { color: var(--primary-green); }

.btn-nav {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600 !important;
}

/* Hero Executive */
.hero.executive {
    padding: 14rem 0 12rem;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), 
                url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero.executive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
    pointer-events: none;
}

.badge {
    display: inline-block;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--soft-shadow);
}

.hero h1 {
    font-size: 3.8rem;
    max-width: 950px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #1e293b;
    max-width: 750px;
    margin: 0 auto 3rem;
    font-weight: 600;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

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

.btn.secondary {
    background: var(--white);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    margin-left: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Dashboard Mockup */
.dashboard-preview {
    padding-bottom: 8rem;
}

.dashboard-container {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 80px 1fr;
    height: 600px;
    overflow: hidden;
    margin-top: 4rem;
}

.sidebar-mock {
    background: var(--deep-slate);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mock-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mock-item.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-green);
}

.main-mock {
    background: #f1f5f9;
    padding: 2rem;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.search-bar {
    width: 300px;
    height: 35px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--deep-slate); }

.stat-graph { height: 4px; border-radius: 2px; margin-top: 1rem; }
.stat-graph.green { background: var(--primary-green); width: 80%; }
.stat-graph.red { background: #ef4444; width: 30%; }
.stat-graph.blue { background: var(--accent-blue); width: 60%; }

.mock-content-area {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    height: 250px;
}

.box-title { font-weight: 600; margin-bottom: 1rem; font-size: 0.875rem; }

.dashboard-img-mock {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.9;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.8rem;
}

.list-item span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-green); }

/* Management Grid */
.management-focus {
    padding: 8rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.25rem;
}

.management-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mgmt-card {
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--executive-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.mgmt-card:hover { transform: translateY(-5px); }

.mgmt-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.mgmt-card h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.mgmt-card ul { list-style: none; }
.mgmt-card li { margin-bottom: 1rem; display: flex; gap: 0.75rem; color: var(--text-muted); }
.mgmt-card li i { color: var(--primary-green); margin-top: 4px; }

/* Normativas */
.normativas-section {
    padding: 8rem 0;
    background: var(--deep-slate);
    color: var(--white);
}

.norm-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.norm-text h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1.5rem; }
.norm-text p { font-size: 1.125rem; opacity: 0.8; margin-bottom: 2.5rem; }

.norm-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.norm-pill {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
}

.norm-visual {
    height: 350px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.norm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.norm-visual:hover .norm-img {
    opacity: 0.8;
    transform: scale(1.05);
}

.norm-visual i { font-size: 6rem; color: var(--primary-green); z-index: 1; position: absolute; }

.shield-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

/* Benefits Summary */
.benefits-summary {
    padding: 6rem 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.sum-item { text-align: center; }
.sum-item i { font-size: 2rem; color: var(--primary-green); margin-bottom: 1.5rem; }
.sum-item h4 { margin-bottom: 0.75rem; }
.sum-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-main .logo { margin-bottom: 1.5rem; }
.footer-main p { color: var(--text-muted); max-width: 300px; margin-bottom: 2rem; }

.partner { border-left: 3px solid var(--primary-green); padding-left: 1rem; }
.partner small { display: block; color: var(--text-muted); }

.footer-cta h3 { margin-bottom: 1rem; }
.footer-cta p { color: var(--text-muted); margin-bottom: 2rem; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .dashboard-container { grid-template-columns: 1fr; height: auto; }
    .sidebar-mock { display: none; }
    .management-grid, .norm-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { flex-direction: column; gap: 4rem; }
}
