﻿:root {
    --primary: #f7654b;
    --primary-light: #2ecc71;
    --primary-dark: #219653;
    --secondary: #34495e;
    --action: #ff4d4f;
    --action-light: #ff7875;
    --action-dark: #d9363e;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --light: #fefefe;
    --dark: #2c3e50;
    --gray: #bdc3c7;
    --gray-light: #f2f4f5;
    --background: #fefefe;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

.container.bg-white {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

/* Modern Tab Styling */
.nav-tabs {
    border-bottom: none;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.nav-item {
    margin-right: 1rem;
}

.nav-link {
    border: none !important;
    padding: 1rem 1.5rem;
    color: #6c757d !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px 8px 0 0 !important;
    background-color: transparent !important;
}

    .nav-link i {
        margin-right: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: #495057 !important;
        transform: translateY(-2px);
    }

        .nav-link:hover i {
            transform: scale(1.1);
        }

    .nav-link.active {
        background-color: transparent !important;
        font-weight: 600;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--primary);
            border-radius: 3px 3px 0 0;
        }

/* Tab Content Styling */
.tab-content {
    padding: 2rem;
}

.tab-pane {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-tabs {
        padding: 0 0.5rem;
    }

    .nav-item {
        margin-right: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 1.5rem;
    }
}

/* Modern Card Styling for Partial Views */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

/* Modern Icon Styling */
.fa {
    transition: transform 0.3s ease;
}

/* Smooth hover effects */
a {
    transition: color 0.3s ease;
}
/* Views/EmpresaInfo.css */

.info-container {
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}
