*{
    font-family: 'Montserrat', sans-serif;
}
:root {
    --primary-blue: #1e3a8a;
    --accent-red: #ed1c24;
    --light-bg: #f8f9fa;
}

/* --- Header/Hero --- */
.tic-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-bottom: 6px solid var(--accent-red);
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.section-title-modern {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 6px solid var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* --- Tarjetas (Mejoradas) --- */
.tic-card {
    background: white;
    border: none;
    border-radius: 16px;
    /* Sombra Pro: más suave y elegante */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    overflow: hidden;
}

.tic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12);
}

.tic-card-header {
    background: var(--primary-blue);
    color: white;
    padding: 18px 25px;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tic-list {
    list-style: none;
    padding: 25px;
    margin: 0;
}

.tic-list li {
    margin-bottom: 15px;
}

.tic-list a {
    text-decoration: none;
    color: #475569;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tic-list a i {
    color: var(--accent-red);
    margin-right: 12px;
    font-size: 1.3rem;
}

.tic-list a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

/* --- Pestañas de Videos (Diseño App) --- */
.tic-tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 10px;
}

.tic-tabs-nav {
    display: flex;
    background: var(--light-bg);
    padding: 8px;
    border-radius: 15px;
    gap: 8px;
}

.tab-btn {
    flex: 1;
    padding: 14px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: #64748b;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.tab-content {
    display: none;
    padding: 35px 20px;
}

/* --- Links de Video (Botones) --- */
.video-link {
    text-decoration: none;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: var(--light-bg);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.video-link i {
    color: var(--accent-red);
    font-size: 1.4rem;
    margin-right: 10px;
}

.video-link:hover {
    background: white;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* --- Software Grid --- */
/* --- Software Grid (Estilo Texto Normal y Limpio) --- */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 5px;
}

.sw-item {
    background: #ffffff;
    padding: 16px 20px; /* Espaciado más balanceado */
    border-radius: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0; /* Borde más sutil */
    transition: all 0.3s ease;
}

.sw-item:hover {
    border-color: var(--primary-blue);
    background-color: #fcfcfc;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.sw-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.4rem;
    margin-right: 16px;
    flex-shrink: 0;
}

/* Tipografía en "Texto Normal" */
.sw-info h6 { 
    margin: 0 0 2px 0; 
    color: #1e293b; /* Un gris muy oscuro, más legible que el azul puro */
    font-weight: 600; /* Negrita moderada, no exagerada */
    font-size: 1rem;
    line-height: 1.4;
    margin: 0; 
    color: #1e293b; 
    font-weight: 600; /* Texto normal profesional */
    font-size: 1rem;
    text-decoration: none;
}

.sw-info span { 
    font-size: 0.85rem; 
    color: #64748b; /* Gris suave para info secundaria */
    font-weight: 400; /* Texto normal */
    display: block;
}

.sw-download {
    margin-left: auto;
    color: var(--accent-red);
    background: transparent; /* Fondo limpio */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    border: 1px solid #fee2e2;
}

.sw-download:hover { 
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    transform: scale(1.05); /* Un toque sutil en lugar de rotar 360 */
    text-decoration: none;
}

/* --- Animación de entrada suave --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}
/* Quitar subrayado de TODOS los enlaces del proyecto */
a {
    text-decoration: none !important;
}

/* Específico para tus componentes (Asegurándonos) */
.tic-list a, 
.video-link, 
.sw-download, 
.tab-btn {
    text-decoration: none;
}

/* Asegurar que al pasar el mouse TAMBIÉN estén sin subrayado */
.tic-list a:hover, 
.video-link:hover, 
.sw-download:hover {
text-decoration: none;
}

/* =============================================
   RESPONSIVIDAD (Celulares y Tablets)
   ============================================= */

@media (max-width: 992px) {
    .tic-header {
        padding: 60px 20px;
    }
    
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tic-header {
        padding: 40px 15px;
    }

    .section-title-modern {
        font-size: 1.4rem;
        padding-left: 15px;
    }

    .tic-tabs-nav {
        flex-wrap: wrap; /* Para que los botones no se amontonen */
        justify-content: center;
    }

    .tab-btn {
        flex: none;
        width: 48%; /* Dos botones por fila en tablets pequeñas */
        font-size: 0.9rem;
        padding: 10px;
    }

    .sw-item {
        padding: 12px 15px;
    }

    .sw-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        width: 100%; /* Un botón por fila en celulares */
    }

    .tic-card-header {
        font-size: 1rem;
        padding: 15px;
    }

    .video-link {
        font-size: 0.85rem;
        padding: 12px;
    }

    .software-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas muy pequeñas */
    }

    .sw-info h6 {
        font-size: 0.9rem;
    }
}