/*
 * Valecom - Sector Manufacturing CSS
 * Estilos específicos para la página de Manufactura Inteligente (ManufacturaIQ)
 */

:root {
    --manufacturing-primary: #FF5722;
    --manufacturing-primary-hover: #E64A19;
    --manufacturing-secondary: #0F4C81;
    --manufacturing-accent: #FFC107;
    --manufacturing-light: #FBE9E7;
    --manufacturing-dark: #BF360C;
}

.btn-manufacturing {
    background-color: var(--manufacturing-primary);
    border-color: var(--manufacturing-primary);
    color: white;
}
.btn-manufacturing:hover, .btn-manufacturing:focus {
    background-color: var(--manufacturing-primary-hover);
    border-color: var(--manufacturing-primary-hover);
    color: white;
}
.btn-outline-manufacturing {
    color: var(--manufacturing-primary);
    border-color: var(--manufacturing-primary);
}
.btn-outline-manufacturing:hover, .btn-outline-manufacturing:focus {
    background-color: var(--manufacturing-primary);
    border-color: var(--manufacturing-primary);
    color: white;
}

.manufacturing-hero {
    background: linear-gradient(135deg, var(--manufacturing-light) 0%, #F8F9FC 100%);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.manufacturing-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    background: url('../img/patterns/manufacturing-pattern.svg') repeat;
    opacity: 0.04;
    z-index: 0;
}

.sector-logo-hero {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--manufacturing-primary), var(--manufacturing-accent));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255,87,34,.3);
}
.sector-logo-hero i { font-size: 2.5rem; color: white; }

.manufacturing-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border-top: 4px solid var(--manufacturing-primary);
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.manufacturing-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255,87,34,.15);
}
.manufacturing-feature-card .feature-icon {
    width: 52px; height: 52px;
    background: var(--manufacturing-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.manufacturing-feature-card .feature-icon i {
    font-size: 1.4rem;
    color: var(--manufacturing-primary);
}

.manufacturing-stat {
    text-align: center;
    padding: 2rem 1rem;
}
.manufacturing-stat .stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--manufacturing-primary);
    line-height: 1;
}
.manufacturing-stat .stat-label {
    font-size: .85rem;
    color: #52616B;
    margin-top: .35rem;
}

.manufacturing-cta {
    background: linear-gradient(135deg, var(--manufacturing-primary), var(--manufacturing-dark));
    border-radius: 24px;
    padding: 4rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.manufacturing-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.iot-card {
    background: linear-gradient(135deg, #1E2D40, #0F4C81);
    color: white;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
}
.iot-card h5 { color: white; }
.iot-card .iot-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--manufacturing-accent);
    line-height: 1;
}
