/* Estilos base alineados con la estética oscura y tecnológica de BioTAerospace */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b1528;
    color: #ffffff;
    overflow-x: hidden;
}

/* Sección Principal */
.industria-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #070f1e 0%, #0d1b35 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Badge Superior */
.badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Título y Subtítulo */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    background: linear-gradient(180deg, #ffffff 0%, #a5c0e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: #8fa0dd;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 50px;
}

/* Grid de Tarjetas */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    font-size: 0.95rem;
    color: #a5b4fc;
    line-height: 1.6;
}

/* Contenedor de Métricas */
.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
    text-align: center;
}

.metric-val {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-lbl {
    font-size: 0.85rem;
    color: #8fa0dd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efecto de Brillo Azul (Orbe difuminado a la derecha) */
.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, rgba(0, 212, 255, 0) 70%);
    top: 20%;
    right: -100px;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(30px);
}

/* Soporte móvil */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .glow-effect {
        width: 250px;
        height: 250px;
        right: 0;
    }
}