/* --- Navegación por Pestañas --- */
.tabs-container {
    border-bottom: 1px solid var(--light-gray);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tabs-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Ocultar scroll en Firefox */
}

.tab-link {
    background: none;
    border: none;
    padding: 15px 5px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-link.active {
    border-bottom-color: var(--primary);
}

/* --- Control de Visibilidad --- */
.tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* --- Secciones de Confianza --- */
.info-card, .safety-dashboard {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.steps-grid, .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
}

.safety-item {
    text-align: center;
    padding: 15px;
}

.safety-item .icon { font-size: 2rem; margin-bottom: 10px; display: block; }
