/* BVasconcelos Consulting - Corporate Styles */

/* Corporate Color Palette */
/* Corporate Color Palette - Premium Tech Consulting Look */
:root {
    --corporate-primary: #0f172a;
    /* Deep Navy/Slate */
    --corporate-secondary: #1e293b;
    /* Dark Slate */
    --corporate-accent: #38bdf8;
    /* Electric Blue */
    --corporate-success: #10b981;
    --corporate-warning: #f59e0b;
    --corporate-danger: #ef4444;
    --corporate-dark: #020617;
    --corporate-light: #f8fafc;
    --corporate-gray: #64748b;
    --corporate-text: #334155;
}

/* Logo Styling */
.logo-image {
    max-height: 300px;
    /* Increased from 60px */
    width: auto;
    max-width: 1600px;
    /* Significantly increased width */
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Logo container */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Keep left aligned as per original layout, or center if preferred */
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .logo-image {
        max-height: 150px;
        /* Smaller on tablets */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-image {
        max-height: 100px;
        /* Smaller on mobile */
    }

    .company-logo {
        justify-content: center;
    }
}

/* Hero Section Corporate */
.hero-section {
    /* REMOVED: background override that caused white-on-white text */
    /* background: linear-gradient(135deg, var(--corporate-light) 0%, #ffffff 100%); */
    padding: 120px 0 80px;
    min-height: 70vh;
}

.hero-stats .stat-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
}

.client-logos .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin: 4px;
    border: 1px solid #dee2e6;
}

/* Specialty Cards */
.specialty-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Case Cards */
.case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.result-highlight {
    background: rgba(40, 167, 69, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--corporate-success);
    margin-top: 15px;
}

/* Director Section */
.director-image {
    border: 4px solid var(--corporate-primary);
    transition: transform 0.3s ease;
}

.director-image:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--corporate-primary) 0%, var(--corporate-secondary) 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* Methodology Steps */
.methodology-preview .rounded-circle {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Skills Section */
.skill-badge {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 102, 204, 0.05);
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 102, 204, 0.1);
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--corporate-primary) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--corporate-primary) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--corporate-primary);
    border-color: var(--corporate-primary);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--corporate-secondary);
    border-color: var(--corporate-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
    color: var(--corporate-primary);
    border-color: var(--corporate-primary);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--corporate-primary);
    border-color: var(--corporate-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--corporate-dark) 0%, #1a252f 100%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-stats {
        margin-top: 40px;
    }

    .methodology-preview {
        margin-top: 30px;
    }

    .director-image {
        max-width: 200px;
        margin-bottom: 30px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}